From 34cde6f94d2162a1efd86034af18c88a6846aed2 Mon Sep 17 00:00:00 2001 From: a081bc04ce9fbc7d062648cfa919b204 Date: Tue, 17 Oct 2023 16:47:45 +0000 Subject: [PATCH] Exercice completed --- module3/exo3/exercice.ipynb | 2013 +- module3/exo3/liglab.log | 44413 ++++++++++++++++++++++++++++ module3/exo3/liglab2.log | 44413 ++++++++++++++++++++++++++++ module3/exo3/liglab2.log.gz | Bin 0 -> 498149 bytes module3/exo3/stackoverflow.log | 6887 +++++ module3/exo3/stackoverflow.log.gz | Bin 0 -> 68745 bytes 6 files changed, 97723 insertions(+), 3 deletions(-) create mode 100644 module3/exo3/liglab.log create mode 100644 module3/exo3/liglab2.log create mode 100644 module3/exo3/liglab2.log.gz create mode 100644 module3/exo3/stackoverflow.log create mode 100644 module3/exo3/stackoverflow.log.gz diff --git a/module3/exo3/exercice.ipynb b/module3/exo3/exercice.ipynb index 0bbbe37..e722b35 100644 --- a/module3/exo3/exercice.ipynb +++ b/module3/exo3/exercice.ipynb @@ -1,5 +1,2013 @@ { - "cells": [], + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Sujet 4 : Estimation de la latence et de la capacité d’une connexion à partir de mesures asymétriques\n", + "\n", + "Un modèle simple et fréquemment utilisé pour décrire la performance d'une connexion de réseau consiste à supposer que le temps d'envoi T pour un message dépend principalement de sa taille S (nombre d'octets) et de deux grandeurs propres à la connexion : la latence L (en secondes) et la capacité C (en octets/seconde). La relation entre ces quatre quantités est T(S) = L + S/C. Ce modèle néglige un grand nombre de détails. D'une part, L et C dépendent bien sûr du protocole de communication choisi mais aussi dans une certaine mesure de S. D'autre part, la mesure de T(S) comporte en général une forte composante aléatoire. Nous nous intéressons ici au temps moyen qu'il faut pour envoyer un message d'une taille donnée." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "%matplotlib inline\n", + "import matplotlib.pyplot as plt\n", + "import requests\n", + "import os\n", + "import shutil\n", + "import gzip\n", + "import re\n", + "import numpy as np" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "On définit nos sources de données et on les récupére en local si on ne les a pas encore" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "data_set_1_url = \"http://mescal.imag.fr/membres/arnaud.legrand/teaching/2014/RICM4_EP_ping/liglab2.log.gz\"\n", + "data_set_2_url = \"http://mescal.imag.fr/membres/arnaud.legrand/teaching/2014/RICM4_EP_ping/stackoverflow.log.gz\"\n", + "\n", + "data_set_1 = \"liglab2.log\"\n", + "data_set_2 = \"stackoverflow.log\"\n", + "\n", + "# Fichier de data 1\n", + "if not(os.path.isfile(data_set_1)):\n", + " r = requests.get(data_set_1_url, allow_redirects=True)\n", + " open('liglab2.log.gz', 'wb').write(r.content)\n", + " with gzip.open('liglab2.log.gz', 'rb') as f_in:\n", + " with open(data_set_1, 'wb') as f_out:\n", + " shutil.copyfileobj(f_in, f_out)\n", + "\n", + "# Fichier de data 2\n", + "if not(os.path.isfile(data_set_2)):\n", + " r = requests.get(data_set_2_url, allow_redirects=True)\n", + " open('stackoverflow.log.gz', 'wb').write(r.content)\n", + " with gzip.open('stackoverflow.log.gz', 'rb') as f_in:\n", + " with open(data_set_2, 'wb') as f_out:\n", + " shutil.copyfileobj(f_in, f_out)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "On utilise du regex pour vérifier que les logs sont conformes au format attendus et pour les convertir en données utilisables, que l'on stocke dans un dictionnaire.\n", + "Les lignes rencontrées qui n'ont pas le format attendues sont affichées par le programme dans la sortie standard." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Analyse du jeu de données 1" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Malformed line [1421761684.770828] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421761706.146320] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421761748.647974] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421761788.500516] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421761805.331125] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421761817.308839] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421761907.694059] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421761908.512826] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421761916.713419] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421761921.229704] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421761962.174859] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762001.590195] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762032.199394] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762047.397821] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762088.369820] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762117.516869] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762134.551193] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762140.101009] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762191.278531] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762196.022695] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762246.169992] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762248.634005] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762311.874238] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762316.560968] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762342.293065] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762349.889838] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762369.740243] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762372.892510] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762406.232258] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762447.771797] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762450.440418] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762452.695398] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762460.511277] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762552.450810] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762588.061661] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762610.042798] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762640.130235] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762659.003186] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762696.980686] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762703.467541] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762866.515460] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762975.904595] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762984.756037] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421762984.961551] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763001.009872] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763021.908235] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763032.197692] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763048.335053] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763080.015799] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763111.226774] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763126.455880] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763172.710422] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763174.352218] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763185.037308] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763232.403970] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763243.536126] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763247.429933] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763270.223515] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763309.745487] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763374.562077] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763395.342260] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763406.861192] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763416.315036] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763416.520750] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763443.920123] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763492.406019] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763574.271456] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763574.479134] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763602.904371] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763625.130389] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763693.454868] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763694.072596] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763697.163395] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763707.241460] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763722.876513] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763731.937700] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763773.325211] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763783.003963] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763833.881896] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763849.089681] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763853.199752] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763865.523542] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763895.095651] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763920.844561] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763947.482623] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763968.037986] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763983.858423] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763988.999429] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421763998.241264] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764004.441331] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764007.108566] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764042.767113] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764057.961847] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764074.595735] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764132.466027] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764155.627108] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764172.609118] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764177.736701] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764181.846435] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764182.667765] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764198.076616] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764211.202120] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764213.322815] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764216.816618] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764220.101194] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764226.874038] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764259.340023] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764341.349442] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764360.774362] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764366.949834] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764367.564946] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764369.004899] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764371.675180] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764378.872347] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764391.900563] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764396.218527] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764417.601975] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764440.222049] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764455.418235] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764465.291215] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764471.924492] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764473.982706] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764485.141628] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764575.635912] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764588.580731] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764600.927636] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764605.447669] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764610.588610] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764612.026979] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764612.848564] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764642.012409] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764644.680264] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764739.899795] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764770.438430] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764782.783408] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764815.198730] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764822.809482] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764885.172366] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764924.577371] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764933.000067] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764964.558155] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421764972.874004] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765026.889848] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765028.535397] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765049.535112] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765064.331846] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765073.375505] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765112.602006] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765124.441739] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765130.809604] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765200.617343] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765212.064571] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765257.825242] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765322.233259] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765343.837279] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765371.430687] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765379.253000] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765432.272571] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765435.554945] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765447.392698] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765539.427902] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765541.782091] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765547.514069] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765569.988399] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765599.362975] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765611.488381] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765746.030035] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765756.112138] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765768.107859] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765771.136206] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765797.044605] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765808.760377] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765838.574174] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765842.240725] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765873.982944] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421765950.137515] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766023.093252] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766151.612663] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766156.143161] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766164.778056] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766173.141694] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766181.115660] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766186.691160] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766187.926773] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766214.836942] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766248.098801] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766294.462260] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766294.667638] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766302.684570] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766308.236315] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766311.320347] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766385.596638] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766397.127024] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766399.667633] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766400.490344] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766410.423764] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766461.662208] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766514.828473] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766520.458421] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766536.891140] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766541.004907] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766541.416176] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766553.158886] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766571.665792] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766592.630514] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766646.162266] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766687.619305] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766735.913915] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766796.812050] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766809.073242] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766856.296506] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766871.233215] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766880.132781] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766882.196773] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766890.247267] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421766908.949852] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767034.342461] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767043.879346] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767062.235242] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767074.639163] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767138.906058] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767171.331559] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767202.284558] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767247.976800] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767256.389494] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767281.283390] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767297.950327] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767334.186894] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767344.676840] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767374.649515] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767391.258354] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767417.639351] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767485.460692] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767487.103767] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767496.770525] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767498.413654] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767503.346147] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767538.713532] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767550.224412] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767560.713936] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767566.733947] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767589.885180] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767599.785472] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767638.861018] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767672.378903] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767673.200083] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767714.165313] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767723.409182] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767732.662077] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767761.641371] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767869.158691] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767891.783478] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767943.990143] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767959.196643] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421767986.739723] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768002.564622] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768037.742045] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768044.937562] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768097.757016] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768122.225055] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768162.834999] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768203.118911] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768217.304443] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768239.322477] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768247.340175] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768273.690277] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768335.370133] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768339.891535] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768342.561831] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768398.817587] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768415.580972] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768439.450006] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768478.548290] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768484.363302] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768559.826731] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768564.962746] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768565.168188] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768568.253752] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768601.570742] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768609.175550] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768616.374283] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768623.297864] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768648.200961] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768661.228441] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768669.248345] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768671.919159] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768697.418594] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768721.232470] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768723.700459] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768768.465884] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768776.074200] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768787.789872] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768796.013445] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768839.553008] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768864.265119] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768878.883296] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768888.878124] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768890.212138] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768922.230128] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768923.666842] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768961.126519] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421768995.793004] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769060.635830] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769082.435910] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769116.759878] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769140.865289] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769155.045570] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769166.666824] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769191.385149] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769209.672222] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769220.581215] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769287.310169] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769294.923175] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769321.872817] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769322.700495] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769332.579550] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769341.434419] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769365.714529] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769366.126157] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769379.289825] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769396.762872] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769397.380638] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769415.209864] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769461.691583] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769476.710684] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769520.877580] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769554.953561] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769559.243691] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769648.369002] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769694.144701] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769720.473044] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769741.052109] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769756.361372] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769788.771838] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769794.534493] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769809.554021] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769816.747679] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769840.826201] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769884.393790] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769921.970949] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769926.126408] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769934.868958] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421769979.377998] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770063.938506] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770084.747081] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770117.238732] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770134.099845] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770202.098919] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770236.857197] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770260.878994] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770347.170294] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770401.425936] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770410.677288] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770447.286588] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770528.785624] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770558.624793] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770573.778775] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770614.039516] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770643.752354] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770697.673096] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770702.820645] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770712.292955] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770713.526885] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770722.770927] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770737.986337] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770758.905166] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770768.998916] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770811.776268] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770837.307423] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770877.106153] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421770939.684446] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421771013.105688] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421771046.094241] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421771098.507878] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421771106.522134] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421771136.918078] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n", + "Malformed line [1421771175.771771] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60\n", + "\n" + ] + } + ], + "source": [ + "def extract_datas_from_logs(fileName):\n", + " processLine = re.compile(r\"\\[(\\d+.\\d+)\\] (\\d+) bytes from .*: icmp_seq=\\d+ ttl=\\d+ time=([\\d\\.]+) ms\")\n", + "\n", + " resDict = {'timestamps': [], 'size': [], 'RTT': []}\n", + "\n", + " with open(fileName, 'r') as f:\n", + " for l in f:\n", + " r = processLine.search(l)\n", + " # Verify that all line contains a sample\n", + " if r is None:\n", + " print('Malformed line %s' % l)\n", + " else:\n", + " g = r.groups()\n", + " resDict['timestamps'].append(float(g[0]))\n", + " resDict['size'].append(int(g[1]))\n", + " resDict['RTT'].append(float(g[2]))\n", + " return resDict\n", + "\n", + "resDict = extract_datas_from_logs(data_set_1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "On affiche les dix premières entrées du dictionnaire pour vérifier que les données sont cohérentes" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[1421761682.052172,\n", + " 1421761682.277315,\n", + " 1421761682.502054,\n", + " 1421761682.729257,\n", + " 1421761682.934648,\n", + " 1421761683.160397,\n", + " 1421761683.443055,\n", + " 1421761683.672157,\n", + " 1421761683.899933,\n", + " 1421761684.122687]" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "resDict['timestamps'][:10]" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[665, 1373, 262, 1107, 1128, 489, 1759, 1146, 884, 1422]" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "resDict['size'][:10]" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[22.5, 21.2, 21.2, 23.3, 1.41, 21.9, 78.7, 25.1, 24.0, 19.5]" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "resDict['RTT'][:10]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "On représente graphiquement l'évolution du temps de transmission au cours du temps à différentes échelles de temps" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "# On affiche toutes les mesures\n", + "plt.xlabel(\"Time (unix timestamp)\")\n", + "plt.ylabel(\"Round Trip Time (ms)\")\n", + "plt.plot(resDict['timestamps'], resDict['RTT'])" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "# On affiche seulement les 10 premières mesures\n", + "plt.xlabel(\"Time (unix timestamp)\")\n", + "plt.ylabel(\"Round Trip Time (ms)\")\n", + "plt.plot(resDict['timestamps'][:50], resDict['RTT'][:50])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Pour avoir une intuition sur l'impact de la taille dans le RTT, on affiche la courbe des tailles correspondantes aux temps ci-dessus." + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAY8AAAEKCAYAAADq59mMAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMi4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvIxREBQAAIABJREFUeJzsvXmUJGd55vu8ue+1V3V3dbd6UUuoWyCBWisSNgMYXR8bYRtsAQZ5jEcG42uPPccec319bJ85Gtt4DB5swKPBXMAzFjsGxpaQEBgZSUi0kNDWoldJvVRX156VW2Qs3/0j4ouMjIw998r4nZOnqyO3r7Ii4/3e7XmJMYaQkJCQkBA/RPq9gJCQkJCQ4SM0HiEhISEhvgmNR0hISEiIb0LjERISEhLim9B4hISEhIT4JjQeISEhISG+CY1HSEhISIhvQuMREhISEuKb0HiEhISEhPgm1u8FdIvp6Wm2Z8+efi8jJCQkZKh44oknlhljM26P27LGY8+ePThy5Ei/lxESEhIyVBDRS14eF4atQkJCQkJ80zXjQUS7iOg7RHSUiJ4jot/Wjk8S0QNEdFz7d8LwnA8S0Qki+jERvdlw/Boieka776NERN1ad0hISEiIO930PCQA/4kxdgWAGwB8gIgOAvgDAA8yxg4AeFD7P7T7bgdwCMCtAD5ORFHttT4B4E4AB7TbrV1cd0hISEiIC10zHoyxBcbYD7WfNwEcBTAP4DYAn9Ee9hkAb9V+vg3A5xhjAmPsNIATAK4jou0ACoyxR5mqH/9Zw3NCQkJCQvpAT3IeRLQHwKsBPAZgjjG2AKgGBsCs9rB5AGcMTzurHZvXfjYfDwkJCQnpE103HkSUA/BlAP+RMVZ0eqjFMeZw3Oq97iSiI0R0ZGlpyf9iQ0JCQkI80VXjQURxqIbjfzPGvqIdXtRCUdD+vagdPwtgl+HpOwGc147vtDjeAmPsbsbYYcbY4ZkZ1zLlkJCQkJCAdLPaigD8PYCjjLEPG+76OoA7tJ/vAPA1w/HbiShJRHuhJsYf10Jbm0R0g/aa7zE8JyRkpHjhQhE/eHG138sICelqk+BrAbwbwDNE9JR27P8B8OcAvkBE7wXwMoC3AwBj7Dki+gKA56FWan2AMSZrz3s/gE8DSAO4V7uFhIwcf/3AcZxaLuH+3/mJfi8lZMTpmvFgjH0P1vkKAHiDzXPuAnCXxfEjAK7s3OpCQoaTiihjoyr2exkhIWGHeUjIMCGIMjZrUr+XERISGo+QkGFCkBRU6jJkxbLgMCSkZ4TGIyRkiBAkBQBQEkLvI6S/hMYjJGSIECS1hmSzFuY9QvpLaDxCQoYIQQw9j5DBIDQeISFDRMPzCI1HSH8JjUdIyBChex6h8QjpM6HxCAkZInjCfDMMW4X0mdB4hIQMCYrCUJc14xEmzEP6TGg8QkKGBG44gDBsFdJ/QuMRMjT80T89iw/d90K/l9E3eL4DCKutQvpPN4URQ0I6yhMvrSGfGt1TlldaAWG1VUj/Gd1vYsjQIUgy4qKd1ubWhyfLgdB4hPSf0HiEDA2CpCAakd0fuEWpiUbPI0yYh/SX0HiEDA01Q8x/FDF6HmHOI6TfhMYjZGhQY/6jqybLcx7RCIXGI6TvhMYjZGgQJAXKCEuR82qrqWwizHmE9J1uzjD/FBFdJKJnDcc+T0RPabcX+XhaItpDRFXDfX9neM41RPQMEZ0goo9qc8xDRgxFYahLCiqiDMZG04DwsNVULhkaj5C+080+j08DuNV4gDH2S4yxqxljVwP4MoCvGO4+ye9jjL3PcPwTAO4EcEC7Nb3mqPHySgXPntvo9zJ6Dm+QY6w59j9K8LDVdC6BkhAmzEP6S9eMB2PsIQCrVvdp3sMvArjH6TWIaDuAAmPsUaZuNz8L4K2dXusw8Zf3/xi/dc+T/V5GzzE2yBmrjkYJbjSnc0nURAWiPJpGNGQw6FeH+S0AFhljxw3H9hLRk0T0XSK6RTs2D+Cs4TFntWOWENGdRHSEiI4sLS11ftUDwEpJwNn16siFbowNcpX6iBoPkRuPBIBQoiSkv/TLeLwDzV7HAoDdjLFXA/hdAP9IRAUAVvkN26smY+xuxthhxtjhmZmZji54UCjWRNQlBeuV0QpbGMt0qyPreai/91QuCSBsFDTz+OlVfPrh0/1exsjQc+NBRDEAPw/g8/wYY0xgjK1oPz8B4CSAy6B6GjsNT98J4HzvVjt4FKvqBWNho9bnlfQWo+dRHVHPoyY2wlYAsBnmPZr44pEz+LN7Xxjpirxe0g/P440AXmCM6eEoIpohoqj28z6oifFTjLEFAJtEdIOWJ3kPgK/1Yc0DQ1HrLF4sjprxCD0PY8IcCMNWZqqiDEFSsFQS+r2UkaCbpbr3AHgUwOVEdJaI3qvddTtaE+WvA/A0Ef0IwJcAvI8xxpPt7wfwSQAnoHok93ZrzYMOYwzFqmo8Loyc8Qg9D0FSECFgPKMajzBs1Qw/L86sVvq8ktGga02CjLF32Bz/FYtjX4Zaumv1+CMAruzo4oaUcl0G98gvjFjYypjzGNmEuaQgGYvqysJhl3kz3CN9ebWCw3sm+7yarU84z2OI2Kg2YtyjF7ZqGIyRLdUVZSTjEd14hKNomzEaj5DuExqPIaJoMB4jF7YKq600zyOCfDIOIFTWNcPDVqHx6A2h8RgiuPHIJqKjF7YK+zz0sFUqHkEsQmHC3ATfVIQ5j94QGo8hoqhdLC6dy4+05zGyYStJRjIWAREhl4qFCXMTldDz6Cmh8RgiuOdx+VwO6xVxpC6iTaW6o+p5iAqScfUrm0vGwoS5iZp2XiwWhZH6bvSL0HgMEbzH47K5PIDRSprzhHmERjdsVZNkpGJRAEA+FQ89DwOMMVREGfPjaQDA2bVqn1e09QmNxxDBq60unc0BGK1yXV6qO55JjG7C3OB55JOxMGFuQJQZZIXh8m3qxirMe3Sf0HgMEcWqhFwyhp0T6u5qlPIegiQjGiHkkjFU66O54+YJcwDIp8KwlREeyuTGI8x7dJ/QeAwRxZqIQiqGuUIKwIiFrUS1TDWTiI6u56ElzAEgFxqPJvg5sXMijXQ8GhqPHhAajyGiWBVRSMeRT8WRTURHShyR9zik4lFUxdGcY8E/A0BNmIc5jwbceGQTMeyaTIfGoweExmOIUD0PtUFsbiw1Up5HTZSRikeRjkdHN2wlGsNW8bDPw0BFOydS8Sh2T2bCnEcPCI3HEFGsSiikVeOxrZAaqYQ533WPfNiKJ8xTMdRlJSxJ1eCfQyYRxa7JDF5erYzcwLReExqPIWKjKqKQVnWNthVSWCyOjvS0Gu+PIpWIjm6fhylsBYTiiBxevp1OqJ5HpS5jtVzv86q2NqHxGCKswlajMvhGkNQyVTVsNXrGgzGGmig3VVsB4UwPDj8n0lrYCggrrrpNaDyGBEVhKAmNsNX2sRQkhWFlRHZXNVFtkBvVsJWkMCgMSMWbPY8waa7CzwnueQBb33j0OywXGo8hYVOQwBhQ0HacvFx3VPIeTZ7HCBoPLs9iTJgD4ShajtHz2DmhGo+tnDT/3vFlXPdfH8TFPhbNdHOS4KeI6CIRPWs49idEdI6IntJuP22474NEdIKIfkxEbzYcv4aIntHu+6g2jnbk4LpWxoQ5MDqNgrzPIxWPoiYqIxOu4wiawTQmzIEwbMXhOY9MIop0IoqZfLJnnockKz33Ak5c3MTSpoAvHDnT0/c10k3P49MAbrU4/hHG2NXa7V8AgIgOQh1Pe0h7zsf5THMAnwBwJ9S55gdsXnPLw3WtxrjxGBst41GTZCTjatiK/z8o65U65AExPowxTxeehufR3bDVnZ89gm8+d6Gjr9kLuDeaiqvnx26t4qrbyArDzX/xHXz+B729iPNep3seP9O3jZRn40FEST8vzBh7CMCq6wNVbgPwOcaYwBg7DXVe+XVEtB1AgTH2KFO/YZ8F8FY/69gqcF0rnjCfziURjRAWRyVspXkeac14BE2aC5KMWz70HXzpif7t2Ix86uEX8aaPPOT6uNawVeerrWSF4f7nF/HA84sde81eURNlRKhhXNVej+6LI65X6rhQrOHkUqmt1zm3XsXrPvQdz6E2bizPrVfxbyeW23rvoNgaD1L5RSL6GhEtAniRiFaI6Gki+jMi2hfwPX9Te41PEdGEdmwegPHbfFY7Nq/9bD4+chSr6kWCl+pGI4SZXHJkPA+u65TWdpZBlXWLVQmbNWlgkqnPny/i1FLJ1fvgqsJGeRKgs9MEea/E6eVyx16zV1TqMtLxKHhUe9dkBgsbVdQl/2oEv/rpH+DP/uWop8fycuB2jfixxU28vFrBCY9GqFqXkIhFMJVN4J7HXm7rvYPi5Hl8B2oY6U8B7GCMbWeMTQF4I4CnAHyYiN7l8/0+AWA/gKsBLAD4K+24VR6DORy3hIjuJKIjRHRkaWnJ59IGGx624p4HMFpd5lzXiXseQZvjytqXnBvjfrNcEqCw5nklVvBhWDznkYxFkYhFOjrHvDrExqMqykgnYvr/d09moDDg/Lp/7+PHFzbx7PkNT49dLqnGo93wIT8vax43RVVRRi4Zw9uu2YlvHV3sS+LcyXi8mTH2x4yxHzLG9N+IMXaRMfZ5xthbAXzRz5sxxhYZYzJjTAHwPwFcp911FsAuw0N3AjivHd9pcdzu9e9mjB1mjB2emZnxs7SBx5wwB4DthdTI6FsJoqLLkwDBPY+yJmOxUR2MKqXlktro6RaGM4etAFWWvZMJc76G1XIdG5XB+Hy8Uq3LSCcal7N2ynWrooyVkrcS+E55Htx4eK0krNYVpONR/NK1uyApDF984qz7kzqMrfFgjAkAQER7iCih/XwzEf0GERW0x/hqMtByGJyfA8Arsb4O4HYiShLRXqiJ8ccZYwsANonoBq3K6j0AvubnPbcKxZoEIvWCwdk2lhqJnIeiMNRlU84jsOehPq84ILMwdOPh8vtwT4uHrQB0fBSt0Zs7vTJc3kdVC1txdk2qYwuCGI9KXdI9CjdWyurfr92/Q0k7L71uilSttwj2zeRw474pfO4HL/c8ce4lYf5PABgR7YeasL4CwD+6PYmI7gHwKIDLiegsEb0XwIe0stunAbwewO8AAGPsOQBfAPA8gPsAfMDg7bwfwCehJtFPArjXx++3ZShWReSTMUQijUjeXCGFTUHSdy1blbrcCNnwC0Rw48HDVv03HowxfYfrdtHgnkfKcIHs9EwP42d6erm9BHCvqZjCVnP5FBLRiO9eD0VhqIkKVsuCp4sx//u16wHqYSuvnocoI6P9vu+4fjfOrFbx8MneJs5j7g+BwhgTiejnAfw1Y+yjRPSk25MYY++wOPz3Do+/C8BdFsePALjSwzq3NFyO3ci2MbUA7kKxhv0zuX4sqyfo8f5YtO1qK36xLQ5Af8RGVYSkXaDcw1YWnkeXwlYAcHp5MAoKvFKry0jHG59NJELYGUCanRtQhQHrVRGT2YTj47nn0a4R58/3el4bPa03H5rDRCaOex5/Gbcc6F243ovnIRHR2wG8G8D/0Y7FHR4f0gWMulYcfSjUFg9d8Z6OVDyCTFzd7wQ1HoPkefCQFdCQFLfDaEA5uWS8o+G3Zs9juMJWFVHSd+KcIL0eRg9wpeQuPMpzHu1WvXHjUfHoeVREGSltI5WMRfG2a3bi/ucWsbTZO7FUL8bjV6GGmD7EGDul5STu6e6yQsyocuzNX45OdJlX63LfNXLcMF44U1pSNGjYquF59N94LG024upuv4+eMDfsrgsdDlvxkMlsPjl0YStzzgNAoLkexrCRl7wHf0xJkNr6HpV9eh5mT+v263ZDUhi+1MPEuavxYIw9yxj7DcbY/9L+f1oLMYX0ECvPo90uc0GSceOfP4j/1ac6ca8YQzZ6ziOw56E+ryYq+uv2Cx7yAAKGrTqcMOcG7OCOAl5cHq55GDVR0UOanN2TGRRrkq/KsSbPo+zd81BY8ApAIFjOw2gs98/kcP3eyZ4mzl2NBxHdSkQ/0HSqVolojYi8do6HdAirnEcmEUMhFQssjriwXsN6RcT9Ay5HURMbyeK2E+aG8FC/FWmXN41hqwCluprn0amLfLWuvscV2wsoCRKWPIRtBoVKXWrxPHYFKNc1hg+9lOuulATEo2oRSzteoB628tHnYTaW77x+N15aqeCRkyuB1+EHL2GrvwXw61A7u2cATGv/hvSQYk3Sda2MbBsLPlGQN1D94MXVQJ24vcK4645FI0hEI22HrYD+5z2MYRG3WDcP3SWaEuZxyFp1UCfQPY/tBQDAi0OUNFerj0zGY8K/8TB6gMsuxlOSFaxXRf192sl7cI/Y63mthq2aw9hvPrQN41rivBd4MR5nATzFGBO1Bj/Z2DQY0n0kWVFneaRajcdcIXiX+TnNeNREBU++vNbWGruJWRQw3cY0QWNZc78rrlbKQkPo0UPYKh4lRA2l2p2WKKkZwlbA8JTr8vLaVIvn4b/Xo1L3nvNYq4hgDLhkihuP4OeTn7AVY0wrTW6+fKfiUfzCa3bim89d6Eni3Eup7u8D+AYR/SsAfUWMsY92a1GDSqXeWtHRC/hJaU6YA2rS/NjiZqDXPb+uGp0IAY+cXMH1+6aCL7KL6J6HdnFoZ5pgeYA8j6XNOnZOpHFsseQarqiJSlPICmjMdtkUJMx2YD3VuoxohLBnKotENIJTQ1JxxavxzGGcfCqOyWzCn/HQLt7xKLlWW/GcyCVTWQBLPQtbiTKDrLCWMB0A3HHjHtx86bRriXEn8OJ5/CkAGcA41HAVv40Uj51awdV/+kBftKSsdK0428ZSWNoUIMn+Qxfn16uYySfxyvkxPNLjBiM/NHIeDc/Da0mjmbIgYzyjfo7tVFwxxnTPLSjLJQGz+RQSsQgqokupriTrvz9Hn2PeIQ+KiwtGI4TdUxm8OCTGwzjLw8wunxVXVS3nMT+edp3Suap5Jns0z6Odv4Ofaiuz/LyR3VMZvP4Vs00earfwYjxmGWNvYYz9IWPsj/it6ysbMI4tbqIuKzi71n2ZZzMNRV3rsJXCvJUVmjm/UcWO8TRuunQaT7687tpr0C8aOY8OeB51CdvH1HBGO+KIj5xcwc1/8W08e86bgJ4VyyUB07mEOlrXQ8Lc7Hl0eqZHVZT1C9KeqezQ9Hrwz87yYjqZwZk1/2GrXZMZV89jWTMul0xnAQT/OygKQ7nOqwDdz2v+GLOn1Wu8GI8HiejfdX0lA85SqTMCaEFoeB7WYSsAWNjwb9TOrVexczyNm/ZPQVIYHj89mEV0jT6PhucRVFW3JEjYrpU4t+N5nFwqgTHg2y9cDPwaK6U6pnNJZDwYQ9V4NH9d+SjaUodG0dYMcfR9M1m8uFIJVPYpSDL+5sHjPduM8J24leexezKNc2tVz545f62dExnXaqtVzbjsmdKMR8Brg9GL9hK2qjp4Wr3Ei/H4DwC+RUSlUS7V5ZUXnZyf4BUemx/LWIetAPgOpzHGcH69ih3jKRy+ZBKJaASP9qjEzy9mXad0PBr4wlQWJMzkkohFqK2cB69we+hYMOn/siChKsqYyiWR8hCGE0S5qdIKaAyE6lTi39hot3c6i7qk4HyATcnDJ5bxVw8cC/zZ+MU4v9zMrokMJIV5Vp+u1mUQAfPjqm6c0yZlpVxHhNQQFxA8bMVDVl6rCPljrH7fXuLFeExDlSMZwwiX6vLqhX70BpinCBrRGwV9luuuVUTURAU7xtNIJ6J49e7xngurecWsKJtORPUxnH4pCzKyyRgK6Xhbsuy8MfPJM+uBPBi+GfEVtoqbE8KdzXkYG8/4bjpI6Or4olqldbFHUhlVhzAOl2b3mveo1GVk4lFM51TduFWHvMdKuY7JbAIJrXk16MaSRzOmcwlPxqPiEKbrJU6TBHcBgLE813jTJg3u6N1S+wv/sndSiM4retjKIucxmUkgHiVcKPr7op7Tcjc7tF3Tay+dxnPni1iv+M+ddJuWUt14sLAVYwzluoRcMoqxdLytHftisYZUPAJZYXjkhH+PTTce+SQy8Zi7tpU2DMtINtnZUbTGnMe+mTaMx0XNePg8J4Pi6Hn4bBSs1FV13inNeDiFrlZKgl7V1I7CMb+mzOSTqEsKZJdQYW0IPI//TkSfJ6J3EtHlRDRJRDuI6HVE9McAvgfglT1aZ9/pb9hKQoSArMXOKhIhzOb993rwSiHuct+0fwqMAd8/NXihK0FSS0hj0YbxCBK2qtRlMKZedAupWNthq5svnUE2EcVDx/2HZ3iBw0wu6cmTssp5xKMRpOKRjvZ58N37bD6JTCLalvHoVWViI+fRmhPcPpZCLEKejUe1LiGTiGIqpxqFZQeJktVyHVNZ1cjkUrHAOY+y7nmor+XmfejGclBzHoyxn4cqkX4VVCn1HwD4JoDfBPASgDcyxr7Zi0UOAsuaiF0/GsuKNVWahM9nNhOky5x3l3PP41U7x5FJRHsmbeAHQVSQMlw4gzYJ8i8pD1u1kzBfLArYOZHGjfun8dCxJd8SIXwzMpVLaNVj7qq65morQE2ad8zzMOQ8iChQxRVjDCe0vqNeha0qDp5HLBrB/IR3afZKXe1Un8568TzqmNSMTDtTHUtm4+FybjsVCPQSx443xtjTAJ7u0VoGFp7cBPqT8yhWW0URjWwrpHB0oejrNc+vV5GKRzChJeETsQiu2zuJh08MXt6jJslN8X612sp/zoN/SXPJGAqpeKD51vx1SoKEuUIK+2ey+NbRRby4UsFerWTTC3wzMpVVd/iuTYKS3KSoy8knOyeOaBbb2zuTxXM+S5HPb9T0stNe5zxSCeu98K6JDM54LLHnoTvueTiV666U65jWwlaqSGWwzQjXW5vJ+zMeA5vzaBci+pQmpvis4dhfEtELRPQ0EX2ViMa143uIqEpET2m3vzM85xpt+uAJIvoo2W2/u4hR46ZTZZF+sNO14sxps8z97H55j4fx47xp/xROLpX70gjphLrrNnge8SjqsuK7MZLrB6meRyywF8k/n21jSX34jt/KopWygLF0XE22ekmYiwpSlp5H54xHzTAjAgD2TWdxZq3qS/fsuOZ17J/J4mKvwlbaxddO/WEim/AcouSeRyYRRSoesW0UFGUFG1URk5qHkk8G9wD5CFrdeHgNW21V4wHg0wBuNR17AMCVjLFXATgG4IOG+04yxq7Wbu8zHP8EgDuhzjU/YPGaXcdoPPpVbWUlTcLZNpZEVZR9XQzPrdf0fAfnpv3TADBw3ebmeD931/2KI5b0sFUUhVQ8cM6DD9+aK6SwZzqL3ZMZ/JvPvAdvEATU38fLPA8rzyPXwZke5pkYe6aykBXmq8nuhJbvuPnSaayU6xADKB/4hasB211Mc8mo58+oqhkPIsJUNmkrjrimGRXuoeRSwcNWvnMeQ9QkGAjG2EMAVk3H7meM8U/4+wB2Or0GEW0HUGCMPcrUbfVnAby1G+t1gg/tmc0nBzNspXVM+/EYzq9XsWOs2Xgc3F7AeCYeqHqom9QMVUBAw133azzKxrBVOg5BUgJVbfEyXd6g+brLpvHoyRVfO/Tlzbpe0ZOOq8bDyXO0qrYC1N+lEwlzxphl2AqAL5mS44slTOcSuGxbHoC7Mm0nqIgSErGIrSRHJhFr0jRzomqYhT6dS9jmPHjBwxQPW7URPiwLakHMRFb9jrsVg+gd9RaeaC/xZDyI6HYi+kPt511EdE0H3vtXAdxr+P9eInqSiL5LRLdox+ahqvpyzmrHegr/Auydzvatw9wt5wF47/UQJBlLm4KeLOdEIoQb903hkZMrAzUIyNbz8Jk057FlXm0FBPMkdeOh9djccmAG5bqMH/pQJl4uCZjhxiMRA2NwzONYyZMAWsK8AxuauqxAYc272b0Bej2OX9zEpbM5zOV582r3jUfNYoqgkWwyhkpd9tQtX6lLyGivNZVL2g6E4sf5BqCQiqFUlwJ15JcECdlEDFnNaLltaGqiupGI9EC/ygkvw6D+FuoY2l/WDpUB/J39M9zRDJEE4H9rhxYA7GaMvRrA7wL4RyIqALD6dGz/OkR0JxEdIaIjS0ud625dLgkgUt34fpXqOoatfI6j5UZmx3iq5b6b9k/h3HrV9+znbqLuug0J88Ceh/p47nkAwSRKFjdqyKdieoz9pv1TiEXIV97DHLYC7HecjDHULUp1AW3H24ENTa3e3MUPqLmC8Uzcs7ouYwzHF0s4MJvHbEG9qPYi78HzFHbkktrn67EBjxvQqay958GbBycNCXPGvM8gN1IWJGSTMf19eRjODqvZJf3Ai+dxE2Ps1wHUAIAxtgogsN4vEd0B4GcAvEsLRYExJjDGVrSfnwBwEsBlUD0NY2hrJ4Dzdq/NGLubMXaYMXZ4ZqZzTfBLmwImMgmMZ9trLAtCXVJQFWVHz4N/URc9eh56j8dEuuW+my5V8x4PD1DoyhzvT+kX22Bhq0wiqn+eQfIei0UBc4WG4c2n4njN7gnP/R6CpOan9LCVSw7Han55473VnEe7o0ftJC/2Tmc9h60WiwI2BQkH5nL659OLiitzuM0Mb6b0ErqqGgzRVC6JlVLd0gvnYSu+AcglNZ2xANcHVfWgMSXTS9iq38lywJvxEIkoAm3HT0RTAAJlwYjoVgD/GcBbGGMVw/EZIopqP++Dmhg/xRhbALBJRDdoVVbvAfC1IO/dDnyXmE/GUJd6O/ua74ytdK04qXgUE5k4Fjzu8vgcD3PCHFArbOYKyYFKmptnWfCwgtsAJTN6wjwR0z25IJuBC8Wa7u1xbjkwjWfPFV2VWIFG78C0IecB2IfhrEbQcvJt7HiNNJKwzZeEvT56PY5fVCutDszmMZVNgKg3noexudEKHg5yCznXJQWSwnTjMZ1LoC4rlp7dallANEL6JqSdwVwlQULO4Hm4ha0qpqq4fuHFeHwMwJcBzBDRn0LtLP8LtycR0T0AHgVwORGdJaL3Qh1pmwfwgKkk93UAniaiHwH4EoD3aR4OALwfwCcBnIDqkRjzJD1hWVM/1VVMe+h9FB10rYzMFVLePQ+t5p3H7I0QEV67X00At7ub7RSCqcfBbaduR1lQu4cjhi99MM+j1uR5AMDrLlM93e956JNZMe1aMy6elGDS9jJGS6yoAAAgAElEQVTSzo7XiF35597pLBY2ap7yS1zT6sBcDrFoBFPZZE88j4qHnAfg7nmYpd25cV+2+B1WSqquFc875A2Dufyih608hmPdcjy9wnUsHmPss0T0BIA3Qs1BvJ0x9qzL08AYe4fF4b+3eeyXoRooq/uOALjS7f26yXJJwFU7xxsniCHk0G34ztgp5wFoXeaePQ91CJTVThYAbtw/ha88eQ7HLm7iFdsK/hbcBaz6PIAAYau6pF9IguY8ZIXh4qaAbWPNf/8r58cwkYnju8eWcNvVzjUdRl0rwEfYysJ45A07XqvNgFfsGs/0iquVMq7Y7nwuHL9YwkQmrlcgzRV6YzyqoqzPNrEiq+U8eM7LDj6Qi+ey9EbBch37TFHwlXJd/z0BtVkTCGbES4KEXdmM/tm7ndduYbpe4bVU9wzUHo1vA4gQ0au6t6TBY3lTwHQu2fHhO17w6nlsH/Oub8UbBO0YtLyHIDXPpw7qeZSExkWm4Xn4+1uulATICmsJW0UjhNdeOo1/O77sWqm2xI2H1mDGL1b2YavmMbxGcm3seI3Yie35Udc9vriJA7N5vfF0Np/sScOpWw4g59Pz0HMeukSJlech6MYFMIatghmPXDKGaISQjLnLslddwnS9wku11R8DOArgbqghrI9BDT+NBNW6jHJdxnQ+oYetNnvYZe6kqGtkrpDCcqnuqdfg3HoV8xaVVpz58TT2TGXw6IDkPQRRtvQ8/PZoqOEB9bmpeASJaMS358G9O3PYClBDV0ubAl644DxTvuF5qBcfN09KH8Nr5Xl0aENjJ7bHJVfcjAdjDMcvlnDpXE4/NptP9S5h7nAx5ca57JKIrpg+Ax5WtJrSaRRFBNobzGU8L9OJqGsub5gS5u8EsI8xdjNj7Bbt9rpuL2xQaMxdSDaFrXqFPoLWxfPYple3OO/09CFQY/aeBwDcfGAaD59YGYjRtOYeh3TAaiteTw+ouZ1COuZ7pseFDQfjoUmVuHWbr5TqmgSGuha3Ut1GtZV1nwfQgZyHjeeRTcYwm0+6Go+lkoCNqojLZhvGY66QxEpJ8C0j4xf3Ul1vCXOz4OBElutbtRoPnvMwv0eQawOfMQNwxegt4nkAeA5qknsk4SGGmVxSv4D30njwi5uTthUAzHmcKGgcAuXEz7xqB6qijAeeX/Sx2s6jKAx1uTnnwTtrfTcJauEBThCJkkVtJ22VX9g2lsJlczk8dMzZY1Or9xq7Vrcqm8YMd2t5EqB9zTUnsb290+4VVyf0ZHnjUjFTSEFhsNWH6hS1uuwoEsh39RW3nIcpbBWPRjCeibc0CgqSjE1B0j0TwLuBMlOXFNRlBTltI5H2IFUzTJ7HXQCeJKJ/JqKv8Fu3FzYo8EqL6Vyy8UXtYaNgsSYiHiWkLGr8jTRmmTsbD7MUux3X7ZnEtkIK3/iRbVtNTzCPoAXUTvhUPBIwbNUwHvkAA6EWN2qIRqjp4m/kdQdm8PiLq46GbdkUL3ettnJImHcqD6fnPCx2tPtm3Hs9+AyPA7PGsBVvFOxe6IoxhopL01zGY6kuF1hMxxvniFWjYKNBsHEORCOETCLq++9gHBOgvrf7oDPj0K5+4sV4fAbARwD8NRo5j491c1GDhD60J9+vsJUqTeImJrxd2wm7yYybh0DZEYkQfuZV2/HdY0t9nS5ot+vOJGIBqq3kJuMRZCDUhWINM7mkrY7SDfumUJcUPL9gL2W+vFlvMj7ck7Iv1bXv8+iU8XBSat0zlcVKuY6Niv1ndWxxE4VUTFeGBWBoFOxe0lyUGWSFOe7EoxFCOh51TZibPQ9AbRQ063NxY2LcAABaw6bPv4NxTADgLWzl1tfSK7wYj1XG2IcZYw8wxh7kt66vbEDgs8unconG5LY2K1tEWcHChrf5AsWa5JosB4DxTAI7J9L44Uvrjo9reB7uZZ23XT0PUWa479kLntbaDey6q7mYoB/UsFXjSxdkINRisaaHCK04NK+Wsz533n6+ykq5OWzFPSn7Ul1ebdX6dY1GCNmEd9VYO9zCVgBwesXe+zh+sYTL5vJNmxzueXRT36rR3Ohcyp5NxnwnzAFNHNEUduP/N5bqAqoB8Pt34GviUQ23sJUoKxBlpjfK9hMvxuMHRPRfiOhaInoVv3V9ZQPCcknAeCaOuDYCNZeMB+oiZYzhqTPr+JOvP4cb/uuDuPkvvuNpGJHqebi24wAArt87hcdfXHUsFeVDoCaz7gozV84XsHc6i6/3MXQl6JVGzV+WVDziK+ehKExLrJpzHv6+7Bc2athWsO/x2VZIYSqbwLM2Q5RkhWG1XG+KlwOqJ2Vbqivah60ANWneruZaVZRtlWkb88xLts8/cbGEA4ZKK6DRZNdNz8PrbItcMura52FVcTaVTbaU6q6aRBH190jFfW8srcJWTue1U3ix13i5Kl2n/fuThmMMalf4lsec3Cz4HL7z0koZ//TkefzTU+dwermMRCyCK3cUsPLyOl5cKbvmHvgIWi9cv28SX/7hWX0XaMX59VrLECg7iAg/e9UO/M23j+NisYZZiwqjblOz2XVnEjFfnoe+wzOGrdKxQKW6N+6fsr2fiHBwR8HW81gt16EwtORMnMIVjdCdzbyKDsz0cOpa3j2ZxVg6jvuevYCfe3XrFIWVkoDVch2Xzjafc4lYBFPZRE88DzehwGzSXZZdf624MWyVwFpFhCQriGkbSB62Mm/ACgGmCZZ0sc5Gqa7TeW3ugu8nrp6HoTz3llEt1TXuEv1Mbnv23AZe/9/+FR/51jHMFZL4i194JX7wh2/EX779KgDeEonqIChvxuOGvepF7fun7Jv71B4PZ4Nl5C1X7QBjwDeeXvD8nE5iF+9326GZMU4R5BRScdR9zPSo1CVs1iTLMl0jV86P4djipmXPDa/caTEeiSiqoluprvXXtZ1ZEhynruVELIJ333AJ7n9+EaeWWr0Pq2Q5ZyafxFIXPQ9e3ux2Mc0m3A1spS4jEY3oRgJoeBerhrzfcqmOeJRaIgK5AHPMzZ5HxmWqpF1JdT+wNR5E9A7t39+yuvVuif2F61px/MwqPrVchsKAL73vRnzuzhvxS9fuxlg67iuRWKxKrj0enF2TaWwfS+GxU6u2jznnocfDyKWzORzcXuhb6MouYZ5KRH2JARqnCHL8SpTwHbS5u9zMoR0FiDLDscXWZkE+u7w1bOXkeViH7jidGEVbFRXHUMgdN+1BPBrBJ793uuU+PnrWHLYC1KR5NxsFvYZxssmoa86jWpdaXmfaotdjtSxgMpto8d6D5DyMYp2AagQ9GY8BCFs5eR7j2r8zNreRgEuTcPzMKuZVSnu0hCMnl4whk4h6cufVsJW3nAcR4fq9k3jstPUwJ7shUG685eod+NGZdbzkkDDtFlaluoAaWvCjqlsWLMJW2s7Ra96DNwi6aUgd2jEGAHjufGveg1fumOPlTp6UIMogAuJR61BjvgNhK7fegZl8Er/wmnl86YmzLdVHxy+WkE/GLI1qtyVKrCqkrMgmY576PMyvw/9ORuOxUmruLufkAhhx83npVghipwTQD7yErf7I6taLxfWbmqg2AxnLD/3s8ng9+LhF2Gmu4K5FVRNl1CXFs+cBANfvm8JyqY6TS60XeqchUE787FU7AKAvPR98Z2n2PLw0UxkxhweAIJ6HfXe5kUsmM8glY5Z5j2VD06kRp9+HT1K0y1PlAxZxGPFS/vlrt+yDKCv47CMvNh0/vqjKklitb7aQxHKpDtlBoflHZ9bx1o89HOh38J4w9xC2svgMGuKIDYO5Uq63lOkC2lRHn7NVrMJWksJsZ78PRdgKwH/o2SoGlIY0SbMAmlfjsV5RK6WMMVTObN5dcdSrrpWRG/apeY/HTrfmPbz2eJiZH0/j2j0TfQld2cX7Ux7q4Y2Y6+kB+JZlN4+ftSMSIRzcXrCsuFou1ZGIRlq8SbewlV2yHNAS5l3MeXD2z+Twxivm8Nnvv9QkpXL8Ysky3wGohpZXmNnxraOLeOrMOp4641xmbrduwH0n7mWOedXC8+DilUZ9q5Wy0FKmCzR0xtzCY0Y2BQmJaAQJbXPkpqzr1Vj2Aq+quiPJsmloD+Bvd7FartuWxM4WUq6Dcng4xU2axMieqQxm80nLvAcfAuU3bAWoifNjiyW8cMG+f6Eb2FUaZRLunbhGjPPLOWO65+E9bJVNRB3lvzmH5gs4urDZsuPm3eXmXXo67lCqK8m2ZbqAahDLddlxd+9G1UXig/Prr9uH9YqILx45CwBYK9exXBJwYNa6uq/R62F/rh9dUM8pp94YO3yV6rrMMa/UpZbXKaRjiEepqVx3tVRv6i7X3yPlrZPdiFEUEXCXqhmWnMeriGjV4rZGRPYZ2S0ElyYxhq14nLzkYXexVqljPGNtPObySSwWBceejA1djt1bzgPQ8h77pizzHryvJMjch59+5XZEI4SvP9Vb70NXlLVpEnSTP+eU9GorY8Kc5zy8eR4XN50bBI0c2jGGqii39EaYpUk4GaewlajYVloBjZke7eQ9vHYtH94zidfsHscnv3cKkqw0Kq0skuUAMJNXP68lBy/76IKacA9kPHyU6hofb/ladbml2ZCItF4PdSNZE1WVbeuwlf9uf6MoItD4Pew2EsPieTwD60T5NEYkYb5Uai2r9HOCrFXsPY+5QgpVUXb8wgcJWwHA9XsnsVgU8NJKpen4+fUqpnPJQDXiU7kkXnvpNL7x9HnPF+xO0JiiZyrVTUQha6KJXqg4ha08xtrVBkFvxuNKm05zc98QJ52I2qrq1iTZMWzVCeOhhq28BSLufN1+nFmt4r7nLjRGz9r0Fc0VnBsFNyqiHk61KjBwo+Kx78HLNMGqKFt2bk/lEnrOw667HAgmFcNneXDc5fmHw/MAY0y2u7m9MBF9ioguEtGzhmOTRPQAER3X/p0w3PdBIjpBRD8mojcbjl9DRM9o932UvHS3dYhlgzQJh4/99JLcWyuLGLeZPT5bcJdu8DoIyswN+yYBtPZ7uM3xcOMtV+3AmdUqnvQRm1YUhpdWyr6b8Th2ooD6TI+6N+NRFiQQNe/YUvEoErGIZ1n2xaLg2Xjsn8khEYu05D1WTKXfHFUQT7EMq5gnKZrxc07a4Wc63ZsOzmHvdBZ3P3QKxxdLyCai2GHjkc24SJQc1cKgr949jtPLZde8hJmaKCNC9t33HO5xOhlYO2n3qVwSS5rnsWJTLQcEM+JmsU5uBO08pGFJmLernPtpALeajv0BgAcZYwcAPKj9H0R0EMDtAA5pz/k4EfFP5xMA7gRwQLuZX7NrLJcEFFKxpl2ffoJ49TxswlazmjvvlPfwOoLWzP6ZHKZzCTx2ujm6eH7deYKgG28+NIdELGIZumKMYWGjin/98UXc/dBJ/Kcv/Ag/+zffw8E/vg8/8Zf/it+658lA72lrPLgSrU1jnZmSICObiLXkGrxKlCgKc9W1MhKPRnDFtnyT58EYU8s8bcJWgPVFg1db2eHnnLSjWpeR8ribjUYIv3bLXjx9dgPf+NF5XDprXWkFqB7jeCZu63nwfMfbrtkJxuA7p8bnl7vtKXkfhZNEiRq2av0MprMJ3WislK27y4FgRtxsPLh8jm3Oo25dut4PbK9KjLH/0s4LM8YeIqI9psO3oSFz8hkA/wrgP2vHP8cYEwCcJqITAK4johcBFBhjjwIAEX0WwFsB3NvO2ryyXKrrc6Y5XsNWNVFGpS7rA2XMcHd+0aFRMKjnQUS4bu8kHjul5j2ISBsCVcNPXj7r67WM5FNxvOEVs/g/Ty/gpw7O4djiJn68WMKxxU0cu7DZpOszV0jisrk83nX9JXjk5IonHS8raqKMWIRaKtbcYsNmzIlJjleJkpVyHZLF+FknDu4Ywz9rYT4iQrEqoS4rLWW6QLPxyJoS8oLknMxudxStojAIkuJrN/sLr9mJD99/DCvluus5NZdP2aopHF0oYiqbwOu113jufBHXXDLpeR1eByPlPFRC2XseDVn2lZJ1kycQzIiXBAnzE40NnVvYqiJKthpkvcbflrZ95hhjCwDAGFsgIn7WzQP4vuFxZ7Vjovaz+XhPWLKIT/MTxO2Cs67JV0/YeR68y9wpbFUTkYxFAu0ybtg3hX955gLOrlWxazKD9YqIqij7LtM1c9vVO3Dvsxfwzk8+BgAYz8Rx+VweP/eaeVw2l9duuaZCgd//0o/wb8eDjbS123W7ufdmSnWp5aIMeB8I1ejxsBdFNHPlfAH3PP6y/jdYtpEmAQy/j8VFQ5AUxwqvQoBErRGuH+bHeKTiUdxx0x58+IFjuMwmWc6ZLST1IVpmnl8o4ortBWwfS2EiE8dz5/x5Hnbeghm3nIeiMM0QtX7OU7kkqqKMSl3SRREtPY9AYStZ94qAhkdtd147aZD1ml4bDzuszChzOG79IkR3Qg1xYffu3W0varkk4IpthaZjjVnFzicIr2ufsMl55JIxZF26zIs+dK3MXG/Qudo1mdGTku2ErQDgpw5uw3+//WpMZZO4bFsOM7mka8ggH2BiH0eQZMvxq2mHi60V5imCnEI67inn4TR+1g5jp/muyUzTYDEzPFxhteNUcx5OY1bbG0UbtGv5PTdegidfXsO/e4Wz5zGTT+LkxVZNLElWcGyxhDtuvAREhEM7xvCcwxwUK7xO1XPLeXADaul5GCRKVkp1JGIRy3OJGwF/1VaSbnQAQ6muXbWVj9xUt3EtryCiCSL6CBE9TkSPEdFfGRPdPlkkou3a624HcFE7fhbALsPjdgI4rx3faXHcEsbY3Yyxw4yxwzMz7ReEqdIkrQNfAPcThEuT2IWtAK3L3DFsJfkq0zVyYDaHiUxcz3sEbRA0E4kQbrt6HjcfmMZsPuVJnbeQiqNclwPNshZEBSkLz8MpR2BF2TC/vHltMWx68Tw2vTUIGnnFtjyiEdLzHss2Q4QA5znmqgF1SJi3OYrWaZaHE+OZBP6/f3+dbaUVZ66QwlJJaCkGOLVcRl1ScMV2dYN2aEcBxy6UbLurrajYeAtmGp6HTTjIoQSWG/vlkoDlUh1TFrpWgJoL8iNSyRhDuW5XbWX9GlVRcS1L7hVeavM+B6AI4F0Afln7+fMB3+/rAO7Qfr4DwNcMx28noiQR7YWaGH9cC3FtEtENWpXVewzP6SqCJKNYkyyls6MRck2KcRVOp7kZM/kkllzCVkE9j0hEy3toneZ+hkB1Gp7wDxJWqUmKpefhFOaxoiS05hLUtXkbCLW4UUOEWmVFnEjFo7h0JmcwHvaeh1O4wi1hnk1EQdRG2KrLFTyz+SREmWHNNJGSJ8u58Ti4o4C6rOD4ov3cEDNqGMf9Msb/9rYXZQfvS5coKdWxWrbu0+GoMijejHhVlKEwWPd5iDbyJB6bOXuBF+MxzRj7Y8bYce32pwDsBxpoENE9AB4FcDkRnSWi9wL4cwBvIqLjAN6k/R+MsecAfAHA8wDuA/ABQznw+wF8EsAJACfRo2S5nhgzJcyJyJP08pqW87Ar1QW8eB6i72S5kev3TuHMahXn1qs4v15FMuZtCFSn8dtPYUQQrbur3WLDZsxTBI1rK1Yl196VC8UapnNJS6kZJw7taMiUrJQERMh6Q+EUhnOTJ+HnZFDjwSt4umc8uIp080bp+YUi4lHC/hk1Z+IkKGlHVWwe8GVH1mWOuVOzoS6OWBZUXSuL7nKOn9kqDaXnxvr5uW5fqtuq/NsvvMREvktEb2OMfQkAiOjn4eECzhh7h81db7B5/F0A7rI4fgTAlR7W2VGcdolexBHX9JyHU9hKVRzl1ThmijUJu6eyFs/0xvVav8djp1Zwfr2GeY9DoDqNLkDoc2ofYL/rDlZtZeV5xFCXFQiS4riju1AUAnXmH5ofw1eePIeLmzUsldSmUatKmUbYqvX3qdkYUCOFVDy48ehy41mjUVDAFdsbx48ubOLS2byu67R3Oot0PIrnzhfxdo+vrUqKZFwfF9VG/dolzJ3UeXnOY1nLeVw6Y18g4MeIl02DoAB1I6AqLNt7SF6MZS/wso369wC+QEQCEQkAvgTgA1tdpmTJQpqEk0/FXfWQ1ip15JMxfXytFbP5FGqiYltiWayKGPPZ42HkFdsKKKRieOzUqjrHo818R1AaeaIAnodbwtxrtZVdwtyjOOLiRk3fQfvh0I5Gp/lySbDdtaYdjKEgOcuTAOpF69x6xVEGxI6gOQ+v8M/NrG91dKGIg9sbBSnRCOGK7Xk870OmpOYyh8SIGlKyy3mo38F0vPUcScVVPbOVUl0VRXQIW/lR3ebRC3Muzkmqpio6b3J6iZcr03TXVzGAWCnqcvJJ94FQa+W6Y7IcaHSZXyzWWsJTjDF1imAbYatohHDdXlXnqlKX8ZOX90dVpp2wVU1UdONjxE191IikeRZ2OQ++NqcxuxeKNVy713+dyEHNeDx/voiVkoDpvPU5wXeT5ouGJCuQFeYYtgKA+Yk0vv3CRVx717cwm0/i4I4CDu0o4OD2Mbzusmm9StCKbusl8fPcaNiWNgUsbQq4Yntzsv3QjjF89clzUBSGiIdeBisxQzuyyZhrzsMuGT2VS+DMWgU1UbEUReTkUzEsbHibX2Kl9AzwgVDWOY+aaN2L0g9sjQcRHWCMHYfa9d0CY+zprq1qALBS1OXkUzFdntuOtYpoW6bLaezIhJb5z1VRhqSwwAlzzg37JvGto4sA2i/TDUpDgDBY2Gra4sKZjEUQIftOXCPleusIWg5X1t1wWFtNlLFRFX01CHIKqTgumcrg2XMbWC7V8erd45aPs2sOawzDcvY8PvbO1+DJM2t4/nxRvS0U8W/HlyErDL94eCc+9LarbJ/bbb2kVDyKQirWpKbAk+VGzwNQPbV/+P5LeHm10jJEzQqvTYKAusMPErYC1NAVnwzpmjD3HLZqzXkAziOJvZYm9wInz+MPALwXwMcs7mMAtvQc86VNAflkzNJFzKdiOH7RPWzllpx2Eo3jF9p2PA+g0e8B9NN4tJEwl2TLC2cjNuzBeOijPq0S5u5Nn16HQNlx5Y4xPHNuwzFslYpHQISWWHdDnsX5gpFORHHT/mnctL8RKKiJMn7u44+4TqzshV7SbCHVtA5zpRWnkTQvuhoPRWFq2Mqz5xG1T5i79LpM55K6ppuVKCInn/I+mMtqTADgPMfcj7HsNrbbGcbYe4koAuD3GGO3mG5b2nAAmvqpRb4D8DbHfK1Sd0yWA40uc6svd0NRt73k2MEdBX1ITbs9HkHJJWIg8i59bsSpQS6diHmaY263wwOMyXz7tXkdP2vHwR0FvLxaQaUu24atuDFs9TysJyl6IRWPYjqXcG2C7IXM91wh2bRJOrpQxLZCqiW0e2Auh1iEPFVc6Z3xXj2PZMyhz4PnPOzCVknwgjwrUUSOn9kqjmErW22rISnVZYwpAP66R2sZKFTpbOsvOh8I5VTeuVYWXY1Ho8vcyvMIpmtlJhohHN6jxur75XlEtOYpr0OXjDg1yKUTEU9zzO2+pIAxH2O/Nn2CYFDPY35M/9kqDMqxml8tiNaTFL1SSLn3segJ80T3ZsPN5lNNpbpHFzZb8h2A1hszm/M028Pr/HJONhmz1bbifRV2lUzGa4Gz5+F9mmBjU2MaN2DjUUuygrrsT4Osm3g5Wx4gotu6vpIBY9lGOhtQTxBRZnpIwUxdUlASJNecB6CGQqzG0fIvvJ8pgna88eAcJjLxvjQIcrxcxKxwkiO32qlbURbscx66VpnD7pwbd6eEuhO84gpwbjJMW4QrvIat7Cik3aVhuKx5wmcPix9m80lc1IafCZKMk0ullpAV5+COAp5fcDce/LPyuhPPOeQ8qnVVst8ut2Q0GG45D8Bbw6Y+oMxjtVVNOxfSXTTyfvCyit8E8FUiqo7SJEG7oT1AY1ax3cXQizQJZ7aQtJRl16cIdsB4vPO63Xj0g28IfAHqBOpFLFjC3O7ikE7EPJXqlmx2eIB64UnGIi5hKwFpLekbhOlcUvdanC48VnPM2wlbAermw60Jkidhu9kDNFtIoS4r2KiKOL5YgqQwvRLNzKEdY1jaFGxl3Dk1h8Y+KzLJqKM8idNnwENVqXjEsc9C177zYDzKgoRMItpSVWblgQLGvMyA93kQEVcWnAYQB5DDiEwSFGUF6xXRwfNwPkG4NIlb2ApQ3XnLnIeeMG//RCGivsdJCylv0udG+KRAe88j4sl4lB3CVoC7RMlisYZtY950vOzg3odj2MrCGPIxvME9D7UJsmYjdwH0JgnLZ5lf3BRsk+UcY2+ME056VFbktLCVlSGtuJTAcqPv1F0O+NMZs2tcTdkkzLstI+MXp+3MPwH20wR7tL6+0JAmsct5OLuma2VNjj3rJWylJhLNJzTfCTvV5w8TXsInZuouIRvP1VY2VS362lIxR69osVjzJcVuxWsumUA6HnX0PNLxiEXYSvM8AuY8GqXI9p99Vex+EnZWnyhYw/MLRaTiEeyxUU8w9sY44bczPpuMgTHrxlI3aXdu9J3+foDfsJV142rG5rz2ayy7jdMZ2f9pI32CNwjaxaf5Bd3WePjwPOYKape5OWFbrIlIa2NStwJB5DPcQjYZn2GroJ7HhaL32eV2vPfmvbj3t29x9CAyiVjLZEQ9YR7wPPDSoFnrgcz3nGF+zdGFIi7fVrAdaFRIxbF7MuNaceW3SoxvHqzKdSt1CRmL7nIOz3k4JcsBf7NV7AaUpbWch3lD2TCWg3FNcIqJzBPRR+3uZIz9VhfWMxDwTljbUl19d2H9hVzzoKjL4fInF4u1puR4sSq1XaY7SOQDhK0aDXLWF4eUjz6PaIRsL8CFVFzPU5lhjOFiUfA8ftaOVDzq2reQtsx5tDd21JPn4XGgUjvMGiZnHl3YxE+/cpvj4w/tKLiGrXx7HtrjyoIMmAq9Ki6fwXgmoYlaeg1beTEesuWGJhWPQmGt+T6/BQLdxunqVAXwRJPN1OkAACAASURBVK8WMkgsuXoezmM/uSiik6IuR9+RbQpNcxGKNbEjlVaDQiGtljd7lZ0AGjFe25xHwmvOQ9Zky212uuk4Xl6tWN63Wq6jLiuYC6Br5ZdMPNpSetxuwtxLH0svwlaZRAy5ZAxPn9nARlW0zXdwDu0o4N5nL6hjCWxCt3qproPHYMRpmqBb53Y0Qrj1ym24+YCzoDg3Bl4S5iVBsqyA5LmXmunv0igQGIxNpdMqVhhjn+nZSgYIJ0VdoBEKsA9bicgmop6SnHMFa9G4dnWtBo1CSo03bwqSZ6Ool6naxPsziZhnz8NtjKvdxVXv8WjT8/BCOhFtaXpst1TXW85DwXgPNiqzhSQePqGOI3Y3HmpvzNHzRVy/z/qC7bc/JedkPETZ9bz8+LuucX2PrNYQ62WefMkmYW4U/TSK2fRCCcAPTp+6tR8/Aixv1pFNRG3dWB6ntA1bletNM7ydaCQSmyuu2hkENYh42QGb4fH+lM2Fk3fius3iKNvMLzeurVgTLV+Hz+K4dNZ5TncnsAxbuXhfbox5+Nx7NRd7Np/UL6qv2OY8fdBLxRWXcvG6E9c9D4sGvk6F7iIRQi7hrkAB2Fdb8XWYz4VeKAH4wUme5IZeLmSQcJImAYBYNIJMImrrmnrRteJkk6o7b65pb2cE7SASRFm35lJpxL9ETmWogNqMlXH0POIQZWb5Og+fWMFMPokDPTAemXgMdUlpkrZw877c4CFWJ+HHXuklcS9792TGtYpwtpDCdC7pYjz8DbHiOQ8rWfZKvXNqtbmUN3FEu2oru8FglR4oAfih56sgosuJ6CnDrUhE/5GI/oSIzhmO/7ThOR8kohNE9GMienO31+jUIMhx0u1frYieGgQ5aqPgFvc8fFShcASXHgevc8ztpghyxmyEGxljeOTkCm7aP9WTIVpWvw83aEG7v+PRCLKJaN9LdYGGl20lS2KFmjS3r7iqiBISsYht1ZYZp5xHpS51LJegzg1xPs/1MQEW75k25DyM1IbF8+gWjLEfM8auZoxdDeAaABUAX9Xu/gi/jzH2LwBARAcB3A5VGv5WAB8noq5+ek66VpxcMoZNm0ag9UrdkzQJZzafbMp5MMbaHkE7aAQKW7kkixsy5s5f1LIgWX5JG2uzlig5tljCcknAa/f3ZqRNKtH6+wiSjFiEfI+/NeJWity7sJXqebjlOziHdhRw4mJJPw/M+F23Y8K8g96Xl4FQDckc+0FnLWGrYcl5ENGk061D7/8GACcZYy85POY2AJ9jjAmMsdNQZ5lf16H3t8RJ14qTd+hbWC27K+oaMetblesyFNYZXatBwYsAoRm3MlW7HZoZu/BA69qaL7A8uXvTpc4VNp0iYxGusBvD64exdNzV8+hF7wAv1/VqPPZOZyEpDAvr1jIlVZ+DkZpKdQ2IsgJRZvrn3y65VNw1YV6q2/cepW086qooIxGNtLWR6CROq3gCwBHt3yUAxwAc137uVAnv7QDuMfz/N4noaSL6FBHxsW3zAM4YHnNWO9YVJFnBWsWL8bDeXYiygs2a5Nt48FnmgFHXagvlPGx29064lurqF1vnnIddYrKxNusZ64+cXMbuyQx2TrjPyO4EVnPM7cbw+sGpu1+UFUgK68lu9qb90/j5V8/jpv3ejDH/3M+uVS3vr/j0PGLRCJKxSEvCXO/c7pTnkYyh5JLbcxoT0MjltSbM3YaC9RKnhPlextg+AN8E8LOMsWnG2BSAnwHwlXbfmIgSAN4C4IvaoU8A2A/gagALAP6KP9RqeTaveScRHSGiI0tLS4HWtVqugzHr2eVGCjZDX9Yr6rFJD9IknNl8EoKk6BevTsmxDxJ8h+UnYe6WLE5bhHmsKAuys/GwGAglyQoeO7WK1/bI6wCsd5yCqCDVpudRSNl7Ht2eX25kJp/Eh3/pas+SOzsn1BEC59ate3BqAUJNVvkIt0FQfsmn3HMeTqoHTtVWgzIICvCW87iW5x8AgDF2L4Cf6MB7/18AfsgYW9Red1HTzVIA/E80QlNnAewyPG8ngPNWL8gYu5sxdpgxdnhmJph2Iw8fuXkeuaS158E7lb2W6gINqW9ecVXsoKLuoBDTErd+lHUbZarOYSunhHldUmcgOCXMrfIxT5/bwKYgNU3m6zZWVTaCpLTteYw5eB61Dl84O8m2sRQi1DnPA+ADoUzGw6c6rxt21wYjTp4Hb3o0V1tVeyAj4wcvxmOZiP5fItpDRJcQ0R8CWOnAe78DhpAVEW033PdzAJ7Vfv46gNuJKElEewEcAPB4B97fEl3XykYUkWO3u1gte5cm4cyZej14XmAreR6AepH2OqITcJ/fbefeG3H6knIa5ayNtT16Uj3FvYZYOgGv9mkJW7XreaTtB3ENWhLWSDwawbZCCudsjEeQJLfVNMHGFMEOVVulYqi4TBO0GwQFNEpxrXIegyJNAngzHu+AKsH+VahKu7PascAQUQbAm9Ac/voQET1DRE8DeD2A3wEAxthzAL4A4HkA9wH4QDdVfZe5oq6HhHmlLkOSm+Pta1rYyos0CWfW1GVe3II5D8D/QCi3MlW7qhQjJQ/GIxmLIhWPNF1gHz6xjFdsyzuOHO00VmG4TiXMS4LUcq4Cg208ADXvYed5uEmKWJFNRFs9D58TCd3QJUocQle818QqbJWIRhChVs+j5rNAoNu4Xp0YY6sAfruTb8oYqwCYMh17t8Pj7wJwVyfXYIebNAnHKIBmDFH5EUXkGGcdAJ2dIjhIFNLO0udm3MpUvfR5cMPiVG0FaIZNM9o1UcaRl9bw7hsu8bzWTpCxqB5zmuHuFX4ebdaklv4jXWxvgC5KRuYn0nj8tPXsuaCex5pJBNPvOFs3GvJF9vp0Th4xEVkqRg9dzoOILiOiu4nofiL6Nr/1YnH9YHlTnRrntFMF7Gd6+JFj52STMeSTMd3z4OETtwvesOHX83CaIgg0LnhO+lZePA+guRfiiZfWUJeUnibLAWtPquYww90r/GJmlTQffM8jjYWNKkQLrylIV7hVwrzT1VZelHXdxgRw6R0jg5bz8HJ1+iKAvwPwSQBbeggUwKVJ3C/8dh3Ta+U60vGo79jkjDYUClBLRnPJ2MDUc3eKfCqGYxf9NQk6hWzsZByM6Ds8lwuDcSDUwyeWEYsQrtvbY+NhVaorKpjKth+2Aqwr3QZtOp2Z+fE0FAZc2Khh12RzyXSt7j8HkE1GURHMF2V/GllueFHWLQkSYg5jAtKJ1sFg1QC/bzfx8mlJjLFPdH0lA4KXBkEAyCUbrqmR1bLoq7ucM5dP6RIlqgz11vI6AJ4w9x62qonO8f54NIJ4lBzDVl4S5nxtvNjh4ZMruGrXeM89v2SsNdatGtD2+zwAG8+D60MNUDjECO/1OLdebTEefpsEAdVAmHMenZ7Q5zayAWj0HtnJ3mTirYrRg+Z5eNnSfIOIfoOItnehw3zg8KJrBdiHrdYrdV+6VpzZQhKLhlLdrVSmy+F5BTcVXI6XMlUr996IW3jAvLaNqohnzq7jtT2ssuIQkTpa15jz6FDCHBjOsNW81uthTprXpWDNjVZzzLvR5wE467i5qR6kEtZhq6FKmAO4Q/v39wzHGIB9nV9O/3n/T+73dOHO28Q1Vyv+pEk4ape5oOpaOQzAGWYK6RgUpsqveNnVC6J7mWom4TxN0LvnoZazPnZqBQoDbrq0d/0dRtKJmKlUtzN9HkBrBz3Q2ybBIPBhSeZy3cYUQX/eYTapnoPqhbi5n6Jz1Vbq5+0UtrIbQcuxmmdfrcsDVdjgpdpqby8WMijcdrU35ZOcvrto3s2tV8RAchaz+STqWpd5sSphx3ja92sMOrqGVFX0ZDxqHi6c5p26mXLdXoDOCG+ke+TkClLxCF69e9zx8d1CNYaGUl0PBtQNXvJt5XkMcpMgoJZRz+aTOLvW3GUedLYFbxYtCw3jURFlxKOEeIdyjI2EuX1+z031IJOI6eOwAUBRGARJGSgP0fUbTETvsTrOGPts55czPNgJ/amiiP69Br3XY7OGjaqIV3iUrR4mCobE7Q64G0cvF85UvHWAkpGSICEeJde8QSEVh6QwfOvoIq7dM9l2niEoGdNAKNXzaO+ilo5HEY+SZcJc9zzaNFDdZOdEGufW7TwPf+vmBqMsSLoEUZB+ESfUkcfuYau8Q17TvCkaxPCiF5/vWsPPKahKuD8EMNLGIxlTk7XGsJUkKyjWxGBhK73LvLZlw1b8y+K110OQFMcvGKBebN06zN1CVkDDsJ1dq+Jd1/e2v8OIMYfDGNNyHu1dMIjIVt9q0JRarZifyOBHZ9abjgXtCs9aNPB1cpYHoH7ebhIlZUHCtoL9aONUvDkc2zCWQ2Q8GGP/t/H/RDQG4B+6tqIhgYg0WfbGF3KjKoIxBKu20k6kCxs1lARpyybMAfvxvWYEScGMW9jKJedRcpnlYV4bgJ73dxgx5nDqMh+G1f6F3U6WfdCUWq3YOZHGfc8uQFaYPvipFvBiajXHvJNTBDl5l4FQbpuajClhrjdzDpDnEeSsqUDVlxp5zLsLLk0StNoKAE4ulcEYtmypLuBdWddL2CrtErYqu1S1NNamPqaQiuHQjjFP6+sGxrBVTeyc8bCTZQ+iTNtr5sfTEGXWNKo5aFc4z30Zz5ludG7nU3HXPg8nsU7zpogby6GqtiKib6AhgR4FcAVUramRJ2+aVRxEmoSTSahd5icubgLYWoq6nEKAsJVbyCadiLmErWTXZLm6NvXzvnH/lOexpt0gbZCl0CcpdmC3WUjHsWGS5QAGr3fACl2afa2K7WPqz0ET5tZhq85/BrmU/aRRxhjKdeeEOQ9fKgpDJEJDm/P4b4afJQAvMcbOdmk9Q4V5INRa2b80iZHZQhInLpYAbD1dKwD6HAevA6EEyT2kko5HXKqtvHke01rO6ZYDwaT8O4WxRFPooOcxlo7jzGrrXIxB61q2Yqeh1+PwHvVY0ByA1Sjaiih33NPPJWP6eAYzgqRAVphr2Io/1uiFDJLxcD0rGWPfBfACgDyACQDWn8gIkks2azXpulYBPA9AnfH8kvYF34oJ80QsoqnXeg1befA8PIStvOQ85sfT+OL7bsTt1+5yfWw3ySRiejJYH4bVibBVKmabMB/8sFWjy5wTuFQ30ep51LqQ81A9D2sP20vjqi69oxnJCq+KG6C/lRdhxF+EOj/j7QB+EcBjRPS2bi9sGCiYPQ+e8wiQMAeAuUISvPF1q8mxcwoOs9/NeBEFTFuojxpxq6c3cu2eyb5XHaUNiVIetuqEZ8D7WMzd/bUhCFulE1FMZRNNvR5BBzhlLHIeFbGz1VZA67XBiJfG1YZIpvrY2gB6Hl4+sT+EOk3wIgAQ0QyAbwH4UjcXNgyYB0KtletIxiKB/8BzhtK9reh5AM3qtU7ICoMoM08J87oWBrDKVbglJgeNTDwKUWYQZaWznkda7WOpmGLtVVEeinNt50S6SaKkErD6KB6NIBGLNIWtupEwzyVjtglzblTcEuZAI1He6WmHncDLWRnhhkNjxePztjw5zXjw3dyaJk1iJ3bmhnFu+lZMmAPN6rVO1PUpgm4Jc+upa4CWmPTY5zEoGEfrNnIenfE8gNYu80GTvLBj50SmSaKkJsogCmZYzbLslbqMTKcT5sk4qmLrsDjAr+fRbDwGyfPw8snfR0TfJKJfIaJfAfDPAO7t7rKGg3wqDlnbzQGaom7AfAfQ8DyI1DrxrYhXz4PvuFw9D5M+kRFBE88bSuNRlw3VVp1JmAOtZdI1cbAkL+yY17rM+UaNX/CDbNSyycY0QcZYVwQHeXOreeQtoBZxAC45D9OsmkEc2uUlYf57AP4HgFcBuArA3Yyx32/nTYnoRW3k7FNEdEQ7NklEDxDRce3fCcPjP0hEJ4jox0T05nbeu5OYxRHXK8GkSTjceOSTMUT6WC7aTfIp634DM42QjXvCHLA2HmUPiclBg1/EKnW5wwlzzfOomDyPIch5AGrYSpAULGmTPttJ9GcTMV3zrCYqYMy/wKIbXN/KaqPkNIKWY/RAgeAFAt3E01nJGPsKY+x3GWO/A+DrRPSuDrz36xljVzPGDmv//wMADzLGDgB4UPs/iOgggNsBHAJwK4CPE9FAfIJ5U8f0akA5dg4fR7tVQ1aAFrbykDDXd90eVHUB67AV3/UNlecRb3hSDe+rc2Er82c/aKNN7Zgfb/R6AO2tO5tszPRoyJx0NhKft+gn4fgJW1UNYatYpHPijZ3AdiVEVNB2/H9LRD9FKr8J4BTUqqtOcxuAz2g/fwbAWw3HP8cYExhjpwGcAHBdF97fN/wE4V/I9UqwQVAc3mU+DAnMoKgDodxneghecx5xe+PRKIkc/Isjp7HjlDqcMG9V1lUUNWQz6H0eQGMo1Fmj8Qi47mbjwRPR3fE8ghoP86ZoEEuqnc7KfwBwOYBnAPwagPuhluvexhi7rc33ZQDuJ6IniOhO7dgcY2wBALR/Z7Xj8wDOGJ57VjvWAhHdSURHiOjI0tJSm0t0xzj0RVEY1it1TAZsEAS0LvNUbMuW6QKqYRRlpktv2OE155EylTQa4bHlYfI8LMNWHcx5GI0Hf/1BCoXYwYdC8V4P9WIa7O+aS0b1i3pQjSw3eFTCquKKv7fTaGTzpmgQS6qdPv19jLFXAgARfRLAMoDdjLHNDrzvaxlj54loFsADRPSCw2Otgv+W21bG2N0A7gaAw4cPextX1wbGE6RYE6EwYLwN4wEAuyczmM3bq20OO9wwFmui4xfW64UzYyppNFLysMMbNIxVNkIHw1ZW3f2NCp7BCYXYkUvGMJ6J670equcRbN1Zw8CtoBpZbuSS9jmPsiAhFXdWMk5ZJMwHzfNw+lbpvzVjTCai0x0yHGCMndf+vUhEX4Uahlokou2MsQUi2g6AlwefBWBs+90J4Hwn1tEuxoFQfP51EF0rI3/3y9cMRRghKMaL2JyDJDUvU3Uv1eVfslZPpuIhMTloGI1hI3TX/sU9GiHkk81d5oMo8+3E/Hi6kfMQ5abSdj9kDaW6+vzyDn8G41r4+qWVVkmYkuA+SdMq5zFonofTWXkVERW12yaAV/GfiagY9A2JKEtEef4zgJ8C8CyAr6Mx8vYOAF/Tfv46gNuJKElEe6Eq+j4e9P07iTFsxaVJxtvIeQDArslM4C/FMFBwqEIx4jVhbu7ENcJjy4PUWOVG2iJslehQktRcJj2IMt9OGBsFK3WpjZyHWqqrlunyc6SzG4zpXBK3HJjGpx95sakhEfA2YyYeVecF6fIkA6hBZntWMsaijLGCdsszxmKGnwttvOccgO8R0Y+gGoF/ZozdB+DPAbyJiI4DeJP2fzDGnoOq4vs8gPsAfIAxZq9H0UO4Ts6mIGGtrH4p2/U8tjoFm6ofMzWPDXLmTlwjXjSEBo2MVm1V0fo8krFI4KZTM2ZZ9toANp45MT+e0Xs9aqIS+GLK55jXRKVrYSsA+N03XYbVch2ffuTFpuNe9daMUzKHLefRFRhjp6D2i5iPr0CdUmj1nLsA3NXlpfkmEuETw0SsVtpT1B0VCh6Vdf16HtalukOY89DDcJImDNm5fMRYurm7f9jCVjsn0qjUZaxVRG36X7B16wOh6lIjbNWFC/Ord0/gDa+Yxd0PncK7b7xEP/dLHmfMGKdkVkUZc/nBqsIc/EzZgMNl2dfbVNQdFRoJc2fPw2upbsqQYDZTqktIxCIDVRvvRjxKiGrzGwRJ7sgsD455muAgNp45Mf//t3fmUXJV1R7+fl1dna5O0kkgYUqABEiYIgQEZNLHIA/l+YioCCxQcADFAYiiPuQNPFn4UFT0KepCQVwq8FAGJ0YRZZIhYIBAmCQBAiEEQiBJp+f9/jjndt/urq6u6qrqurfrfGvVqlvnTufcW/fsu/c+Z+9YXo9yhq7G85hvqpLPI2LREfN4c1MXl921vK9sY2d3UTlm4nnMkxhGJj1PVUKJEkKt3dhFU6ah4PC7QPGaR7FDdTMNYkJj/pwexWYRTBKSaPHmikprHoPzmEfXLGm29OGI8nq8sLatrLAq0byfDR3dVQ84OH/mFN47fysuu3t5X76fDe3FxVsbaLZKXhiZIDzKZHJzlvUdXaxr62RqS7Zi9unxSnM2Q1Nm5JwepcxxyDVl+kJWxyk2i2DSiJL/uEyKlTRbDXSYV2uOQ7WY5fN6/GONS5hWzgxzcP+Pvui8FRgOPRyLjpjHxs5uLr3rOaC40VYw1GwVhMc4I8pjvnZjZ3CWF0lrbuTIuqVElG3JZnh+bRu9vQOn9mwo0jGZNKI85s5hXrkOozWXpa2zhy4f6TVtZqvWnEvV/IzPtjlabWFizOexyY/aqmYsuXlbTuboPbfhintWsGZ9R9GRnuMZBNs6uxMn5IPwKJN+n0dX2cN06wWXEGpkh3lk/x+JhXvN5C9PreEL1yzpC+UO6TRbQX/+6o7u3orMLo/oi2/lTVdJDPNdCEnMnJbjmdVuutmoR1vFfB5tVcgimI8zD59LR3cPl9zxLJu6iktQFmXJ7O21YLYaj0z2mfHWtgXNo1gm57JFDdUt9q37y0fuzJeO3JkblrzMyZc/0GfXT1suj4iWyGzV1VtRc8rgECVpG20Fzu/x3GsbgXI0D7df5DAfi/bvMGMSH9x7Fr+873mguHhruabGAZNFk3afgvAoE6d5RD6PIDyKwSWEGlnzKNbeL4nPHroTFx+3J4ufX8uxP76Xl9dtKnpIZNKI8ph3FJGGtxQGB0ds7xx9QqVaMXNqrk+7HL3DPApa2DNmmgfAGYfPjdVhZCtFLusGgiRVQ0zPvyahTJ7QSEd3r/N5BOFRFK3NIyeE6ugufRLYMXvN4ucf249V69o55of38OpbHal1mLdVyWEO/cOkIydsmgZ5RNF1YfSdaTRUt62jm7YyAiyWyrabtfDhfV2kpWKH6rZ1BuExbolClLigiMHnUQxFOcxH2XEeuNN0fn36ATRIrE+p2SqXzfSZKyrqMG8earZKWoc0EtFcDxi9GaepsYGmTAMb+hzmY9cNnnHYXA7ccXP2nDV1xG1zTY1O8/Chd8I8j3HGpFjujeDzKI5iHObtXT00jfKte5etWrnuMwfyzrnTececzUd1jFoSjbZq7yredFcMQxzmnaMP8VErZlVAeEB/fCuXgnbsXjC2mtLMlafuz+zpE0fcNpfN0Nnd25d5MGmCPn2vZQkj0jwghCYpltZclo7uXtoLJCJyI41G/7BsPSXHLz7xjlHvX0uiIZrZxoYK+zwGah7tCUwwNBJRRkHojwM2GlxCKOfzSOo1yDW5ex9NLkxagM+geZTJAOERNI+iaI1FIx6Ojq4emlPkyK0kLU0Z2roizaNyHUZzNkNTY8OAobpJe5sdic0mNvXVublp9P+PST6b4KbOHloSeg0iX0yU7iFpWmJ9Pp0VJJ4ytpwUtPVEX06PAqarcjWPNJPLZujpNdo6K2u2goGzzMtJ5VororkeUF4Y9ZamTF9gxKS90UdE9yZK95C0exWER5nEh4IGzaM4+oIjFhiuW2l7f5qIj/6ppOYBTuuLO8yT5oQthsjvUU5n6hJC9fh5Hsm03kfte91rHkkzr9Xn01lBIrNVo8/UFhiZvuCIBcxWnRUeppom4m/ClcgiGGdKLts30s3liEjfNZ41LceExoaiog8Mx6QJbq5RZ09vYjWPqF5rNyRT8wi9XZlEqWintjSlarx8LYkct4VGXI1mnsd4Id6ZVVqAtuayvO47ozT6PAA+ftAc9p29WVnHmDihkdfWdwDJc0RHRP//KFdQ3WsekraVdIekZZIel3SmLz9P0kuSlvjPUbF9zpH0rKSnJB051nUuxIRG54QM/o7i6Q/LPrzmUc9mq7jQrLTfZ4jPI2EdUjHsMGMSCxfMLOsYE5syrPfJwpL6khLdm8hhnjRBXwvNoxv4opk97HOZPyTpNr/uYjP7VnxjSbsBxwO7A9sAf5I0LympaMHZkYO/o3gmF5HHvNIT5NJENTWPeEKoTQWGSo934pNHk6p5RPV6Y2MnmQaRzSTLsjHmr3ZmtsrMHvbL64FlQKHXiIXA1WbWYWbLgWeB/apf0+KZ1tLEjMkTal2N1NDSlCHToIIO847unorb+9PCQOFRaYe5y2PuIrWm02xVCdIgPHIxs1USw8jU9OmUNBvYC7jfF31O0qOSLpc0zZfNBF6M7baSwsJmzLn4uAV85chdal2N1CDJBUccRvPo6TW6eqxuNY9cNj7aqvKaR6+5iYJdPVa3wiM+SjKpo60irXBdW1ciNcSaCQ9Jk4BrgbPM7C3gR8COwAJgFfDtaNM8u1ueMiSdJmmxpMVr1qypQq3zM3/mFLbbvGXkDQN9tMZG/Qymo9unoK1TzSPuh6j0NYiGSa9e3z7kXPVEGjSPeL2SWMeaPJ2SsjjB8Sszuw7AzFabWY+Z9QI/od80tRLYNrb7LODlfMc1s0vNbB8z22fGjBnVa0CgbArFt+rPIlifwqOaZqsovtXqt9xIoyS+0Y4FE2PXOKnaV/zeJLGOtRhtJeAyYJmZfSdWvnVss2OApX75d8DxkiZImgPMBR4Yq/oGqkNrrnHYeR5R8pt67dhyVR6qC7D6Ta951Ok1ToPmkWlQX3DQJE7mrIWx7yDgI8Bjkpb4sq8CJ0hagDNJrQA+BWBmj0u6BngCN1Lrs0kaaRUYHZMnZHn1rQ151/WZrepU84h36JUWoNEw6VfeCmariLGMqlsqLU0usm4SJ3OO+VUzs7vJ78e4scA+FwAXVK1SgTHHaR75zVbtfWar+uzYspkGshn5QQOVd5gDrH6rvjWPAQ7zBF+DXDbDOroSWcfkibNAXeCGjI7gMK9TzQP6O7TKO8wHCo96NQ3GTVVJ1r6i/0ES61i/T2egprTmsmzq6qGrp3fIunr3eUC/KaXS2tfkCY1I/Q7zJHZKY0GkeTTG/ApJJLo/uTJyl1SLrrudlQAADmhJREFU5F61wLimUE6P9q76HqoL/Z1GpbWvhgbR2pzt93nUqYCOfB5JF579mkfynoXk1ShQF/Tl9Mgzy7zeh+pCzGxVhWvQmmvktQ0dA85Tb0R5zJM60iqiX/NIXj3r9+kM1JTI9p7PaR7MVv0hXBozlX9Ep+SymJ9mW042vrTTMiGT6JFWENM8Evgs1O8/J1BTIrNVPqd5cJi7N85qtT+e/TKJndJYMbGpMfHtjzSPJM7zqN+nM1BTCmke9T5UF1ynXi3hEQ3XhfrW7iZNaEy+2crfnyTmWU+2zhYYtxRKCBU0D+fQrVbHHgmPbEZkq2AWSwvbbpYbMFkwifT5PBIo5JJ95QLjlskFzVbB5/GJg+dw5O5bVuXYkeCu5+sL8P0T9iZhUc6HEGkeSbxXQXgEasKkJjffIK/D3Jutkjz+vtrMnzmF+TOnVOXYkeaRdHt/tUni2/xggsM8EBhEQ4OYPKEx71Dd9u4eshmRaUj4a2FKiQYrpKHzrHeSbLYKwiNQM1pz2byRdTu6emmuY2d5tWkNmkdqCPM8AoE8tDZneemNTfT0Dszt1dHdU9ezy6vNlODzSA0htlUgkIeD507ngRVref8l9/DYyjf7yju6e+t6mG61CZpHethru2nsv8NmbL/5xFpXZQhBeARqxjnv3YXvn7AXq95sZ+Eld/O13z/Bho5u2rt66nqYbrXpc5gn8G02MJA50ydy9WkHDAghnxSSV6NA3SCJf91zG941bwbfvPlJfnbvcm5auspNkAtvxVUjmmEeNI9AOYTXu0DNmZLLcsExb+M3nz6QKbksz722MWgeVaQ1594Zg88jUA6p0TwkvQf4HpABfmpmF9a4SoEK8/btp/H7zx/MVQ+8wNZTcrWuzrhlQmOG5mwDzWFQQqAMUiE8JGWAS4AjgJXAg5J+Z2ZP1LZmgUqTzTTw0QNm17oa455zj9qVPWZNrXU1AikmFcID2A941syeA5B0NbAQCMIjEBgFHwkCOlAmadFbZwIvxn6v9GUDkHSapMWSFq9Zs2bMKhcIBAL1RlqER744FTakwOxSM9vHzPaZMWPGGFQrEAgE6pO0CI+VwLax37OAl2tUl0AgEKh70iI8HgTmSpojqQk4HvhdjesUCAQCdUsqHOZm1i3pc8AtuKG6l5vZ4zWuViAQCNQtqRAeAGZ2I3BjresRCAQCgfSYrQKBQCCQIILwCAQCgUDJyGzIiNdxgaQ1wPMl7jYdeK0K1UkaoZ3ji3poZz20EZLRzu3NbMS5DuNWeIwGSYvNbJ9a16PahHaOL+qhnfXQRkhXO4PZKhAIBAIlE4RHIBAIBEomCI+BXFrrCowRoZ3ji3poZz20EVLUzuDzCAQCgUDJBM0jEAgEAiVT18JD0iJJj0taKukqSc2SLpL0pKRHJV0vKdUZc/K1MbbubEkmaXot61gJhmunpM9Lesqv+2at61kuw/xnF0i6T9ISn5Jgv1rXs1wknenb+Liks3zZZpJuk/SM/55W63qWwzBtTE3/U7fCQ9JM4AxgHzObj4uZdTxwGzDfzPYAngbOqV0ty6NAG5G0LS4z4wu1q2FlGK6dkg7FJQ3bw8x2B75Vw2qWTYH7+U3gv81sAfCf/ndqkTQfOBWXBG5P4H2S5gL/BtxuZnOB2/3vVFKgjanpf+pWeHgagZykRqAFeNnMbjWzbr/+Plz49zQzpI2+/GLgy+TJi5JS8rXzdOBCM+sAMLNXa1i/SpGvnQa0+vVTSH+6gl2B+8yszT+LfwWOwb0I/Nxv83Pg/TWqXyXI28Y09T91KzzM7CXcm+gLwCrgTTO7ddBmHwduGuu6VYrh2ijpaOAlM3ukphWsEAXu5TzgnZLul/RXSfvWsp7lUqCdZwEXSXrRr0/s22qRLAXeJWlzSS3AUbh8Plua2SoA/71FDetYLsO1MU6i+5+6FR7eXroQmANsA0yUdFJs/blAN/Cr2tSwfIZp40eBc3HmjXFBgXvZCEwD9ge+BFwjKV9WylRQoJ2nA4vMbFtgEXBZ7WpZPma2DPgGzoRzM/AI7lkcN4zUxjT0P3UrPIB3A8vNbI2ZdQHXAQcCSDoZeB9woqV7LHO+Nn4M1/k8ImkFTi1+WNJWtatm2Qx3L1cC15njAaAXFzsorQzXzpP9MsCvcXb0VGNml5nZ3mb2LmAt8AywWtLWAP471WbIYdqYmv6nnoXHC8D+klr82+jhwDJJ7wG+AhxtZm01rWH55GvjdWa2hZnNNrPZuA52bzN7pZYVLZO89xK4ATgMQNI8oInaB50rh+Ha+TLwT36bw/CdUJqRtIX/3g74AHAVLnvoyX6Tk4Hf1qZ2lSFfG9PU/6QmGVSlMbP7Jf0GeBinHv4dN7vzcWACcJu3cNxnZp+uWUXLoEAbxxUF2mnA5ZKWAp3AyUl+kxuJAu38O/A970RvB06rXS0rxrWSNge6gM+a2RuSLsSZHj+BE6TH1rSG5ZOvjT8gJf1PmGEeCAQCgZKpZ7NVIBAIBEZJEB6BQCAQKJkgPAKBQCBQMkF4BAKBQKBkgvAIBAJ1jaRjfXDCXkkFU8BKykj6u6Q/xMryBjP0s8fvkLTBj6KKtp/sg1hGn9ckfTe2/sOSnvB1ujJWfrOkdfFz+3JJukDS05KWSTpjhDY0SfqZpMckPSLpkKIvVowgPAKJwj9w0UP1iqSXYr/vrdI595L00zL2/5qkd5ew/Vk+JEX0+0ZVKXqqpKmSPlONYw86zwxJN1f7POUi6RBJVwwqXoqbZ3FnEYc4Eze3Js5wwQzbgf8Azo5vbGbrzWxB9AGex0/ylAuOeA5wkA/meVZs14uAj+Sp0ym40Ca7mNmuwNUjtOFUX4+34YKjfltSybIgCI9AojCz12MP1Y+Bi2MP2oFVOu1Xge+Pdmcz+08z+1MJu5yFC2oY7X+Uma0b7flHYCpQdeFhZmuAVZIOqva5Ko2ZLTOzp0baTtIs4F+AAS8awwUzNLONZnY3TogMd8y5uBhdd/miU4FLzOwNf4y+WfRmdjuwPs9hTge+Zma98X0kTZR0uaQHvba00G+/Gy4qcbTtOqCgxpWPIDwCqUHSBv99iFygw2u8qn6hpBMlPeBV8R39djMkXesfngfzdWySJuNCtj/if58n6ezY+qWSZvvPMkk/8eaEWyXl/DZXSPqQpClyuUN29uVXSTp10PnOwMWlukPSHb5shaTp/hxPSvqpP++vJL1b0j1yOSz289vn7RQk7e6vwRJvQpkLXAjs6MsukjRJ0u2SHvbXKtq32HOfJ+kXkv7sy+PtuwE4sewbnVy+i4tE3Vtgm1KDGZ4A/F9s8uo8YJ6/7vfJzTgfiR2B4+Ryudzk7zu4GHZ/NrN9gUNxwTMn4uJoLZTUKGkO8HaGBmUcGTMLn/BJ5Ac4Dzg79nuD/z4E97a0NW427ku4fBbgzArf9ctXAgf75e2AZXnOcShwbYFzLgVm+083sMCXXwOc5JevAD7kl48A/obLs3HzMO1aAUwf/Dt2jrfhXuweAi4HhAuIeIPf/uuxc0/FmUom4rSnE315E5Dzx1waO1cj0OqXpwPP+uMXe+7zcJ1Pzu//IrCNXzcTeKzW/5thrvn9wBLf3rV+eQlwZGybv+BypeTb/33AD2P/vz/k2eZc4Hr85OtY+SnAD4Y57hPA22O//+CPkcXFoFsJTI2tH3JuYAPwRb/8AeAuv7wY9/+N2voCLhR8Iy4lwxJciJcbgYWlXtO6DU8SSD0Pmg/PLekfQBRO/zGcQAAXSHA39QfSbZU02cziqv/WwJoiz7nczJb45YdwHe4AzOw2SccCl+CS/JTKcjN7DEDS47jkRybpsdj5/hk4OqYhNeOE49+Ac7155Toze0ZDgwgL+Lqkd+HeoGcCW5ZwboDfmtkmYJPXnvbDaR2v4rSqxGFm7wCntQKnmNkpJR7iINw1Pwp3vVsl/dLMTvLHjYIZHm6+5x4JSXsCjWb2UKx4JS4kSRewXNJTwFzgwQKHWglc65evB34WnQL4oOU3yS2K1eNeRhEPLZitAmmlI7bcG/vdS3/MtgbgAOv3mcwcJDgANuE6g4huBj4X8XXxc/aQJzacdzzu6o+7WZFtiVNMu6JOIWrXdubs9lcCR/tz3yLpsDzHPxGYgXvbXQCspr+NxZwbhiYQi343+3OPO8zsHDObZS6Y6PE4c1AkOEYbzPAEXMDHODfgX37k0kPPA54b4Th9AUBxATKf9su3AJ+Xf4OQtJf/bvHmKyQdAXSb2RMl1BsIwiMwvrkV+Fz0Q9KCPNssA3aK/V4B7O233xtnOiiFRf6YJ+CCMmbzbLMemFziceMM1ynsADxnZv+Li0C7R55zTQFeNbMuuTS924/i/AvlcqdvjjOjRG/F83BmklQh6RhJK4EDgD9KusWXbyPpxiIO8QPcNb7N+5Z+HDv2CuA7wCmSVkraLbbfhxkqPG4BXpf0BHAH8CUze90f6y5cyP3D/bGO9PtcCHzQa4j/A3zSl5+PM389Khcc9HxfvgUuDcMynNDLN4JrRILZKjCeOQO4RNKjuP/6ncCACKVm9qR3dEfmrGuBj0pagusUnx580OGQC/v+SWA/M1sv6U7g34H/GrTppcBNklaZ2aGDj1ME5+Oct496AbICZzI5DjhJUhfwCm4EzlrvfF2Kc+R+A/i9pMU4m/eTozj/A8Afcaay880sSnt7qC9PLGb2F5xvI152Pc7cM3jbl3EZ/goew8x2GrxNbN3sAut2yFNmwBf8Z/C6dw5znHW4UWCDyzcBn8pTvgLYebh6FUuIqhuoeyQtAtab2ajnetQLks7DDVz4Vp51d+Icr2+MecUCY04wWwUC8CMG2vsDJSJpBvCdIDjqh6B5BAKBQKBkguYRCAQCgZIJwiMQCAQCJROERyAQCARKJgiPQCAQCJRMEB6BQCAQKJkgPAKBQCBQMv8PRqiEF+R1EKwAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "# On affiche seulement les 10 premières mesures\n", + "plt.xlabel(\"Time (unix timestamp)\")\n", + "plt.ylabel(\"Round Trip Time (ms)\")\n", + "plt.plot(resDict['timestamps'][:50], resDict['size'][:50])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "On remarque que les deux courbes ont des têtes bien différentes et on n'bserve pas visuellement de correlation. Il semble donc complexe d'expliquer les variations de RTT seulement avec la taille des messages." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Pour pousser l'analyze, on représente le temps de transmission en fonction de la taille des messages." + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "plt.xlabel('Size (bytes)')\n", + "plt.ylabel('RTT (ms)')\n", + "plt.plot(resDict['size'], resDict['RTT'], ls=\"\", marker=\"*\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "On remarque visuellement que le comportement de la variabilité change au delà de ~1500 bytes. Une possibilité est que pour les requêtes de taille supérieurs, le paquet subisse une [fragmentation IP](https://en.wikipedia.org/wiki/IP_fragmentation), le [MTU](https://fr.wikipedia.org/wiki/Maximum_transmission_unit) sur les réseaux ethernets étant classiquement fixé à 1500 bytes et les paquets correspondants devant donc êtres fragmentés avant envoi et réassemblés après réception. Si le MTU est effectivement le soucis, nous devons théoriquement splitter à 1492 (1500 - la taille du header ICMP)." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Forts de cette information, on split notre jeu de données en deux parties: les données avec une taille de moins de 1492 et et celles avec une taille supérieure à 1492." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "def split_datas_at_value(data, value):\n", + " resDict_sub = {\n", + " 'timestamps': [],\n", + " 'size': [],\n", + " 'RTT': []\n", + " }\n", + " resDict_over = {\n", + " 'timestamps': [],\n", + " 'size': [],\n", + " 'RTT': []\n", + " }\n", + " for i in range(len(data['size'])):\n", + " if data['size'][i] <= value:\n", + " resDict_sub['size'].append(data['size'][i])\n", + " resDict_sub['timestamps'].append(data['timestamps'][i])\n", + " resDict_sub['RTT'].append(data['RTT'][i])\n", + " else:\n", + " resDict_over['size'].append(data['size'][i])\n", + " resDict_over['timestamps'].append(data['timestamps'][i])\n", + " resDict_over['RTT'].append(data['RTT'][i])\n", + " return resDict_sub, resDict_over\n", + "\n", + "resDict_sub_1500, resDict_over_1500 = split_datas_at_value(resDict, 1492)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "plt.xlabel('Size (bytes)')\n", + "plt.ylabel('RTT (ms)')\n", + "plt.plot(resDict_sub_1500['size'], resDict_sub_1500['RTT'], ls=\"\", marker=\"*\")\n", + "plt.plot(resDict_over_1500['size'], resDict_over_1500['RTT'], ls=\"\", marker=\"*\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Visuellement, le split paraît correct.\n", + "On s'intéresse donc maintenant à la dépendance du RTT par rapport à la taille sur les deux sections des données." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "On réalise une régression linéaire sur les deux parties." + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "reg1 = np.polyfit(resDict_sub_1500['size'], resDict_sub_1500['RTT'], 1)\n", + "reg2 = np.polyfit(resDict_over_1500['size'], resDict_over_1500['RTT'], 1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Numpy nous renvoit les coefficient de la régression linéaire sous forme d'un tableau [a, b]. On peut ensuite le transformer pour retrouver les paramétres L et C du modéle T(S) = L + S/C. La transformation est : L = b et C = 1/a." + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[4.75022492e-04 3.20041914e+00]\n", + "[2.46441831e-03 5.49930604e+00]\n" + ] + } + ], + "source": [ + "print(reg1)\n", + "print(reg2)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Sur la première partie des données, on trouve $L \\approx 3.2$ et $C \\approx 2105$." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Sur la seconde partie des données, on trouve $L \\approx 5.5$ et $C \\approx 407$." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "On peut maintenant afficher la régression avec les valeurs mesurées." + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "x1 = np.linspace(0,1493, 1492)\n", + "x2 = np.linspace(1493, 2000, 506)\n", + "\n", + "y1 = reg1[0]*x1 + reg1[1]*np.ones(x1.shape)\n", + "y2 = reg2[0]*x2 + reg2[1]*np.ones(x2.shape)\n", + "\n", + "plt.xlabel('Size (bytes)')\n", + "plt.ylabel('RTT (ms)')\n", + "plt.plot(resDict_sub_1500['size'], resDict_sub_1500['RTT'], ls=\"\", marker=\"*\", alpha=0.1, color='lightblue')\n", + "plt.plot(resDict_over_1500['size'], resDict_over_1500['RTT'], ls=\"\", marker=\"*\", alpha=0.1, color='lightblue')\n", + "plt.plot(x1, y1, color='red')\n", + "plt.plot(x2, y2, color='red')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "On peut également s'intéresser à la régression des temps minimaux pour chaque taille. Pour cela, on sélectionne le temps minimum pour chaque taille de paquet et on répéte les régressions ci-dessus." + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2.60965854e-04 1.02118720e+00]\n", + "[2.43235028e-04 1.74080472e+00]\n" + ] + } + ], + "source": [ + "# On créé les abscisses et le tableau des minimums\n", + "def create_min_array_with_split(resDict, split_value):\n", + " \n", + " x = [i for i in range(0,max(resDict['size']) + 1)]\n", + " min_tab = [np.inf]*len(x)\n", + "\n", + " for i in range(len(resDict['size'])):\n", + " if min_tab[resDict['size'][i]] > resDict['RTT'][i]:\n", + " min_tab[resDict['size'][i]] = resDict['RTT'][i]\n", + "\n", + " # On retire les données erronnées\n", + " filtered_x_sub_1500 = []\n", + " filtered_min_tab_sub_1500 = []\n", + " filtered_x_over_1500 = []\n", + " filtered_min_tab_over_1500 = []\n", + "\n", + " for i in range(len(x)):\n", + " if min_tab[i] != np.inf:\n", + " if x[i] <= split_value:\n", + " filtered_x_sub_1500.append(x[i])\n", + " filtered_min_tab_sub_1500.append(min_tab[i])\n", + " else:\n", + " filtered_x_over_1500.append(x[i])\n", + " filtered_min_tab_over_1500.append(min_tab[i])\n", + " return filtered_x_sub_1500, filtered_min_tab_sub_1500, filtered_x_over_1500, filtered_min_tab_over_1500\n", + "\n", + "x_sub_1500, min_tab_sub_1500, x_over_1500, min_tab_over_1500 = create_min_array_with_split(resDict, 1492)\n", + "\n", + "# On fait les régressions\n", + "reg1_min = np.polyfit(x_sub_1500, min_tab_sub_1500, 1)\n", + "reg2_min = np.polyfit(x_over_1500, min_tab_over_1500, 1)\n", + "print(reg1_min)\n", + "print(reg2_min)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Sur la première partie des données, on trouve $L \\approx 1.02$ et $C \\approx 3846$." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Sur la seconde partie des données, on trouve $L \\approx 1.74$ et $C \\approx 4115$." + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAYgAAAEKCAYAAAAIO8L1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMi4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvIxREBQAAIABJREFUeJzs3XuMZVte2Pfvb621H6ce/br3zjAMM7lgDVJAtnFyhRKhSMREBllRxnYEGhSRkUw0loKRLaEo4PyBZWkkIhmsRBZWxgE8iWzIRMaB2HmAEQ6yZBsuCMczjAlXPGYu93ruq7vrcc7Zez1++WPt6q6ue+rRXX2qqqt/H6nVVfu8Vp1z9vrttdZvrSWqijHGGHOUu+wCGGOMuZosQBhjjFnJAoQxxpiVLEAYY4xZyQKEMcaYlSxAGGOMWckChDHGmJUsQBhjjFnJAoQxxpiVwmUX4DxefPFFffnlly+7GMYY80z59V//9XdU9aXT7vdMB4iXX36ZV1999bKLYYwxzxQR+YOz3M+6mIwxxqxkAcIYY8xKFiCMMcasZAHCGGPMShYgjDHGrGQBwjwzVJVlytgmV8ZcDAsQ5pkRc2FImZjLZRfFmOfCMz0PwjwfFjGRVSkKwTuWuTCWghdh1thX2Jh1sRaEufL64GmcAxWcCKjQOEcf/GUXzZhrzQKEufJEBAGUQswFpSDTcWPM+lj73DwTFJgFT/COlAs2TG3M+lmAMM+E7lB3UmtdS8ZcCOtiMsYYs5IFCGOMMStZgDDGGLOSBQhjjDErWYAwxhizkgUIY4wxK1mAMMYYs5IFCGOMMStZgDDGGLOSBQhjjDErWYAwxhiz0toChIh8RER+WUS+KCJfEJG/NB3/qyLyhyLym9O/P33oMT8kIq+JyG+LyLevq2zGGGNOt87F+hLwA6r6GyKyDfy6iPzidNvfUNW/fvjOIvINwCeAbwS+GvjHIvL1qprXWEZjjDHHWFsLQlXfVNXfmH7eBb4IfPiEh3wc+BlVHVT194DXgG9eV/mMMcac7ELGIETkZeBPAP9iOvQXReT/FZGfFJHb07EPA18+9LDXOTmgGGOMWaO1BwgR2QL+PvCXVXUH+FvAHwG+CXgT+NGDu654+Pv2hRGRT4nIqyLy6ttvv72mUhtjjFlrgBCRhhoc/q6q/iyAqn5FVbOqFuBv87Ab6XXgI4ce/jXAG0efU1U/o6qvqOorL7300jqLb4wxz7V1ZjEJ8BPAF1X1xw4d/9Chu/1Z4PPTzz8PfEJEOhH5WuBjwK+uq3zGGGNOts4spm8Bvgf4VyLym9OxvwJ8t4h8E7X76PeBvwCgql8Qkc8Bv0XNgPo+y2AyxpjLs7YAoar/lNXjCv/HCY/5NPDpdZXJGGPM2dlMamOMMStZgDDGGLOSBQhjjDErWYAwxhizkgUIY4wxK1mAMMYYs5IFCGOMMStZgDDGGLOSBQhjjDErWYAwxhizkgUIY4wxK1mAMMYYs5IFCGOMMStZgDDGGLOSBQhjjDErWYAwxhizkgUIY4wxK1mAMMYYs5IFCGOMMStZgDDGGLOSBQhjjDErWYAwxhizkgUIY4wxK1mAMMYYs5IFiOeAqrJMGVW97KIYY54hFiCeAzEXhpSJuVx2UYwxz5Bw2QUw67OIiaxKUQjescyFsRS8CLPGPnpjzMnW1oIQkY+IyC+LyBdF5Asi8pem43dE5BdF5Hem/28feswPichrIvLbIvLt6yrb86IPnsY5UMGJgAqNc/TBX3bRjDHPgHV2MSXgB1T13wb+PeD7ROQbgB8EfklVPwb80vQ7022fAL4R+A7gx0XEarJzEBEEUAoxF5SCTMeNMeY0awsQqvqmqv7G9PMu8EXgw8DHgc9Od/ss8Gemnz8O/IyqDqr6e8BrwDevq3zPCwVmwbPVBmbBY8PUxpizupCOaBF5GfgTwL8APqiqb0INIiLygeluHwb++aGHvT4dM+fQHepOaq1ryRjzGNaexSQiW8DfB/6yqu6cdNcVx953wSsinxKRV0Xk1bfffvtpFdMYY8wRaw0QItJQg8PfVdWfnQ5/RUQ+NN3+IeCt6fjrwEcOPfxrgDeOPqeqfkZVX1HVV1566aX1Fd4YY55z68xiEuAngC+q6o8duunngU9OP38S+LlDxz8hIp2IfC3wMeBX11U+Y4wxJ1vnGMS3AN8D/CsR+c3p2F8BfgT4nIh8L/Al4DsBVPULIvI54LeoGVDfp6p5jeUzxhhzgrUFCFX9p6weVwD4tmMe82ng0+sqkzHGmLOzpTaMMcasZAHCGGOOsAUuKwsQxhhzhC1wWdmKbcYYM7EFLh9lLQhjjJnYApePsgBhjDETW+DyUc9fm8kYY05wsMBl8I6Uy3O9wKUFCGOMOcQWuHzIupiMMcasZAHCGGPMShYgjDHGrGQBwhhjzEoWIIwxxqxkAcIYY8xKFiCMMcasZAHCGGPMShYgjDHGrGQBwhhjzEoWIIwxxqx06lpMIvI1wCeA/wD4amABfB74R8D/qarP944axhhzTZ0YIETkp4APA/8Q+G+Bt4Ae+HrgO4D/RkR+UFV/Zd0FNcYYc7FOa0H8qKp+fsXxzwM/KyIt8NGnXyxjjDGX7cQxiFXBQURui8gfm24fVfW1dRXOGGPM5TnTILWI/BMRuSEid4B/CfyUiPzYeotmjDHmMp01i+mmqu4Afw74KVX9d4H/aH3FMsYYc9nOGiCCiHwI+C7qgLUxxphr7qwB4q8B/zfwmqr+moh8HfA76yuWMVefqrJMGdXneddic52dKUCo6v+qqn9MVf/L6fffVdX/9KTHiMhPishbIvL5Q8f+qoj8oYj85vTvTx+67YdE5DUR+W0R+fYn/YOMuSgxF4aUidmmApnr6dSJcgAi8rXA9wMvH36Mqv4nJzzs7wB/E/ifjhz/G6r61488/zdQJ+N9I3Uy3j8Wka9X1XyW8hlzkRYxkVUpCsE7lrkwloIXYdac6ZQy5plw1m/z/wb8BPC/A2e6XFLVXxGRl8/4/B8HfkZVB+D3ROQ14JuBf3bGxxtzYfrgGXNhSIoTISs0Xmi9rVxjrpezBoilqv73T+k1/6KI/OfAq8APqOpd6mztf37oPq9Px4y5ckQEAZRCzIKiCB4RueyiGfNUnfWS578TkR8WkX9fRP6dg39P8Hp/C/gjwDcBbwI/Oh1fdWatHPkTkU+JyKsi8urbb7/9BEUw5vwUmAXPVhuYBb/6y2rMM+6sLYg/CnwP8Cd52MWk0+9npqpfOfhZRP42D1NmXwc+cuiuXwO8ccxzfAb4DMArr7xi56W5FF3wD35uD/1szHVy1gDxZ4GvU9XxPC8mIh9S1TcPPedBhtPPA39vmp391cDHgF89z2sZY4w5n7MGiH8J3KKu5nomIvLTwLcCL4rI68APA98qIt9EbX38PvAXAFT1CyLyOeC3gAR8n2UwGWPM5TprgPgg8K9F5NeA4eDgSWmuqvrdKw7/xAn3/zTw6TOWxxhjzJqdNUD88FpLYYwx5so5bcMg0er/Oe0+T79oxhhjLtNpaa6/LCLfLyKPbAokIq2I/EkR+SzwyfUVzxhjzGU5rYvpO4A/D/z0tNzGPeqWox74BeqyGb+53iIaY8zzQ1UZcqHz7tInX54YIFR1Cfw48OMi0gAvAgtVvXcRhTPGmOfNwSKQjsufY3PmlcVUNVJnPxtjjHnKruIikLa6mDHGXAF98DTOgQpOBFRonKO/xFaEBQhjjLkCHl0EsqAUZDp+WU4MECLyCxdVEGOMed5dtUUgT+vYeulCSmGMMebKLQJ5WoC4KSJ/7rgbVfVnn3J5jDHGXBGnBgjgP+b4/RosQBhjzDV1WoD4kqr++QspiTHGmCvFspiMMcasdFqAeOdCSmGMMebKOS1AvHAhpTDGGHPlnDYGccuymIwx5vlkWUzGGGNWOi1A/IFlMRljzPPptDGIy12M3BhjzKU5LUB8z6qDIuJF5D9bQ3mMMcZcEacFiC+JyA+JyN8UkT8l1fcDvwt81wWUzxhjzCU5bQzifwbuAv8M+C+A/wpogY/bVqPGGHO9nRYgvk5V/yiAiPyP1IlzH1XV3bWXzBhjzKU6rYspHvygqhn4PQsOxhjzfDitBfHHRWRn+lmA2fS7AKqqN9ZaOmOMMZfmxAChqpe/Y4UxxpxCVRlyofPuUrfovG7WtpqriPykiLwlIp8/dOyOiPyiiPzO9P/tQ7f9kIi8JiK/LSLfvq5yGWOun5gLQ8rEXC67KNfKOpf7/jvAdxw59oPAL6nqx4Bfmn5HRL4B+ATwjdNjflxErPVijDnRIib2xsgyF4J3LHNhb4wsYrrsol0LawsQqvorwHtHDn8c+Oz082eBP3Po+M+o6qCqvwe8BnzzuspmjLke+uBpnAMVnAio0DhHfwX2c74OLnrDoA+q6psA0/8fmI5/GPjyofu9Ph0zxphjiUjNmKEQc0EpyHTcnN9V2VHuuNVi339HkU+JyKsi8urbb7+95mKZZ42qskwZ1ZVfH3MNKTALnq02MAt+dcVxDVzGd/uiA8RXRORDANP/b03HXwc+cuh+XwO8seoJVPUzqvqKqr7y0ksvrbWw5tlzHQcrLeidrAueNnicCG3wdNe0e+kyvtsXHSB+Hvjk9PMngZ87dPwTItKJyNcCHwN+9YLL9tjsxL06rvNg5XUMeubsLvO7fdpEuScmIj8NfCvwooi8Dvww8CPA50Tke4EvAd8JoKpfEJHPAb8FJOD7ppnbV9rBieuA9ppetTwr+uAZc2FIihMhKzReaP1V6UV9fIuYyKoU5UHFMJaCF2HWrO3UNVfMZX631/YtU9XvPuambzvm/p8GPr2u8jxNduJePY8OVgqKIvhnerDyOga9J3XWiXDXccLcZX63rTZ7AnbiXozHPdkPBiuDd6RcnvnByusY9J7UWVvrT7NVf5WCzWV9ty1APAE7cS/G457shwcnr0uX33ULemd1UDmXUihwamv9LK36x63wV33/LitodMHX104ZhQub52EB4gk9ryfuRVhnF95Vuio8i+sY9I46SPYQ6t8rIg8q5947vMjK1vrhz/Jwq16AMRa2uprRVEphd0x0ThiKIqoUePB6AEMutE4Yc2E+RgrU152C1M6Y2AiO4BzLmIhJ2GwD43Tu9+HhBeKq79hx37uD460TxqIPbj96f1Vld4wMsSCi+Clja90sQDyh5+HEvSzr7MKzxIKrRVXZXY7sDpE2BIZUc1PeWwxst00NHjEzpkQXPLEUXtzowTt2lyOLmOlbz42uBVWWKRGHzJgLrW9AhPvzBW/NI9uN48asYydmdoZIFzwf2OoBWMbMfsksckEK4GA5ZkYKDULrPWOExnu8F/ZjYZ4SsSi9dzig1D+IsRRUBVFFRei8Y0yZ3SEiXUPXhAcBQKb/k0AqMObMVhPYXY7cHxM320ATPHfnA+8tIze6QNc0vLeIBBfZbMNaxz0tQJgrZx1deJZYcPXMx8hb+wOLGMkq9GNkUHClcC9lUobtPrCImWXOJIWiwnuLkT5ndoaMlsI8ZRZjZkyRRQZBCc7x+/f28c4xjJHkHPeWS8LeSONga9ahKfK79xI5KwHYjZmitUXgRbg/RBzgHNxpG3bGGlS6EHBecAjBObJXFqlwfznUMreONgTG5JmnTOsdjRN2hkjOmWUqxJLpm8B8iHhf53AgMKbaithZDowp8ZY4bvUtyxjZVyilsJ0Ly1z4t25urL2ryc4McyU97S48Syy4WhYxcW8RmQ8j94cRFceXF5kEbHjoW8cbu/uk+zBk6D30jacPjnfmhaJK6z3bfcP+kPjyGJGi9F0gFwg4dtMIGeYFApkMCInOA6JQaosyi7LlPYuYESekrCxS7YJqHCwT7I+RDGzETN8WRMALaHEEp+zHQkrQNLA3QsGx4YUbXUPJwpfnAzmD98r+oPSN8OIM3lskxjIQRGiCR0rmy4MiWvP9E5n3lguyggf2BO66kRAcL2y0bPbdWj8nCxDmSnraXXjPWmLBszZW8jgWMZFKIWvm3jDwlSUImYNpgPczMBYW00yohlpRz2Mmp0wRmHmHR7m3GLk/TwjgAzAmIvXzzgmWCiMwTM8tQMyQ9mswaqldQ/vU3xvq+MRiur8rcHh64o7CYlAytfJ05Af3BegiNAJZC4PAfMwMCeZAplbyGXCD8s6wJE1l6tAHZT86AWw8fHWkEDLc0sJX9kcWCVovfPWNjcf/IM7AAoR5bjxLiQXXeaykD54v3Z3zxu6cu8v6uRz9LO7nusyDo+57/HZ8eNs2kFNdmO/+oQf6VIOJAhnFUYPDYUq9Mt+bfl8eus3xMJAcODp3XQ8956qZvAMw6MM77x6Z7HzwmHLouXUqh3DMAnRHJCAJDKlQmsQHb2yd4VFPxgKEeW48C4kFz8NYycHyNPtLfV+FfNhBJXq0E3CfmvZ6VJ7+PRgwfkyXvZDJ41ywzDOk+cimK3i/vu+ydcCatbL1qh7Pdd/fYBETe0NknpS+Pdtjjlbcp1Xkl13RXwQBVKEN671osABxDV2lStkWmns8131/gz54trsGL7B/tP/nKRAOxgautwJstTAg/H9v7/DGznwtr3M92qzmEVeh//p56CpZl2dprORxiQj3lyPzmFZuAnPU43YX9dQxi+t+OeKo2V0pKzdnwgc315PNZGfqNXKVKmVLK31yz8JYyXnc6BoWfcMyJsZB3zeQDA8HbM9a0W8CfQNjfJgptDjlMYc11MACq4OSTK/xuM97Gn/o/5FaIcuhshxHARzEkhAJaxuHsABxjVylSvlZSys1F0iEWJRRlYZaGR8k+xx8U2fUCWqpPBx4TtSflVpZF2rW0Ay42XtUCzT6IL31fS/LowPB7fS7TP/66TkPV86OWnk7QBxsBGjSNOuZR7ORTvyTD712Oz1nnJ73ICh0Am2oUzSWqQ7GH9d6FKAX2HKebo2D1BYgrpGrVilf564S8+T64LnVNyzGzL0yoqlWmDPqXIZYZ7Sx2TXEFNmPNTjMXJ2c5hxIgRuzht7D7pgZUubOZscQCzs5sumBUivyg+DT8DDAhHozC2qw8QJeYZeHlXlDrcBbajDQUv8FX+dlkB5W8unQ/Y7anJ7v4L4Hz9/yMOhtBXACi1hvL0DHwWS51cQ5tmcNL26tZw4EWIC4dq5SpXzdu0rMk1mmzFhqhdk2DUqcKklP2zhyVgSleIeoR1wmKMxaz5iVO7OOvmlIpTDmQmgEH2owmOeC87DdBnKpy1uUAq2rgaXV2hW1OwBaK++XNhv2U2aIhW0PfQgMMREzZAdZIZSHV/eF+nzJw8G2Zoka5Frq39XwsNvKAd7BRgPjUANCF+BOFxApvDcUggMngS1JRIVYatAa0sMWzLIWGc/U6lFlZ0i0+8u6H/caupEtQFwzVimbq64PHrRmaG22gY1G2F2OIBDE0XceSiFqZrNvcNKymJa53mwds66hFCUVpQ2CTzXls/EQUDb6hjY0LMbEjd6xGTwO4d4w1iUrnGerB8mZ7B2F2tq+0Xmcd5RcmLUNTYmkLMxax+4y07la4W86GIvgUbxAnAKNBzYbIUYFV4PCVnAULQwDpARtU1sKZZrh3UrgRle4PyQ0J7pW2PSOvSHTt47Gg1BwIuwMSuNq8CgKgmOjbaaU1/VcClqAMMZcmINEiq4J3Jn1zFOG4tjoOl6YNWx3DbtDZLNrmXnPv9ldcG9ItN6RSqnrKGm9eg4CKSrbXcuQCw5l1jUEqYvj3bo5YzFG+iYwaxvavQV7MUFxiBaccxQVUslsNw2z4BDvWIwZUaFpAo2DRVZSC6VkFKELniBCQJjHxCIWNtrAIiX6INxoPYusxFLweGIqbHWC9477Q0YVOg8pZZZaaLyjcx7fCmVa0fXFrY4XN3remy9ZpsRGaFikJd7VAKOu/rs/JLwIL2xYFpMx5hl3kEixxNE3DsHReWHMeVpK23Nz5pgFP62qWrt4hpRom4ZFKZRY2AiOplHeWwzoWNhuG7rGk3NhzBkRpYlSA03jUXW8sNnTDondYSRnYYiZrhE6X+dl7MSMT0obapnuLwZ671nGRCrKMtXF9u6OicY3CHUPi7713Jg1bGRPK0rG04TMbnQ4zaiA844x16CGQHEOHHTe4YpDmtoKujXz9L4nhLqKayNCLHVNruCEIWcWqQYVJ46NIGx36xtntABhnqpnbZG5Z628l+lpvFcHiRSNF8DTdrDZePYGJeZa8Ret+0GIOPZTIaDMM2RNDDmzHQr3EWbTmAXiGUthd5650TXkWPuc5ikTgTEVvHfElFnETFalFcEFj1NonXCz7/AsyQp3Zh37MdGEwFZbV5DdTRnvld4J+zHSS+Z215FFCCL0XUPvhZ3lyFiUMcHtLgCBLmTGVHOdgncELzjn0VxoRZBQWzzzlGmcY6tv2WoDCmz3tXvNAx+9vc0yJf7N7pKiyqwN3GgDfdM8nQ94BQsQ5qm6CpP0HsdZynueivE6BaCn9dkeJFJsdw0pF4acSeoYNbGIieA9jUDUTAiOUpRGC10QHJ7eO3IuRC1shICo0HaONtXZ58XVDX4QxSmIFlpxtI1jkSKdc2z2DXeXI6gyawKKsD3r2F2MvLscyEDrHPu5TBv5FATPsiSKCF0I9H3Dja5ho23YXY4khbYJlJhY4nAiLGJtGUWUJsM4ZPYGuNErL212NYlEhJuzlvuLRB8cs8aTDm216p2wGBPLnClFeXGzRXEIheDcI+OOT5sFiDO6Tif6OlylSXpn8TjlPU/F+KwFzFWe9md7UKEtYuLd/YG9lBAVuuB4c2+om+l4x1Zb93aY50JWRYvQNp6hKCE83JbUiVAiOATVwjImBk0gwqwNeGA/12Ayaxp2hkwZU81AmjbhGUlsB0+z0SAI81gHhvdiYtY4XMkscgZ1bLWgCGMqvJ0Gbk71wv4QWaaCIogIw9RiuRWEznk2Gseer+lbs9Zza9axTIV5KuyPhY0mEEvi7iKyERyzNjAkJVPYjwqa2e48RYW+cRR1iNT3cV3n2NU7c6+o63Cir9NFT9I7b8A+S3nPUzFedsBctc/zk1rXZ9t5R+dhbyzMozIWoWTHVudxTvjK3kCmcLP1pKwoTF0vDkdhOWaaRljEQlRlFhypQBsci2WcjgnOh7pPdVECStFC6wLBK1lc3Vu6KCE47vQz9oaRZamDv73Wx37oxib3x0RMhdbXwWynEBzkooTGEQTmKYFCKkocBooLpKzcHyL3FLx3zDzME7x2b44ryge2O5IWdsfMMmW+asuDwJu7c4aYCSEAShDhnf2aEvzCRsssNGufCGsB4hRnOdGtdXHxk/TOG7DPUt7zVIyXPas95sL+WLPw3Tk3uF/XFrB3lwM7y8yy1PGHOAWBzaZls23xPbS+9snvDYmidTvORS4E8RQRAgVaT065ToorSuc90RcEoSBkoHe171+nndlyUZIqWQvvzgutD6AJ5xz7Y2Lma7ZSI8ruEBlKYIiZrIXdsc61zqVws2/YaBqyCnvLkTFmlmMkiiOOcGfTkYHbfWA+jiyygnpE4LZ33NluURHGmPAONttAKjDkRCmFF2ct2Tn2liN7sW6P6qUwJk9RUHV0YX27ylmAOMVZTnRrXVQXMUnvaV6Zn1be81SMlzWrfRET+2MiFUBqFfneYsQ7Oddkqqf52R7sKBfE0ZC5G0d6F+qVuavLcETNBO8oquSi05yCwJgLjUitpBV2U2az8XV/hJxZpki/Ua/It5rwYAxjHiPbvqVvPK2vQWBeCmOu7ZHNbQcijCnTBTdlLSlIHVBejJk+OGKC5JVOhEUSYoalq/vC7Y+57lPhHC1CdHVnuZQdt/vAMmayZnJOiAjzomxpS+8dG02AAotc2BsTbfDc6luGrOzOl+yNiaSCQwmu1kmz4Nc6/gAWIE510ol+2d0I53HeVs+qx1/EJL2neWV+lvKep2K8jFntffAIsDfW9EqK4HzNFDpPZfI0P9v6GQo7y8huihQNNEHomgaPouLYDI7dIeGdo/MP014324YxFzrvmefI/ZiJWelC7brZajpSBofDO2HmhFnnaX39HHaH+r7spwziCKKMWXl3PuBE8KLcnvXEoixTJJWCqDLmQlaI05hHdHVOc06ZRSw4Rpzz3Ggcu1Ir1mXJ07iIMsTEPGVaga2+YxgjizGRuoxrPFvBcXcRudEGijqG6fV2Y4RSWyu5KAlBxHF/SLTO4ZyjX2Ndc7VrsSviuBP9srsRzuO8rZ7jHr/u7raLvjI/T8V4GbPaRaaNhiiMGQSlVY8TuTLdnyLCveXA3cXI/hiZhYahQBozrYONzvHeIqEIm8ExFsWJ4qe/YRkTi1xYjDVNNJVayQuZW7OODmiCMOQ6mFxU8N7jBGahBqZWlOAD+1q7k2be0zo3fZ+EPtSK3YvSSF0fdiyFWRvovOPdYcST8cHhxXN/PuKCMg4wquBKZjME+sYRnKMRYbtv2Yu1lXFrY8Z2F9hs66Bz0sxm17LVeu7OB/ZjYm9MdYvUUmiDp8QyrcukUAqocrNbbxV+KQFCRH6fui5WBpKqviIid4D/BXgZ+H3gu1T17mWU76jjTvSrtjjeWZy31XPa488beM4SYNZ1Zf44we0qjzsp0HvPVlsvVGK5WgslLmLCITWdM3fgYHcYaV1dRsM5x5AyIjCkzFiUreDYaAOqShc8XoRcCpTMmOvYQR88sShJM404glNSKSQVYs7sZyXnzG4sbHjHIidygcY5mlC7npwTFjGyPy/EkqclPOr4RTeNaSy1dvM03pFUWY6JZYYNXy8Utz2o87RNoBHPh270UJTdmAkxMygMKaLUMZA2+LpqbUl13EjrwoF1pVllPxdmztP6AlkIDrwLjKrcHyOzoNcyi+k/VNV3Dv3+g8AvqeqPiMgPTr//15dTtLO7SovjncV5Wz3HPT6Xwt4Yz93ddpYA8zSvzA9X9I8T3K7yuFN3pG+6v8SyrKKqOOeIqZBRcil0ri4xscieNhdGLWx5D0VZ5simb+pyGiL0TWCUDENCnYMSuNUE+s5zb38gq9A2jr6BONbV9N7bX7LIQucUcXB/TGQVeg83Z820GpMiKsSUaYOjl8DemJhNYyN940gKitK4zN5yRBAGzeCm1NfVw49VAAAgAElEQVQyLd3dBG5ttFBgb0j1OZs69+OWq93TQ4ZxTAiCqrDdBfaGyP6YGRVizjTeIUDSgneOVpXN0NA0jlwgl9rCWFeq61XqYvo48K3Tz58F/gnPQIC4aovjnXZle95Wz3GPnzXhXIHnssZzYi7cX440zk2zXE9+7XWX8yq3TJ6WWRMoJdZur2k3hbYNdKXggmN/SNwbBnzf4r2jAHeHRFdgGesYwDwmNhrPrGm5t4xTJQnbfSAgjDiKZnZTYkRpRMia2RkKm12DqmPWOjyC4mqKrE7LgUtd3K/u/9CSNSMIy5Ip1HTWja5hkQpOlU4DGzPPmBMe6IPjZtey3QSWqS5FPmsCs+C4N6bpu+YpZGKC3XkkOCVmzzJnxqxoKXXAPmU6J9zoG+7MOsacGAsgrqbwSp0UuK5u7csKEAr8gogo8D+o6meAD6rqmwCq+qaIfOCSyvZMO9PMYM7X6ln1+PMGnosezzlc0W+29USex0Tna5/yca/9tMt5NCBc5ZbJ0yIiqMD2rMF76uJ4zuF9IGmhb4QXff+gqx0goRAT4j03u2kuhAi5KCUr2+3UpePg3fmAiOK9o3XC/hjZDi2thyEqO8uRpIU2tHRdoKDEkgkibHUtWjL7MbM3ZARHI3BnWkH27f0FWYWv2p5xe9awu4h1HXFVnDpmvrDZBJwU3txbEJynbxwq8PZ8yV4s3GwD95eReUw4lBe2OvbHwruLzGKMtesNRxojinC7b1imQtJC8IG+EWIBLUpW1rpn+WUFiG9R1TemIPCLIvKvz/pAEfkU8CmAj370o+sq3zPjoIIph6bmn3Zle95Wz8HjVbVubDJVjucJPGcNME/rCvtwRe+9IFrfKyeCUo4NbucNhMcFhCGmerX8DGbEPa5FTMRcJ5w1fUvKAwmtS1YriHhe2mq4vxzZGSIxF4L3bDWBRcqMOTNrahbTvWWk8XU12D4EhpzZaFtSSSCO7a6t+03IwXODEyGon8ZBmtpPQx20zqq166cUvDh6J+yVmnoqItyeddyPifvDSCMOdcJN5+lbx735wJiVEjMveUczRbgxFtQ3jKmwHCNOa4aSE2U3Qd4baZynDZCbQCxK0Ugu4FVJWjcPGmPmpa2W/ZjrYoXBr71b+1K+ear6xvT/WyLyD4BvBr4iIh+aWg8fAt465rGfAT4D8Morr6y9y/+0Cung9tYJY9EL7xo4qGB67/Aia7sCX/U+HL3aPS5wnPk1OD3APK0r7KMVfaHmlW+0zYPXPu6zP08gfBAQUk3hPAgIKRfGlMkKW11z4RlxF9m11YeaVTUkRaXgnLDtPDf7wP0hMZTCIhYWoyIKM+fI06J6eQrqpShDqc/Ve8db+wOtT/TBs9kF7s0T++NIKUrXeO4vY93eVAsbocV78OK4v1g+6PKRnNkdFSew2TQUrXM1Zrmmmao6omRySmQRIvU8yy7zxk5dQC8qtGT+YExkUbTUPbhLjgyq9MGxN4w4V1tBnS+kUj/3XGrLKpb8YHyh+DoWsVuUZYFB5/ShefAerruVeeEBQkQ2Aaequ9PPfwr4a8DPA58EfmT6/+cuumyrnFYhHdyepmWJL6pr4Ghf+FCUmBLzVLgxfaxPM6Pq8PuQVdeSyXRSy+bo37tImd0xPqjUn8Thir73bsoa4UFwO+7veJIW2NHyp1wYUiGX2m8u1M1hXKnv9UVnxB39Wx83YDzO/Q9SVeepUFTxThiK8s4iMqTEzb72+yMFEG5u1HGG+VjwTmlCrZjHkvBFyFnZbOoS3Z2fKk4fCC5Pqa5KDnXXNkmOrb7Oil7EyEsbLd57kjKlAtd02s0usD8qTgqzJtB6uL9M7A51We6Ua2V/q/fc2x8ZFFocuWR2p1ndM1+XK99ZjowRVGC20eB9YMx157jNpmWzA6gL+2VkWo5DUGAomVwEJwpSyLkGqbtLZbMNa29hXkYL4oPAP5i+RAH4e6r6f4nIrwGfE5HvBb4EfOcllO2BVYORQ86kotzqW5apLhs8r8nmpKIEB0MqbLTr7xpY1RcuKL2Xusa8yBM1PY+e6KveB6HObnXi15LJdJa/N+WpI+gcFeiqin5MuV5tegjOP7W/42j5BUfnCkn0QUBwChvN6pbJuq7wjxt0z7nUWcScLQiuCqYnlbkLnjHX93pnTCRVNqdlNPaGOZtdwIsi4hlSfY6txiNO8MDOkPAoQ9G6A1yoG/4MOYHUFNRFzMyCp6DQKbuLcZqFrOyOGabVUBsf6oVP0bpmUy60qdB5YattGXPm3iIyT4lIYcjCMkXuD5Gd0VGy0jnqRVqhDiIzDXgrdc0mXwPEbsqMsdAH+MBGxzIrO2PmRhu4vdmDKntDnf+QycToCQJt4/B+2jSJmubbOLf2FuaFBwhV/V3gj684/i7wbRddnuMcVwEL9WQ4uL3zgChpOhHgYj64w10ke0MhqdI6YWNaeOxgYtHjOnqir3of2uDAKcv8dDOZzvL3LlJkHoWshc1pZc84xnMHoUcHrT2LmBlTpg1COGHQ+nHLf3jsQgU2QsA7YT4mgncPKtejlfK6Bq+Pfr7zlPAC3p2e0QUwHyOLlAkr7l+7PFeXWQEnDh88LmVSLLwbRxChd57WeZY5Ib7uHrfdBTovBB+4uxj4ymJAcp241gbh7pDYT5mNJvDVbWB/jCxT4oWZJ/hAENhdJoaUiKV+jpsh8PYyMqYFrXN8+OYW+ymzSJk7s4Y+1OSF1jte2ux4c7cwpnoh2DlHCAIO5iWhpe4fLQfjBcCYoXFAqUuH163gYLPz9OLZ6lpuekdOuc7QBl7Y6hnTHllh5hqkRIoWYnLsL+tYzQtFcd4jomw0zbVrQTwTjquA+ya87yqrrt1eyFnwfr1ZBYcddJFsNp57y5FSeOKK+aT0TT8N3MYsFC2MSWim5Q+eZibTWf7eW12DAvsx1+dVeSpB6OigtZMCrg5UnjRo/bjlP/qetcEzpkyBaQb0o55WWu1xV/NHP7PGObyri8Cd5bvkpc5UTrnuD50VUsmoq330x5W58453U0Kn5ICcM0NUQgP7ORJi3X7zRgdN8AxjYq5K39bg9VV9y90xMhaHkGh9w402sNF63pmPzMeMc/CHOwta73EO+q5hq3iWuYAKfed5dz/SiEJR7i9GCjBrG+4NGTdk9sZIH/y0HWpL0YG7Qx30biSQUqQPAYfQ+kKKdZMil2DWCmXaFnVZCttNoPeCFwihzqDunKdvPdpk3ltGdpcDzgVudQ7vAm3w7A2RzdazM2TuDXUv7841iE77e6+RBYgTHJzQW21gHhNDUtC6uuMLfUOY1r1ZqHKz9QTvp8r0YnSHukXAIVKeuP/6pPTNg4XBgnfTFaPSBVl5tXvwnh1cFZenuJn64b83uLrsgmqBae2ap7HT2cNAyPsGrZ9W+aG+Z4uYTu2Se9y02uMCQcyFZawZQNttc+Kgew1YJwf5w4GrcTVgx4UiotzqGjglYSIVra2EWHdL22wblETvhaw1YGx0DS9t9uwMI/Nc+PBWh/eBd+cR3wSGxRJKnr5/yr1lZCz17xegpMLOWLjRKl4cbRCaxlMo7AyJN3ciMWe8q0twjMuR4B2zouyNdeXWAIxZpz0qArPGkYpnXpRURlSVm6GtFX5R7jLQiGPuE42ve15vbtSZ7X3j2R8zinK7b2h8bakOqsyHkUGVnAtZhDf2Il3IlFLYGSPvLiNJC1Lg3UVmnpYsc6Bt1jsOYQHiBIdP6M77OvFmiHU54CDc2Zgxpnol24Xa73lwcl6EwyepdzULAmoQe9wK7aSr/26qzMaYKAgb7fFXsocr8eOuis9rVYVWQ+Tjdb8crUwfHbQuUzfI+jJFzlL5P26rbEz1OypdQ9eER74joOwOmZSVWeMfXs0fCVwKtHBiltbhsotIzR5q6gUTJ5T5kfJITQuYNXWSWeuFPgSCr1twFi28uTcgqrTBcz8qZRxY5rrPRVHYbh2bXUNJhYwwC8L9RUSoKaiOwv5QBwU2G0fre/bHROPqAHjJEBVmwBgTiwQ0nt1FpDjYaAIzB/eHxEISm40nOMeLW10dVB8j85y51Xi61oF0LGMkZaGROqP6xiyQk3J3iDVbCmVnGRFJdK5+7vOY6dvAfiy0TvFA45Q2NEjJ7I11VnXnPUMWtr0jOAjT+bkuFiDO6L3FMC2hDFtd4J15ZGcoeIE7mx3LXNiLkZjhdt+sPZNJtY6HBKnT+/smEJPSeaFtH+9K+qCiRPXY9M2zXslexIzowzuSZdW6L4CTx36t49J04WIy0c489wPqNpswzfx9v4P3YkiZRF0OezdmZr5OJpunul1lnZms71ue4XCwPMv7cLjsInV9IAFUapLE4Vbn0QUud5Yji1y77xBYpFyXslBhY2qJo4WigijEDE1wxKSknPAIsRQ8NeNsPxVKVvqpi2uj9cSp4u9cHfhuUTbbhpgKs7allMw8FSKC5sJQpjkLBaQNtO20rWmBOCRyydycdSzHzL0c6Z1DFVQcY6q9Cn1wDEnZjwnnAo33daXVAipaV531haieeU70PnCjb1jkwm4KoEJRRVztvu18bYlvznqSLBlT/eycKM4LXWhIpdCLjUFcug9s1iuP3bEwaxw6rePixdcFxZJOG374M1VU581KGVNmZ0g4qQuHnafP/6CinAX/vm6jR8rJ6ZXZRc6IftLXOm8Qe5q7tZ1lTkU3jVPElAmHPqOjZRpSYUjQNcL+kIFMaBtmjWc/Fhap0As08ujyDKrK7hjJWRm9vK8L6qxlf6QlN7WmhfcvcNkHz1hgf0wUasu3DR4/PVcQauppqbOJl6lQlnXfhttdgwi8vjNHcSzGTNd4GqeUDG/vLeuAMIW9ZQIHnfNk6kC2o6awxmnhPjK46V13Du7Mat9+ykrKkGLt9lJV7g2R5ZTCuiDXVg7KzbZFVNgbY10KZBrDSirsxZENH5inyFCUnZ0B1witCE0vvLkXiSVPS4jAMmf6UNOeU85sty2dV4alo28F7xzzmAFhqwssUwE5f5LGcSxAnJFzdf/XQmEZp4W9pK7X4hG8KzUrwzlK0lMrqifNSjmo3JYxM+TCkBLbbW3VNN4/VtfSWSrKw+U8S2V2kSvcHrxW0cL+oHVc4gyv9aT9+geTIUV15W5t7+uyOsNFwGlX62cNZgfrG+2kSFJhKIUbnWfIpe5EVgobjSeVzH7JNRMndCxiYhFr5k7jhHlSYip4J9zs2xPfy5Nacie2pqXOXA8O5kPd67mTulrp3li40QZEQZxjPyYWKdO5lq5R7i6XLLNO4wKlppKOI74LuOBwWjOLFkPhZhfou6YGrgJ3NlpSUWbesZMdXROYtRCcY8z1nOpDw93FiDjBFaVroBMF70mlgHNsemWZlZSULDBPkVkIdKEGtaKFUWumX5eF7Aq51AvKFISSlSTKLDQ4JzSpcLvriFqYjZ7tzhMk0ASYhZoUc2OjRRVuz1piKdxdRBrncAiNW9+ESgsQJ3j/CQ+3ulAzmWJ6cNXtnXBvkclFTxwkVlXuL+vuXnpChsdJZSil8M7+QEZpvMdJbc7Px8RW93gpb4/0IwNjLGx1/sGYw9GKydVz78FEsuMqwceZaXzWmerH3k7dF/jw/6d5/4B0XV7huJPsIEjupczetFhcGzxHd2s7mtb5uBcBq/7Wg89omWoCglAzyA6X9cFyKyhbbQABLfXCpQmBDZkCnHcUhIDWyYbTzm6LmOoubqU+8GDlURlGbvYnb2d5tKvzLK3pLni0a+inbs3lfkG1sNn2hGkYbT7WQDYW6qZHDlBHSsq781S3Dp36mIqHvZhpS0SLMlDIznGjCaQMwdU5FXtjIohwLyVEHLe6luBrJbuzHIhF2Bsi9xeJ7QBd6+mcsDcknFBTXL0wap3lHDzMHMSoLEpkfzz4gjmCq5lSIQj7MbGfCgHBO8GrghPeG0Za5wlSoDjGae7FmOFuWiJZ2ZvVsYfdoQZ1lqlmVqZMP0RmTVjrhEoLEEccdB+gtbIvgKOmm2337YP7bXUtW9O5UwdkHRtNnYdw0jIRtacWUHlfpXzw+ict3naQJaX1+4c4ITjHVls3V1fVJ1qZdRELi5yRsdTlor1jb0yUQu0Xnb7sY8qUXB68J6sqweOuis+yXMeq92xIGVFFRR5Z0qQ29wuLmPGuZr9QCiWevj7+4SB2kMvf+0e7bw6C5HzKPJnHRBBYxrp2j5v6iv3Up3+Q1nlvGVEiAmx24dhZ36UUdsfEdhsQqZVTVsURHkl4OJh7M5ZM6zyz8GhwZnqe3jtu9k3NHFNlTIUsNYCFqXU5xoQ0js2DZIIsdL6gUthdRryDUuq8A6jdJo7agj5IvjiciHFQ5uDq99LL1JqmbuRzXEBbTGMiy1yYBUcRIcdCFuWFjZZlSviiBHHganfUwilDrBcqUaHkerHSFPjgRmBQYS8nBNhwdatRkToW4sXx3mKgAG3T0oe6Sux+jGy6ml0UHEQKG62DUlgmpQlaNyHywlt7mVwKW42n7RyLMdaNiJxSULwK4oRcoPWCVygqdaKbBJImSlFaL9yZzQhOp/PZ473w3iKTSia4wGaA3ZTY2820XqDuTVcvUFS40fs6hpIjC5/4qu2NE7/vT8oCxBExF96dj3XpXue40TfHXuXPx8g8FRpXB9dyqZXI0fs9khIYHPMhMk8jXgBx9EUeDDSNKbMzZlqndUng6Qr+oNJJuWZk5KIgdXeqrp2Wv6i7mDMUZavxdZBuxZU+8KAPfT7Wq8c2ODonvDsf2Bsz261nURQpijqHFmWRlEWqJ9xwEOxUaYJjf4y8s7+kC547G92jaZRHKjLpGrIq+zGjRXGu/t39lCEyO5R9k0td1mN3rCmMlMKsaRjcNPmoKPNYr7J6X/u3PcrbewvuzOoyCkfL0U6VWS71cy3Uz2tniHQ510X7pgoxFqXzEEsiZaFvhRDqDNkakKFvPGPROmvWC61z9USfln1YNeu7lMJX9hbErOwPI13j66YzjXuki6YPQsqFmJWtLjCmwjvzBbMQEIFF1il4OkZVZJqfM2s8WZW784GucbywUWcWz2OdKDYLNQgdpLQGqYO7y+XIe0Oss4j7ji1x7I2RjON2X8cmhpRZjCO7Q92oZ2PK0e+8o288Xjw7Y4JSHgloh8+xIdVsqtY5NjZqi9w7wVH3g77RNbUCHwaWCo0Weq0TJJsG8jhNQlPwjWegBr2kym6MzFzgRtewN0ZShgWFjdCwKMoyJ5ZJcKosFRY+kkr9fszH2gNQRNBSWGQhak0RdiGw3dRu5Pkwcn8J4up55ByAsj1NfNwIjiBSV6gtHnEF1DOmgnhH33o2QgCU+0Pk3n5EtX6H5mNiEQteakrCmAtDqTvfbYeWvnVsNg33Y+RW23BrdnIr7zwsQEwONnuvG4/XAb95HNldRrrgeaFvcN49qHCHPO1VGxMypbiOKRMEnHcsY3p4Ja1KjIn9mOm98MbOnMaH2nLwwjxmlmlZJ5tRr+DidDIcTEAaUl1HPmthMUaGmPnAdo+Iw0sduPJOuDevFem88fz/7Z17kG1Zfdc/v7X24/Trzh1mJjgCw2MCsRArZJgKQgiWJCYBFTBCRKPBEiuV0lhSVhInRRWVf/wD8VVqIkXiCGoIJGUoRyUJKUuCZTRmQGZ4TmCAhMe87tzbt+/pc87ee63184/fOrfPbbr7dt/bjzvT61PV1efs3metX6+z9/rt9fh9f0tNxRCElaZisw+Xn06By3PorRfGfc/6TFmpPbOQWJ9NeVyT7Qmva9shlZ9gY1Kmg6VTXGpsDn4865kOIXceAafJksvnyOD12WABhTGBsw6idsL56ZCfvBLiPd/mWxBh2g82ZQQ8MelM3TIGSyvpHGtRGQ9mv6jtNFltHBtqUguaEk9MeiZdz7PPrpqAmhPGg42IgrN9+KJq8p44giTGXaQS24UyGRK3ry1ZW4ZEHwIhRS5MzDGutRVn6opHN2d4amw3f4TgmQw9SZXxZocTSCLctlRzsUvIrOf8tEMQJjGBRiaDsuw9S61nc5bXulLi9jNLJIXN3hZGl1ssL8GgTIee2glDMmmG5doTE7SVyWNMok3bXBqUUUw8vtkRk41onjFqeXQ8oxLTDxtVwnja4ZynU3vq/6ONCcuTgVEFSEUjW9/pLARiiKz3kdXKEdSUSrWx62ljiDTO0da2uL4x64jJpkTraq5DZQ9Sg0IYIppHGquNLbz2MRKCPWG3XvFRGJJN9TSuopNgUzxVhfOWNGeMifm1YnkVHh1HGm8LzsmDiqcbwuUMdJqUSuBCMCe/2QVEoXICTlh2ni5FvAYiNo02xMS4C4y7HOjobSQzDaa9tNpUqNr22C6aQ+5TIkSbmjw7amxUle8V7y3wr60dcUikIAiWf0KcTWXFqDiEylU2XTXYbqva+3x9RnzWjDpsioPAbsZusI7NiUnxhmgSv2MdeOZyS5/sycYLTIM90fXBthKOvGNpsGC6lBKjumKlqWljJMXIE+POFDzVVE5nQ2K1DiSB1kPlEq0o4yFRV461UWOL0F3EqXJ+YuPp5abiwnRgYwj0SbklJZ510zLjPvDopSl9Spyf9dw2ajgfI2naocBa0+QpFeGxjQnTvAWx9p7NIdAPHeud/W95EGJDcZ/Y6AO3tg2zaBdm6x04z+asp608sxCZpkiMsOyFqmp4ZDwzJ+AdZ9qa6ZCoXWJIto4TknVeXQ9kjZolbxGjbeUZeY8IVN6C7cZDYBgCnQIJwrI9XS55Zb3r6ZMjJtPI7wePqjCNgfVu4MlpjxfhmWtLPDmZ0Q2Rm5capsm0j4YEo1poq4rpMLAxS6x3/eURhk0J5amApHQh2B77xvP19U3O9wnRxGrbsNkFuhjpY2LkHeOYGPrAoIqGlqb2XOx6Qkj0qjhxDDEyGWAmkbN4+jxqqKuaJycdToT1ScfQDzx+yTq5s6MKJ56L054L0wGAM609KIh6psPANFoQYZeUJ20zDw4gKdM+0qXIc1aXuGnU8I2NKZNhAE1MownMTQaY5umlUR0401Z0mNOtnT0Y9CHy2CzhZh3L3hNDxaVJT1sJHY7NDlpfMYTA45OBW5drVpqa9UnHelDWvLC2PGKpsgecPiRmRGYxMsSIYBLcIw8XZz2zHlZa4UzrgcAs2BTOSo7qn4QETUVMSjdElmtPW3s2+8RsCIRoI6GRs/iEad5FlTTROsdEbMFaUCrxqIOYPK1XluuGjVnHpS6hyTrOAbt+Qs4iV3nbbu6wRXjERrmVU7SyfBKrdUWXYK2pWGlrNvtA13eQp8xqD4rHRHscIjYSvWnUoAKzrmOphtuWWiRrvx2ltI/oIUa6Hjd333233n///dddzrjreXw8Y9INzKIyDQPj3sS2IrDmYKlxNJWjEpv7jinixDHuE3UFZ+qK9WlgAFayxLwTmPamy9JhqR8H8rwp0LjsoQWWPaz3dvyFt65wftZzYTZQYU8356aRLn92CS4/YTfe6vLOFmknCTy2d7xycPuqLcSNB3vae3zaESLcOqo4PwlME4y8OY/1TpkslL2U7dX8m/w/SLY/5mO532bKzovE8x1Qjq0nki7/FszeKpdXAzc1EMT2oQc1TZuQz5vXF4FlwFd2fBqhy9M+81tlbnML3NLCJNg5Ltnn1mpBEKZDwgGXAjm/2Za9rcBSA6rCLCgiMIlmrxObWoiWcZKwUHe38Hqx/Vbz+82FtpHcfvO2qPOP8+TFUftM9qc8Y8kxpMS5bsveNtfhc/mS3883Fczx2Pcq+aeprZNrgfVodTQLfw/ZluUGGnEMQ6JphAszpV/4HlwuuwdubiEIbHZQSS4nwSzb5oEzDYx8xdqoZq2t8WDO3Dvayln8wxA51/WsVBWXup7awVLdMIuRGGw7aes9XYLG2bZU9Q6XYDwMLFWOlbbh4tRGWwGQGJlEkxHHQSN23ZoUOCzXQtfbOsHSqKYWeOxSj/N2jznnmHaJWdq6jwHWalhqKpZrzxASzjtUzNlsDmavOuFMU1M5G0msjWpiTGz2AxcmA11K3LJUMw22uLI6qgnJRsuVeGYpUamp/640FU1lOboXt6fvFxH5hKrefdXzTrODOD/pbJTQD4xnHZsxMe63buZFHNY51gIz3erglrGb6PIGBraeLq7GfMk7cOVNXOVjc/LGjquSJzmu4GyeRph3WPPOPC7UOe/wew5Gw1Znna5y7kFosf8/suWkIju3QYPZvrnD3/bDvG13ars5i3+b34bz99s74J3YzzlPJWr2d33vxVkP4oW1ynF21NDUNdNhyKP3SIyKR5kkxWMd8pL3FmOgwhAjEUeMEe+FCssfERWWK5gqtF5YrlvEVovZ6AK1KNNo0zZqM0m2bUTtgU28Y6UxpdmgQiOeS31vu6aw773LDrv2oBGiwM3LjsZ5ahHa2pPydOfGtCMJLHtb9MfBSl6nWWlNaqTK09OzkEjJpj1vXao5uzJifTKzDHk4gihO1UYMtc8xEqYPd9Bo6v06iFM9xXR2VDPuOqaDee9L/ZUd8yIJmMC39FKTbectPi1ejd065O027NeF79TBre/jw/On04NyLZ/ZD93C6+k+bLgeO+bNs5tz2P637eftp+N/OjkHuH7nADZaISpnXOT21REX+8RyUzEdbESf1KEaqcRdXo+bpUiKFvk8JGhr23RQqY2WBzXbKoUzTU0XB8TZjrfNYL16Esu7UXklRNOOqp1HNaI4VuqGPibWJwnx4FoBhc2wNUryHnyuUxXqRhj5mmmMdFFp6wpx0Pc2Aq6dZ6VtQJQhwNqoznUJK5VnM0TWs3qw847bRjWIpSgdOeG5N68yHZLlq+4TdWML8mttdd2BmlfjVDsI2xvuuTAJbDzd7uJC4SnAYzO4ebNDnOP85gznhD5GBFsLpIKuT6y0tUlohEDvIHaJShKXok1BwtaUWJds+2olEFLHTUuNbTWtyIGOMBmSqaE2JpudsDwO474nqktZZJQAABQKSURBVNroIMF0SOQZH1Yd+EroolqArBPEOZZrR1tZHIxWyrlJb9t0nWOtccyCcrEzteWVxtG6EYjFeoyHyGYf6GNkSEoYBlRN+21UO1ZGNSGZQm5SmMVA6B2t8znB0dE5BzjlDkJVeWxzRlecQ6FwIsyAh89PWG5gtWlImnDOWy7ooHR9pPKmrjvpo2k9Vd7kLnqLU5rnX5h3lfMp2xUxFVXEEYjUVY0Gi3dQAdXEshOSd9R4XEgmwxESSRMbnT2xC7ZDaRxBehtznm1t9UgFZiGhybYqi3eMIix7h3jLJSJVZNU5KjHRQSeAWGzKmoNx15FSMoVbUVKKzFBW64Y+Co7IpOuJKrSVbcnWHKR5pq2uOaPifjjVDgLgpqbiSdcXJ1EonBC9QpVTg9bOFndDSqRkc/8isFzDTU1DEGXWR1ZrIYSeM5WtHTzeXzk1qdji+xPTyJkUqX2DiM3zr9SetnI0vmGpcmwOETRyy3LLkBKzpCQVljyMnG1hHfIo4qbK4kW893RR8aKcaSr6qKzPzIKmaqic0kVhENNY6mKicw7UcWtTgQgb3cBsSIjzqNr6g2aJcJ8UEUfSSBctViniWPW2OL3ZDdQ+4eXonAMUB4HzsvXoUSgUjp0eWAELGgwDK01NjTmGpjLVgoQFaTbeWa4JNRVZ8TCgO97CDmgdLHnHcuu5adRycRrwDjyOcZYNv3lU4aWlcia5sdo4kyP3S1zctFWwlcoWo70TZgpVsMBZcY7NoHShJwRlua1waqlHK8lhNsDGELm5UcaD8rWLlmBsrW1ovKNCqOuKqBafUYmy2jZElCcuTZmFwHJdgwaeCJG0aTEszzm7fGgZFXfj1DuIzc7mGPfaxVIoFI4OBcYBkga6BJWLNFXFWl0j3ubbN4eeIdkuwhqLUxKneHVMo7LmLb3EZt5+GrDnvpXa46uKyplj8VmUcZYj9SuxrbIuR8+Lczhgs0/0XUCccMuSJwJNXdGFyGrjWXKCiI0+pjEiCmoDA+rK8kinlLh5VNMrJITIfEuxOZIKoVclqNr0Ul1Ri9In6FNgMg14VSpX0SUL3hXgptbaJiSTgRlVwsqCDNBhcqodxFJdcdtyTdd3PDlJbLD/HUOFQuFwmMeuTGKObXFCxIQJUWGWAlGtcxcnTLuApkjlTJtsJImVuiFoInQBiVyOcl5brnNOicSFcWTc96gIa23D2dbTR2U87W2h2VfElBgPkVkcELUEPVESMZk8+kpdcbb1JIFxFwmoxUupRZluaKSNyQLk8jRUHy1Px8Vo+WMuxcgzGZEam1KrRVka1Zbbfkg4J3hJTFMiJFOJ7qLlvFipHY1zSHZQ3mmWXSlifYfOLEQ2gxLEkVx6+u1HPEb2G6tRODlO+jtqsVF6xVY8zoDFF6V8zOec001WAu5SsEjlLNHyaGf6Z41AknRZK6vyQopCnaOkz9SOkKByJtPdeE/SxKqr2RwSXYx453BeuLU1Ce0QYTIEJr1V6FAuDYFKLViyEk+MplcmIlzqI2u1JQzqcucfgzJDmZC4fVmZDDlbnDNFgxAC50Kkj8qtdWXSIVXNxqxnIEFUqrpC1aTTuwh9igwBlrxJewOcaSp85U2PqmxzPRpGlQmJLeWsT6sh8Ojw1OjoTvpm386NZMth8nQJcrsRrpeBrYj5CnMY8+PzCPKY4Px0oHYWp3S2cmwmZTooDmXc2c4lFWi9iSCu1g2zPrI2qkxuhEQvYmqoIbJcO/ponXIfIkkTtfd0Q6L2UK+09EFRjazWNdN+aqlHsz1JgOToNjtaV9HWwhCVSyGAVmzMAn20Ecty7ZnMItHD+izSE6k9CJ5x16FRqSvPeOj5wrmBNguCVpUSB4f3kdYLmiw5kEmkCG3jrOyQaICgypnaFHpLytEjQsSSokSFbwYLvjnpm2i/PFXsfKozj7KGp+4aVcu1B0MehO0KANtJbMmFwJYUSCNZHdeb+nAXEtMBogzcNmqoFEIIKFtrC52C9LBUY0mFhoj3ilQ1kx6mUxMnvGVU4b3j/GZHN0CqwCdIKVILbCSIl2Cpto563AWSZtUBS1dBEKjySKZLA03Esr4pXBoGuiy10kVQjUwAF+GcJaxjNEDnIynmrHUrjlkvILZYHVRJWrHSKjGZ6u4QI01ti9hRTeivrjwrYvm6ZzFwceZYbY+2Cz/VDgKwHRFDMAmN7uqnP11puXKb4H54ujxd78VcTmSvju84uZY2P2rHMGc/bTQXDZw73pXK5C7UOTaHxPnOdLFWa+ugz816JM/+xrD1YCSYnEalStdFvIONWaSqLb5Bss5SD/R9QJPpToEwUaULtoV1qbGEo9OQmI17mpxTY9xb7gdMpZ7amQy7CIQIF/oAknXQIEvC2z82HyHNdcw6LLq79uZEntgcaGvHihMS2AhEIytVzTSa/lpSJYQO7ytStEC5vhKiOlacR/CX5e2PkqORAHwK0VaWU/rJzZ7xIZd99Gnvr4/FL/9afOPT3TmAtUvPjfO/JrbE9PZDjW0hPcqd3PNFZodpZ+3FfN1hhulnzYJFMA+DSWaYTisEhSHApLcOerXxl0UI53mvB+DSYAKVYGKMk2mk65Vg6SjoU4K8y6gPps/kspdJOVL6wjTQhUA3DDnuQAmamAy2a0oclqjIw3JlCYFwsNYKlTMRv1FTsTwypdi5Plta+J83k/1PbWVquSklhmgZKdcaz5KvGFJCsPzafbIIcVFQHDEpYbBEZuMuEDXRpZRHT0f3+HLqRxDnJybFfRRSGzf6lMSiWF+ZsnrqMFdN3Q8Dh6OdtBdz5duGgzlSwbS2fNxSeK0VZoMFpwWsgxIsR4N4c3abcUs887KjCHkdw8OluOVIq5RQZ2qyUUweG7LiMSa2l7BAuJGzRFwRU/xtfY6jyIF7swAbalIdTsCrA42os3wys/CtSsJzEjadtZpgpRYGsTm1QQXVyKhyXJoOrA9XqiRv5M7fAcMssdIGKl+x2ZvTm8dSHBWn3kFoSrZl7KQNOUGKc3hqcTUBw5MgcnC75krA8w5xuoPX64HzCc6P9/eUPF14KguLleTXk12KWZ8bMmx7rIuwo9tTuDiLC+fsjzEwHhYkImd7f3ixSWYKG7N0xdFvnhtz1wtuO5IgObgBp5hE5IdE5CER+ZKI3HOUdU2HQF05vrrR3zBzzIVCobBfHsM05Y6KG2oEISIe+HngzwFfB35fRO5T1c8dRX2jvP5w1EPwwgmzeAPt8lp2O2f7eRy0rN1tueK8Xcrdt127lsXO5+y3rF3K3W9Zu9af//Dt7/9FRk88RmyX2N5Yu9ah+zxvT5u3n7ZbW24vc5/n7dfGbUXsen1te//oq1/Dl//G2wD4za+cA+CHv+N2DpsbykEA3w18SVW/DCAiHwTeAByug3jwQXjTmxj3kQrlBxb/dtAOZLfOY8+y9nHOPsvan41XFnXwTm6PC39fZXHVc67Xrm+5WQtPGcJoRHfLbfZmW9CXLr7f7TVcqca0fb544dxdy9vrvO2F7nXe4tu9yt+lvKuXb++r6ZWZaF7E0XCjOYhnAV9beP914OWHXsvKCtx9N8PGlE12/xK2v77yvN0u3CuL2s8Fvq9y913W4ieut6z92sXOf9vXjbnPm+Og/+81lbXHTctu5x2wvj3Luha7uPp5+/p+t5e9Hxt3qfuAZU2f+cd44pWvpnDtvOQIRg9w4zmIna7+Kx4NReTHgR8HuOOOO66tljvvhA98gGcAH3vokWsro1AoFJ7m3GgO4uvAcxbePxv45uIJqvpe4L1gOamPz7RCoXBUHMX8eeH6udEcxO8DLxSR5wPfAN4C/LWjrLBcmIVCobAzN5SDUNUgIj8J/BYWy3Kvqn72hM0qFAqFU8kN5SAAVPUjwEdO2o5CoVA47dxwgXKFQqFQuDEoDqJQKBQKO1IcRKFQKBR2pDiIQqFQKOyIHKXQ01EjIk8Af3gdRdwKnDskcw6LG9EmKHYdlGLXwSh2HYzrteu5qnrb1U56SjuI60VE7lfVu0/ajkVuRJug2HVQil0Ho9h1MI7LrjLFVCgUCoUdKQ6iUCgUCjty2h3Ee0/agB24EW2CYtdBKXYdjGLXwTgWu071GkShUCgUdue0jyAKhUKhsAun0kEcZ97rHep+joj8DxH5vIh8VkT+fj7+cyLyDRH5VP553cJnfjbb+pCI/OAR2vZVEfl0rv/+fOwZIvLbIvLF/Pvm47RLRL5joU0+JSIbIvL2k2gvEblXRB4Xkc8sHDtw+4jIy3I7f0lE/qXIHlmArs2md4vIF0TkQRH5sIiczcefJyLThTZ7z1HYtIddB/7OjsmuDy3Y9FUR+VQ+fpzttVu/cKLXF6p6qn4wldiHgRcADfAA8OJjrP924K78eg34A+DFwM8BP7XD+S/ONrbA87Pt/ohs+ypw67Zj/xi4J7++B3jXcdu17bt7FHjuSbQX8GrgLuAz19M+wP8FXoElyPoN4LWHbNMPAFV+/a4Fm563eN62cg7Npj3sOvB3dhx2bfv7PwXeeQLttVu/cKLX12kcQVzOe62qPTDPe30sqOojqvrJ/PoS8Hks1epuvAH4oKp2qvoV4EvY/3BcvAF4f379fuCNJ2jX9wEPq+pewZFHZpeqfhw4v0N9+24fEbkdOKOq/1vtbv73C585FJtU9aOqGvLb/4Ml3tqVw7ZpN7v24Fja6mp25SftHwF+Za8yjsiu3fqFE72+TqOD2Cnv9V4d9JEhIs8Dvgv4vXzoJ/O0wL0LQ8njtFeBj4rIJ8RSuwI8U1UfAbuIgW87AbvmvIUrb96Tbi84ePs8K78+Lvv+FvYUOef5IvL/ROR3ROR7F2w9LpsO8p0dd1t9L/CYqn5x4dixt9e2fuFEr6/T6CCumvf6WIwQWQX+E/B2Vd0A/g1wJ/BS4BFsqAvHa+/3qOpdwGuBvysie2WSP9Z2FJEGeD3wa/nQjdBee7GbHcdmn4i8AwjAL+dDjwB3qOp3Af8A+ICInDlGmw76nR33d/lXufIB5Njba4d+YddTd7HhUG07jQ7iqnmvjxoRqbGL4JdV9dcBVPUxVY2qmoBfZGta5NjsVdVv5t+PAx/ONjyWh63zofXjx21X5rXAJ1X1sWzjibdX5qDt83WunPI5EvtE5K3AXwB+NE81kKcjnsyvP4HNW7/ouGy6hu/sWOwCEJEK+GHgQwv2Hmt77dQvcMLX12l0EJfzXuen0rcA9x1X5Xme898Cn1fVf7ZwfDE59l8C5rss7gPeIiKtWK7uF2KLUIdt14qIrM1fYwudn8n1vzWf9lbgPx+nXQtc8XR30u21wIHaJ08TXBKRP52vhR9b+MyhICI/BPxD4PWqOlk4fpuI+Pz6BdmmLx+HTbnOA31nx2VX5vuBL6jq5emZ42yv3foFTvr6up6V96fqD/A6bJfAw8A7jrnuV2FDvgeBT+Wf1wH/Afh0Pn4fcPvCZ96RbX2I69wtsYddL8B2RTwAfHbeLsAtwH8Hvph/P+M47cr1LANPAjctHDv29sIc1CPAgD2pve1a2ge4G+scHwb+NTlg9RBt+hI2Pz2/vt6Tz/3L+bt9APgk8BePwqY97Drwd3YcduXj7wN+Ytu5x9leu/ULJ3p9lUjqQqFQKOzIaZxiKhQKhcI+KA6iUCgUCjtSHEShUCgUdqQ4iEKhUCjsSHEQhUKhUNiR4iAKpwIReUdWyXwwK3O+PB//JRF58SGU/3YR+bH8+mMisu98wSLyxmu1QUT+lIi871o+WyhcjeqkDSgUjhoReQUWVXyXqnYicium5Iuq/u1DKL/CNI/uusYi3gj8V+BzB/2gqn5aRJ4tIneo6h9dY/2Fwo6UEUThNHA7cE5VOwBVPadZVmT+tC8ir5ct3f+HROQr+e8vy0JtnxCR39oWDTznNZgMSFg49tdF5HdF5DMi8t0i4sQ0/W/L5Toxvf5XYxpT785135l/fjPX+T9F5E/kz7w5l/eAiHx8oa7/gikCFAqHSnEQhdPAR4HniMgfiMgviMif2X6Cqt6nqi9V1ZdikbP/JGvj/CvgTar6MuBe4B/tUP73AJ/YdmxFVV8J/B3gXjX9of8I/Gj++/cDD6jJT98H/HSu/2Es3/Dfy3X+FPAL+TPvBH5QVb8Tcypz7seUSAuFQ6VMMRWe9qjqWERehnWifxb4kIjco6rv236uiPwMMFXVnxeRlwAvAX7bZG3wmEzDdm7H9PsX+ZVc98dF5IxYVrd7MV2cf4FNSf27HepfBV4J/JpsJQJr8+//BbxPRH4V+PWFjz0O/PE9G6FQuAaKgyicClQ1Ah8DPiYin8aEz963eI6IfB/wZizrGJh08mdV9RVXKX4KjLZX+a0m6NdE5DEReQ3wcrZGE4s4YD2PZLYX8BN5cf3PA58SkZeqqY2Osg2FwqFSppgKT3vE8lq/cOHQS4E/3HbOc7GpnB9R1Xln+xBwW17kRkRqEfmTO1TxeeDbtx37K/kzrwIuqurFfPyXsKmmX81OC+ASlmYStRwAXxGRN+fPi4h8Z359p6r+nqq+EzjHltzzi9hSRi0UDo3iIAqngVXg/SLyORF5kK0c4Iv8TUw588N5sfgjailp3wS8S0QewBQ2X7lD+b/B1qhjzgUR+V3gPZiS6Zz7sj2L00sfBH5aLHPZndjI4m25zs+ylRL33WLJ6D8DfBxbKwGbNvtv+2iHQuFAFDXXQuEQEJEPAz+jV6ar3Om8u4F/rqqHsqgsIi3wO8Crtu2iKhSumzKCKBQOh3uwxepdEZF7sIxhP3uI9d4B3FOcQ+EoKCOIQqFQKOxIGUEUCoVCYUeKgygUCoXCjhQHUSgUCoUdKQ6iUCgUCjtSHEShUCgUdqQ4iEKhUCjsyP8HQXayv3wrzuUAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "x1 = np.linspace(0,1493, 1492)\n", + "x2 = np.linspace(1493, 2000, 506)\n", + "\n", + "y1 = reg1_min[0]*x1 + reg1_min[1]*np.ones(x1.shape)\n", + "y2 = reg2_min[0]*x2 + reg2_min[1]*np.ones(x2.shape)\n", + "\n", + "plt.xlabel('Size (bytes)')\n", + "plt.ylabel('RTT (ms)')\n", + "plt.plot(resDict_sub_1500['size'], resDict_sub_1500['RTT'], ls=\"\", marker=\"*\", alpha=0.1, color='lightblue')\n", + "plt.plot(resDict_over_1500['size'], resDict_over_1500['RTT'], ls=\"\", marker=\"*\", alpha=0.1, color='lightblue')\n", + "plt.plot(x1, y1, color='red')\n", + "plt.plot(x2, y2, color='red')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Analyse du jeu de données 2\n", + "\n", + "Pour analyser le second jeu de données, on applique le même process que pour le premier. On commence par récupérer les logs et les transformer en données utilisables." + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Malformed line [1421771220.808824] 12 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421771246.232560] 22 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421771307.915612] 11 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421771323.190747] 22 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421771334.255838] 16 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421771453.320045] 13 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421771486.020234] 21 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421771508.482183] 19 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421771514.177941] 13 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421771533.783690] 12 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421771573.614064] 21 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421771692.879015] 13 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421771706.762834] 20 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421771722.565152] 21 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421771732.048148] 13 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421771762.595410] 9 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421771788.519516] 19 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421771800.220095] 18 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421771835.402635] 16 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421771864.885681] 10 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421771891.762469] 12 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421771908.641749] 11 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421771941.901598] 8 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421771946.756166] 20 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421771948.105568] 8 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421772004.039668] 15 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421772022.504072] 16 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421772023.780626] 18 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421772113.747723] 16 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421772174.585634] 13 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421772224.142212] 19 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421772247.579179] 8 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421772264.677229] 20 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421772277.958394] 16 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421772279.854499] 16 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421772292.167980] 16 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421772304.516127] 11 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421772333.128142] 13 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421772442.745548] 17 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421772489.841729] 21 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421772526.318630] 9 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421772548.704093] 12 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421772554.712281] 22 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421772565.795705] 8 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421772576.545516] 15 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421772593.936639] 10 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421772642.158591] 20 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421772647.850210] 10 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421772649.429292] 13 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421772864.825910] 17 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421772914.252375] 15 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421772960.433736] 11 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421773031.666688] 22 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421773178.086822] 22 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421773183.768464] 23 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421773198.596236] 21 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421773249.083083] 12 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421773263.625702] 10 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421773281.582445] 13 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421773321.338402] 10 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421773326.700495] 8 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421773341.010489] 17 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n", + "Malformed line [1421773382.797766] 16 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50\n", + "\n" + ] + } + ], + "source": [ + "resDict = extract_datas_from_logs(data_set_2)" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[1421771203.082701,\n", + " 1421771203.408254,\n", + " 1421771203.73973,\n", + " 1421771204.05663,\n", + " 1421771204.372224,\n", + " 1421771204.688367,\n", + " 1421771205.005514,\n", + " 1421771205.321112,\n", + " 1421771205.637464,\n", + " 1421771205.953472]" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "resDict['timestamps'][:10]" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[1257, 454, 775, 1334, 83, 694, 1577, 632, 405, 1419]" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "resDict['size'][:10]" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[120.0, 120.0, 126.0, 112.0, 111.0, 111.0, 112.0, 111.0, 111.0, 111.0]" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "resDict['RTT'][:10]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Ensuite on affiche les données et on cherche une intuition visuelle." + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "# On affiche seulement les 10 premières mesures\n", + "plt.xlabel(\"Time (unix timestamp)\")\n", + "plt.ylabel(\"Round Trip Time (ms)\")\n", + "plt.plot(resDict['timestamps'][:50], resDict['RTT'][:50])" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "# On affiche seulement les 10 premières mesures\n", + "plt.xlabel(\"Time (unix timestamp)\")\n", + "plt.ylabel(\"Round Trip Time (ms)\")\n", + "plt.plot(resDict['timestamps'][:50], resDict['size'][:50])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Comme sur le jeu de données 1, il semble qu'il faille pousser un peu plus l'analyse." + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "plt.xlabel('Size (bytes)')\n", + "plt.ylabel('RTT (ms)')\n", + "plt.plot(resDict['size'], resDict['RTT'], ls=\"\", marker=\"*\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "On retrouve la même fracture à ~1500 bytes que sur le premier jeu de données. Mais on remarque assez facilement qu'elle n'a pas l'air de concerner la valeur minimale." + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [], + "source": [ + "resDict_sub_1500, resDict_over_1500 = split_datas_at_value(resDict, 1492)" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "plt.xlabel('Size (bytes)')\n", + "plt.ylabel('RTT (ms)')\n", + "plt.plot(resDict_sub_1500['size'], resDict_sub_1500['RTT'], ls=\"\", marker=\"*\")\n", + "plt.plot(resDict_over_1500['size'], resDict_over_1500['RTT'], ls=\"\", marker=\"*\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "On réapplique la régression linéaire avant de l'afficher avec les données." + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2.29726279e-04 1.13135332e+02]\n", + "[-1.4810656e-03 1.1946463e+02]\n" + ] + } + ], + "source": [ + "reg1 = np.polyfit(resDict_sub_1500['size'], resDict_sub_1500['RTT'], 1)\n", + "reg2 = np.polyfit(resDict_over_1500['size'], resDict_over_1500['RTT'], 1)\n", + "print(reg1)\n", + "print(reg2)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Sur la première partie des données, on trouve $L \\approx 113$ et $C \\approx 4347$." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Sur la seconde partie des données, on trouve un a négatif, ce qui est très incohérent avec le modèle, $C = 1/a$ étant censé être le débit de la connection et donc une grandeur positive." + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "x1 = np.linspace(0,1493, 1492)\n", + "x2 = np.linspace(1493, 2000, 506)\n", + "\n", + "y1 = reg1[0]*x1 + reg1[1]*np.ones(x1.shape)\n", + "y2 = reg2[0]*x2 + reg2[1]*np.ones(x2.shape)\n", + "\n", + "plt.xlabel('Size (bytes)')\n", + "plt.ylabel('RTT (ms)')\n", + "plt.plot(resDict_sub_1500['size'], resDict_sub_1500['RTT'], ls=\"\", marker=\"*\", alpha=0.1, color='lightblue')\n", + "plt.plot(resDict_over_1500['size'], resDict_over_1500['RTT'], ls=\"\", marker=\"*\", alpha=0.1, color='lightblue')\n", + "plt.plot(x1, y1, color='red')\n", + "plt.plot(x2, y2, color='red')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Cela remet fortement en question la pertinence d'applique la régression sur toutes les valeurs et pas seulement sur les minimums. On applique donc la régression sur les minimums" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[3.57496224e-04 1.10878770e+02]\n", + "[4.99749629e-04 1.11655553e+02]\n" + ] + } + ], + "source": [ + "x_sub_1500, min_tab_sub_1500, x_over_1500, min_tab_over_1500 = create_min_array_with_split(resDict, 1492)\n", + "\n", + "# On fait les régressions\n", + "reg1_min = np.polyfit(x_sub_1500, min_tab_sub_1500, 1)\n", + "reg2_min = np.polyfit(x_over_1500, min_tab_over_1500, 1)\n", + "print(reg1_min)\n", + "print(reg2_min)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Sur la première partie des données, on trouve $L \\approx 111$ et $C \\approx 2801$." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Sur la première partie des données, on trouve $L \\approx 111$ et $C \\approx 2000$." + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "x1 = np.linspace(0,1493, 1492)\n", + "x2 = np.linspace(1493, 2000, 506)\n", + "\n", + "y1 = reg1_min[0]*x1 + reg1_min[1]*np.ones(x1.shape)\n", + "y2 = reg2_min[0]*x2 + reg2_min[1]*np.ones(x2.shape)\n", + "\n", + "plt.xlabel('Size (bytes)')\n", + "plt.ylabel('RTT (ms)')\n", + "plt.plot(resDict_sub_1500['size'], resDict_sub_1500['RTT'], ls=\"\", marker=\"*\", alpha=0.1, color='lightblue')\n", + "plt.plot(resDict_over_1500['size'], resDict_over_1500['RTT'], ls=\"\", marker=\"*\", alpha=0.1, color='lightblue')\n", + "plt.plot(x1, y1, color='red')\n", + "plt.plot(x2, y2, color='red')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Conclusion\n", + "Il semblerait que la relation entre RTT et taille soit assez complexe et qu'il y ait un grand écart type dans les mesures de RTT pour une même taille de paquet. Toutefois, le minimum de RTT pour une taille donnée semble être corrélé à la taille du paquet et la modélisation simple qu'on utilise (T(S) = L + S/C) semble assez cohérente dans ce cas." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "On note toutefois que les valeurs qu'on a trouvé pour C, de l'ordre du Ko/s semblent assez faibles et qu'on gagnerait à faire des mesures avec des tailles beaucoup plus grandes de paquets pour avoir une plage plus grande sur laquelle effectuer la régression." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "On note également que la méthode np.polyfit() ne renvoit pas la R² ni l'incertitude sur la régression et on est réduit à se baser sur la cohérence visuelle des données. Le travail réalisé ici ne permet que d'avoir une intuition sur l'évolution du RTT avec la taille des paquets sur une connection réseau." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], "metadata": { "kernelspec": { "display_name": "Python 3", @@ -16,10 +2024,9 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.3" + "version": "3.6.4" } }, "nbformat": 4, "nbformat_minor": 2 } - diff --git a/module3/exo3/liglab.log b/module3/exo3/liglab.log new file mode 100644 index 0000000..96e1325 --- /dev/null +++ b/module3/exo3/liglab.log @@ -0,0 +1,44413 @@ +[1421761682.052172] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421761682.277315] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421761682.502054] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421761682.729257] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421761682.934648] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761683.160397] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421761683.443055] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.7 ms +[1421761683.672157] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421761683.899933] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421761684.122687] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421761684.344135] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421761684.566271] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421761684.770828] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421761684.998504] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421761685.205172] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.45 ms +[1421761685.414106] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.85 ms +[1421761685.620117] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761685.824949] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761686.029177] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421761686.234464] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421761686.438772] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761686.643208] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761686.848323] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421761687.053400] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761687.257704] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761687.463275] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761687.668423] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761687.874230] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761688.078667] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761688.283655] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761688.488688] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421761688.694652] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421761688.899867] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421761689.104455] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761689.309556] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761689.514744] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761689.719832] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761689.924690] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761690.129358] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761690.335289] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421761690.539871] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761690.744599] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421761690.950126] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421761691.154491] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761691.359824] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421761691.564541] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761691.769042] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761691.974735] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421761692.179329] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421761692.385087] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761692.590174] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761692.796199] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761693.001785] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421761693.206838] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761693.412630] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421761693.617385] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761693.822314] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761694.026605] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761694.231410] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761694.437334] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421761694.642193] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761694.847858] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421761695.052302] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761695.257005] 512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761695.461769] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761695.666562] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761695.871355] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761696.075667] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761696.280338] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761696.485200] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421761696.690050] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761696.894632] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761697.100078] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421761697.304909] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761697.509838] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761697.714894] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761697.920064] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761698.125197] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761698.331417] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761698.536727] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421761698.742762] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421761698.947941] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421761699.155385] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761699.359987] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761699.565169] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761699.770438] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761699.982619] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.42 ms +[1421761700.188009] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761700.392946] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761700.598661] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761700.803687] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761701.008266] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421761701.213666] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761701.419059] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761701.623733] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761701.829634] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761702.035954] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421761702.240981] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761702.446091] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761702.650918] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761702.855846] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761703.061669] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761703.268273] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761703.474617] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421761703.680266] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761703.885115] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761704.091277] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421761704.296808] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761704.503007] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421761704.707934] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761704.912619] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761705.117528] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761705.323251] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761705.529295] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421761705.735273] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761705.941534] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761706.146320] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421761706.351121] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761706.556586] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421761706.761920] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761706.966750] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761707.172027] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761707.377527] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421761707.582574] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421761707.788031] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421761707.992751] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761708.197163] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421761708.402183] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421761708.607134] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761708.812241] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761709.016955] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421761709.225273] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.43 ms +[1421761709.430411] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761709.635543] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421761709.840290] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761710.046390] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421761710.251601] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761710.457126] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421761710.662268] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761710.867782] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761711.073227] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761711.279403] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761711.484182] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761711.688760] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761711.894860] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421761712.099849] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761712.305514] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761712.510874] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421761712.716494] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761712.921543] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761713.126565] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761713.331767] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421761713.537871] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761713.743928] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421761713.948627] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761714.153575] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761714.359544] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421761714.564865] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761714.770326] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421761714.975586] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761715.180823] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761715.385814] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761715.591089] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761715.796202] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761716.000492] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761716.205696] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761716.411835] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421761716.617739] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421761716.823266] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421761717.028586] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761717.233891] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761717.438906] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421761717.645537] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421761717.850789] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761718.056229] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421761718.260980] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761718.466891] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761718.671777] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761718.876946] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761719.082422] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761719.292131] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.98 ms +[1421761719.502305] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.18 ms +[1421761719.734514] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.2 ms +[1421761719.982146] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.0 ms +[1421761720.200177] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421761720.421753] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421761720.652041] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.3 ms +[1421761720.874167] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421761721.096519] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421761721.322726] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421761721.606876] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.2 ms +[1421761721.824601] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421761722.104619] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.0 ms +[1421761722.331740] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421761722.584391] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.5 ms +[1421761722.789322] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761722.994312] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761723.199120] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761723.407829] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.81 ms +[1421761723.618538] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.17 ms +[1421761723.833136] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421761724.047823] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421761724.268097] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421761724.489741] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421761724.717047] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421761724.941489] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421761725.226425] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.0 ms +[1421761725.444491] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.1 ms +[1421761725.702386] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=54.0 ms +[1421761725.972423] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=66.0 ms +[1421761726.193757] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421761726.409496] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.0 ms +[1421761726.690815] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.5 ms +[1421761726.896057] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761727.101952] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761727.308555] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421761727.513751] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761727.721169] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.60 ms +[1421761727.927251] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421761728.132460] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421761728.340179] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.93 ms +[1421761728.551046] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.71 ms +[1421761728.763466] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.64 ms +[1421761728.982393] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421761729.234814] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.9 ms +[1421761729.453893] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421761729.734276] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.7 ms +[1421761730.015486] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.3 ms +[1421761730.238203] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421761730.462232] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421761730.747962] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.0 ms +[1421761730.962467] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421761731.192213] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421761731.421581] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.4 ms +[1421761731.637458] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.7 ms +[1421761731.860904] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421761732.086337] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421761732.291315] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761732.497027] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761732.702007] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761732.916108] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421761733.128032] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.17 ms +[1421761733.342753] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421761733.563241] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421761733.830290] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=63.1 ms +[1421761734.108867] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.7 ms +[1421761734.334379] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421761734.621139] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.7 ms +[1421761734.907312] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.1 ms +[1421761735.194861] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.8 ms +[1421761735.474599] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.1 ms +[1421761735.700996] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421761735.916686] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421761736.121792] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761736.327584] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421761736.532650] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761736.738710] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761736.944881] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421761737.151450] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421761737.357458] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761737.562533] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761737.768716] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761737.973554] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761738.178555] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761738.383386] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761738.588769] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761738.793558] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761738.998791] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761739.204364] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761739.411516] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.98 ms +[1421761739.616669] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421761739.822160] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761740.027560] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421761740.232677] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761740.438670] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761740.644356] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761740.849692] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761741.054738] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761741.260662] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421761741.466845] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421761741.672831] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421761741.877992] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761742.082998] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761742.288937] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421761742.493798] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761742.698623] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761742.903576] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761743.108921] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761743.315210] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421761743.520344] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761743.724987] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761743.929396] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761744.135130] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761744.339939] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761744.545030] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761744.750195] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421761744.955378] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761745.160292] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421761745.365214] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421761745.569861] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761745.775325] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761745.980164] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761746.184966] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761746.390275] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761746.595685] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761746.800661] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761747.006721] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761747.211824] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761747.416738] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761747.621724] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761747.827007] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421761748.032090] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761748.238199] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761748.443331] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761748.647974] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421761748.853401] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761749.058661] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421761749.263828] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761749.469199] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761749.674684] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761749.880164] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761750.085143] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761750.291760] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761750.497247] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761750.702363] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761750.907597] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761751.114018] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761751.318876] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761751.523732] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761751.728830] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761751.933947] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761752.139494] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761752.344950] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761752.551285] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421761752.756540] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761752.962439] 1880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761753.167347] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761753.373040] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421761753.578274] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421761753.783696] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761753.990161] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761754.197340] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.41 ms +[1421761754.402561] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761754.608098] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421761754.813211] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421761755.018185] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761755.223174] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761755.428435] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421761755.633237] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761755.839557] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421761756.045044] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761756.250234] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761756.455532] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421761756.662528] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.91 ms +[1421761756.868299] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761757.073743] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761757.280278] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421761757.485259] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761757.691814] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421761757.896690] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761758.103162] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421761758.308834] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421761758.515496] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421761758.720904] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761758.927293] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421761759.131814] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761759.336333] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761759.541249] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761759.746723] 1417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761759.951889] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761760.157894] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761760.362784] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761760.567872] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761760.772506] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761760.977430] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761761.182435] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761761.387402] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761761.592982] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761761.797972] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761762.002248] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421761762.207118] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421761762.413080] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421761762.619187] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421761762.825775] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761763.031502] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421761763.237767] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761763.443321] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421761763.649023] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761763.853971] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421761764.059647] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421761764.265043] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421761764.471659] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.16 ms +[1421761764.677888] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421761764.884288] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761765.090480] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761765.295486] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761765.500817] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761765.706232] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421761765.911043] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761766.115691] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761766.320793] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761766.527190] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421761766.732873] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421761766.939411] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421761767.144687] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761767.349779] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761767.555079] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761767.760324] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761767.965096] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761768.170067] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761768.375391] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761768.580415] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421761768.785638] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421761768.992220] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421761769.197903] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761769.403117] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421761769.608772] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421761769.813931] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761770.018687] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761770.223470] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761770.428906] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761770.634726] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761770.839236] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761771.044838] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421761771.250207] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761771.456712] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421761771.661122] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761771.867075] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421761772.072901] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421761772.277974] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761772.484210] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421761772.689007] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761772.894574] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421761773.100667] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761773.305832] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761773.511715] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761773.716729] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761773.922649] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421761774.128969] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421761774.334070] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761774.540041] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761774.745208] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761774.950235] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761775.155925] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421761775.361522] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421761775.566847] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421761775.772195] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761775.977277] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761776.183369] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421761776.388533] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761776.595000] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421761776.800119] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421761777.005017] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761777.209733] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761777.415245] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421761777.620703] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421761777.826314] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761778.031543] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761778.236574] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761778.441659] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761778.646764] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761778.852661] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761779.057385] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761779.262988] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421761779.467798] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761779.672824] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761779.878318] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761780.083469] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761780.288871] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421761780.494783] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761780.701590] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421761780.906517] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761781.111407] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761781.317633] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421761781.523891] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761781.728446] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421761781.932871] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421761782.137599] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761782.343227] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761782.549491] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761782.754959] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761782.959771] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421761783.164728] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421761783.369648] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761783.575320] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761783.780435] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761783.985400] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761784.191179] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421761784.397342] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421761784.602093] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761784.807184] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761785.013444] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761785.218915] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421761785.423781] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761785.628502] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761785.833400] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421761786.038145] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761786.242957] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761786.448989] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421761786.654189] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761786.859823] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761787.064776] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761787.270397] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761787.475176] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761787.680573] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761787.885982] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761788.090842] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761788.295851] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761788.500516] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421761788.706862] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421761788.912441] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761789.117809] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421761789.322719] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761789.528174] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761789.733415] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421761789.938566] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761790.144331] 1566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421761790.349327] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761790.555248] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421761790.761047] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421761790.966761] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761791.172649] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761791.377724] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761791.583865] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761791.789089] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761791.994651] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761792.200055] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761792.405255] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761792.610795] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761792.816014] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761793.020799] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761793.226483] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761793.431210] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761793.635938] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761793.840839] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761794.045282] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421761794.250251] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761794.455311] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761794.660294] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421761794.865385] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761795.071451] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761795.276134] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761795.480913] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761795.687483] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421761795.893567] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421761796.098215] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761796.302759] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761796.508776] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421761796.713630] 1026 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761796.918336] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421761797.124123] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761797.328933] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761797.535318] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761797.740545] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421761797.945721] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761798.150316] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421761798.355908] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761798.560724] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761798.765684] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761798.970332] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761799.174943] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761799.379490] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761799.584790] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421761799.789982] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761799.994958] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761800.200235] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761800.405270] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761800.611149] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421761800.816371] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761801.021483] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761801.226597] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761801.431378] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761801.635988] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761801.841231] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761802.046361] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761802.251195] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761802.456777] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421761802.661699] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761802.866616] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761803.072480] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421761803.277661] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761803.483915] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421761803.689859] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761803.895512] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761804.100486] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761804.305285] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761804.510123] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761804.715708] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761804.920601] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761805.126314] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761805.331125] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421761805.536822] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761805.743224] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761805.948655] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421761806.153817] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761806.358293] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761806.564780] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421761806.770912] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421761806.975360] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421761807.181577] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421761807.386244] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761807.591299] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421761807.797420] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421761808.002355] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421761808.207450] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761808.412419] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761808.617199] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761808.824843] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.38 ms +[1421761809.034632] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.53 ms +[1421761809.239423] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761809.444291] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761809.657915] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421761809.866912] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.97 ms +[1421761810.081539] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421761810.300129] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421761810.516136] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421761810.791066] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.8 ms +[1421761811.018013] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421761811.294795] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.1 ms +[1421761811.517563] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421761811.743160] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421761811.972091] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.5 ms +[1421761812.177174] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761812.383396] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421761812.588674] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761812.793595] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761812.998224] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761813.203906] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421761813.409295] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421761813.614916] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421761813.819382] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761814.024081] 1075 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421761814.229814] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761814.434724] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761814.639411] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761814.844586] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761815.049767] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761815.255943] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421761815.461405] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421761815.668206] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.76 ms +[1421761815.873618] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761816.079690] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421761816.284774] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761816.489540] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761816.694008] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761816.899193] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421761817.104346] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761817.308839] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421761817.513563] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761817.718385] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761817.924196] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421761818.129164] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421761818.333889] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761818.539354] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761818.744810] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761818.949696] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761819.155722] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761819.360595] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761819.565841] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761819.771116] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761819.975676] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421761820.180474] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421761820.385813] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761820.590414] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421761820.795432] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761821.001136] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421761821.205958] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761821.410556] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761821.615658] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761821.820569] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761822.025360] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761822.230386] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761822.435414] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761822.639932] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761822.845829] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421761823.050883] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761823.257350] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.77 ms +[1421761823.462300] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761823.667424] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761823.872494] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761824.077149] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761824.282130] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761824.487394] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421761824.699493] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.30 ms +[1421761824.904158] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761825.108636] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761825.313458] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761825.519692] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421761825.724842] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761825.929664] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761826.134484] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761826.340116] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761826.545134] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761826.750888] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421761826.957484] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421761827.163625] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421761827.368680] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761827.574452] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421761827.779545] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761827.984543] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761828.189660] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761828.396032] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421761828.601028] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761828.806560] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761829.011934] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761829.217533] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421761829.424272] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421761829.629371] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761829.834222] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761830.039982] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421761830.244855] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761830.449591] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761830.654677] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761830.859910] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761831.064604] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421761831.270104] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421761831.475258] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761831.681441] 1482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761831.887155] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421761832.091424] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761832.295959] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761832.501864] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421761832.708208] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421761832.913234] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761833.119135] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421761833.324433] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761833.529989] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761833.735180] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761833.940507] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761834.146231] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761834.350819] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761834.556072] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421761834.762340] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761834.967305] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761835.172272] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761835.378292] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421761835.582974] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761835.789251] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421761835.994500] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761836.199954] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761836.404940] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761836.611430] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421761836.817126] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761837.022478] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421761837.228354] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421761837.433450] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761837.638700] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761837.845360] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.83 ms +[1421761838.049952] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761838.254810] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761838.460515] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421761838.665189] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421761838.869778] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761839.075686] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421761839.280428] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761839.485826] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761839.692090] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761839.897160] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761840.102506] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761840.307073] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761840.513106] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421761840.722705] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.17 ms +[1421761840.928085] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761841.132927] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761841.338920] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421761841.543994] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761841.749135] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761841.955028] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421761842.159941] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761842.364367] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761842.569512] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761842.774473] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761842.980543] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421761843.185468] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761843.390903] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761843.596743] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761843.802097] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761844.007156] 1075 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761844.213205] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421761844.418068] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761844.624091] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761844.829358] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761845.034406] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421761845.240024] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761845.444920] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761845.649910] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761845.854989] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761846.061193] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761846.267146] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761846.472400] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761846.678331] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421761846.884510] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421761847.089211] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761847.294463] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421761847.499752] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421761847.705821] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761847.910455] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761848.115252] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761848.319887] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761848.524473] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761848.729178] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761848.934299] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761849.139691] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421761849.345793] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421761849.550908] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761849.756392] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421761849.961797] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421761850.166932] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761850.371560] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761850.576919] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421761850.782244] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761850.987400] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761851.193890] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421761851.399298] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421761851.604815] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761851.809880] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761852.016355] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421761852.221485] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761852.426411] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761852.631240] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761852.837728] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421761853.043056] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421761853.248622] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761853.453393] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761853.658317] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761853.863021] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421761854.067377] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761854.272987] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761854.478407] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761854.683611] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761854.888415] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761855.094344] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421761855.298681] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421761855.503507] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761855.708252] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761855.914012] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761856.119477] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761856.324789] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421761856.531333] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421761856.736955] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421761856.941830] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761857.146581] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761857.351744] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761857.556661] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761857.762898] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421761857.968404] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761858.174814] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761858.379632] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761858.584439] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761858.789243] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761858.994650] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761859.199610] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421761859.404925] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761859.610225] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761859.815705] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761860.020883] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761860.225875] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761860.431136] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761860.636804] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421761860.841736] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761861.047983] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761861.253527] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761861.459423] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421761861.664498] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761861.870478] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421761862.075602] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761862.280727] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421761862.486032] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761862.691120] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421761862.896319] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761863.101164] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761863.306417] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421761863.511878] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761863.717303] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761863.922877] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421761864.128711] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421761864.333574] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761864.539254] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761864.743952] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761864.949385] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761865.154337] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761865.360333] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421761865.565375] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761865.771492] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761865.977173] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761866.182295] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421761866.387107] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421761866.592694] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421761866.798014] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761867.003050] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761867.208011] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761867.413121] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421761867.619448] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761867.824407] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761868.030631] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421761868.236420] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421761868.441290] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761868.646147] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761868.852022] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421761869.057150] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761869.262251] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761869.468307] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421761869.674883] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421761869.881530] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421761870.086242] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761870.291480] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761870.496681] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761870.702208] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761870.908776] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761871.114304] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761871.319856] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761871.526403] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421761871.732022] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421761871.936718] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761872.141608] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761872.346811] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761872.553233] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421761872.759748] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761872.965236] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761873.170152] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761873.374727] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761873.580234] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761873.785373] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761873.990528] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421761874.195579] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761874.400818] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421761874.606451] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761874.812346] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421761875.017294] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761875.222509] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761875.427727] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761875.633491] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761875.839788] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421761876.045109] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421761876.251308] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421761876.456928] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421761876.662888] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761876.868417] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761877.073169] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421761877.278482] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421761877.484483] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761877.689733] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421761877.894962] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421761878.099787] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761878.304265] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421761878.509339] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761878.714632] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761878.919363] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761879.124141] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761879.328560] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761879.533887] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421761879.739399] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761879.944362] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761880.149607] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761880.354376] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761880.559503] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761880.764220] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421761880.968978] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761881.173906] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761881.384150] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.65 ms +[1421761881.596103] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.01 ms +[1421761881.802369] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761882.007740] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761882.213252] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761882.418307] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761882.623759] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761882.830197] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761883.035445] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761883.240046] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761883.445370] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421761883.651563] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761883.856714] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761884.061903] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761884.267660] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421761884.472847] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761884.678746] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421761884.883992] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761885.088761] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761885.293718] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761885.498926] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761885.704670] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421761885.909203] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761886.114320] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761886.319148] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761886.524176] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761886.729611] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421761886.935353] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421761887.140562] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761887.346231] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421761887.551338] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761887.756387] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421761887.962754] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421761888.167792] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421761888.372632] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761888.577846] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761888.783380] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761888.989913] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421761889.195616] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421761889.400423] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761889.606504] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421761889.813005] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421761890.017739] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421761890.222631] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761890.427895] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761890.633873] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761890.840111] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421761891.045234] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421761891.250312] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761891.455948] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421761891.661083] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761891.866486] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761892.071930] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761892.277699] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761892.482290] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761892.688385] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761892.893377] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761893.098246] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761893.303165] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761893.508855] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421761893.714343] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761893.919653] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421761894.124842] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761894.329550] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761894.534261] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761894.739556] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761894.945371] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421761895.150995] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421761895.355920] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761895.562118] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761895.766871] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421761895.973204] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421761896.177800] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761896.382475] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421761896.588580] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421761896.793883] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761896.999618] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421761897.205681] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761897.432582] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421761897.651352] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421761897.856700] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761898.062612] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761898.267486] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761898.472691] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761898.677809] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421761898.882503] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761899.088080] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421761899.293205] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761899.498433] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421761899.704907] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421761899.909453] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761900.114574] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761900.319241] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761900.524026] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761900.728885] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761900.933476] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761901.138278] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761901.344088] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421761901.549166] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421761901.753731] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761901.958278] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761902.163201] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761902.368613] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421761902.573224] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761902.779053] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421761902.983974] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761903.188784] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761903.393164] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761903.598198] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761903.803088] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761904.007953] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761904.212787] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761904.417363] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761904.623082] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761904.828294] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761905.032984] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761905.237791] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761905.441960] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761905.646604] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761905.851634] 1063 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761906.055934] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761906.261008] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761906.465886] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761906.670818] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761906.875172] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761907.079873] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761907.284259] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761907.488905] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761907.694059] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421761907.898600] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421761908.104059] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421761908.308693] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761908.512826] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421761908.717480] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421761908.922526] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761909.127715] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761909.333765] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421761909.538765] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761909.743247] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761909.947532] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761910.152483] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761910.357672] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421761910.563519] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421761910.769505] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761910.975116] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761911.179479] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761911.385010] 1670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421761911.591433] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421761911.796520] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761912.001193] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761912.206133] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761912.411525] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761912.616525] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761912.821366] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761913.026822] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421761913.231547] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761913.436042] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761913.640524] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761913.845947] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421761914.050275] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421761914.256038] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761914.460577] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421761914.665207] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761914.869587] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761915.073955] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761915.278953] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761915.484349] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761915.689512] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761915.894239] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761916.099071] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761916.303864] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761916.508636] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761916.713419] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421761916.918271] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761917.124548] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761917.329332] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761917.534701] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421761917.739472] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761917.944461] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761918.149237] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761918.355208] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421761918.560335] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761918.764942] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761918.969432] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761919.174103] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761919.379819] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421761919.585296] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421761919.790353] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761919.996395] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421761920.201032] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761920.406819] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421761920.612865] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421761920.818732] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761921.025124] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421761921.229704] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421761921.434815] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761921.640038] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761921.844985] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761922.051258] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421761922.256695] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761922.461813] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761922.667300] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421761922.872790] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761923.078019] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761923.283136] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761923.488056] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761923.694391] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761923.899707] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761924.105293] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761924.311223] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421761924.517153] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761924.723539] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761924.929750] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761925.135889] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421761925.340351] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761925.545256] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421761925.750284] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761925.955401] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761926.160747] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761926.366326] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761926.571793] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761926.777070] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421761926.983156] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421761927.188052] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761927.394020] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761927.600037] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761927.805284] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761928.011627] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421761928.217012] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761928.422371] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761928.627965] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761928.832878] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761929.038682] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421761929.243597] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421761929.449421] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761929.654720] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761929.859863] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761930.065762] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421761930.270984] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761930.475911] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761930.680795] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761930.885716] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761931.091549] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761931.298195] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421761931.503536] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761931.709943] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421761931.916396] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761932.123201] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421761932.329588] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761932.534995] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761932.740458] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421761932.946210] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761933.152367] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421761933.357069] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761933.561909] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761933.767344] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761933.972739] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761934.177810] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421761934.383793] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761934.589391] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761934.795827] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761935.001458] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421761935.207047] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421761935.411429] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761935.617651] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761935.822057] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421761936.026955] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761936.232992] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761936.438892] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421761936.643856] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421761936.850000] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.85 ms +[1421761937.054659] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761937.260349] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761937.465421] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761937.670389] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761937.875439] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761938.080797] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761938.285514] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761938.490564] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761938.696734] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761938.901754] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761939.106431] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761939.311386] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761939.517271] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421761939.722426] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761939.927985] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761940.133080] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761940.337929] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761940.545784] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.66 ms +[1421761940.751755] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421761940.956969] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761941.162559] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421761941.372863] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.21 ms +[1421761941.607308] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.6 ms +[1421761941.857048] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.7 ms +[1421761942.083925] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421761942.301573] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421761942.517785] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421761942.801648] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.8 ms +[1421761943.051136] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.8 ms +[1421761943.277015] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421761943.483086] 1913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761943.687712] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761943.892404] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761944.097464] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761944.302224] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761944.506761] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761944.712741] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421761944.918430] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761945.123567] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421761945.328144] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761945.532831] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761945.737910] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761945.943419] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421761946.148680] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761946.353555] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761946.559788] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761946.764711] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421761946.970705] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421761947.175133] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761947.383027] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.52 ms +[1421761947.591771] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.18 ms +[1421761947.803406] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.89 ms +[1421761948.020647] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421761948.268582] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.1 ms +[1421761948.485946] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421761948.762674] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.6 ms +[1421761948.989691] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421761949.215868] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421761949.421019] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761949.625855] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761949.831253] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761950.040615] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.31 ms +[1421761950.253191] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.59 ms +[1421761950.469040] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421761950.674131] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761950.880235] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421761951.084873] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761951.289604] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761951.493890] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761951.698833] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761951.904319] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421761952.109080] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761952.314048] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761952.519307] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761952.725550] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761952.930652] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761953.135586] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761953.340965] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761953.546972] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421761953.751842] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421761953.956851] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761954.162165] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421761954.366416] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761954.570928] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761954.776431] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421761954.982375] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421761955.187535] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421761955.392767] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761955.598326] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761955.804664] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421761956.010514] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421761956.216394] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421761956.421228] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761956.626941] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421761956.831974] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761957.037014] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761957.242931] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761957.450505] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421761957.657430] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421761957.863118] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421761958.068283] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761958.273096] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761958.478090] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761958.683441] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421761958.888926] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761959.093848] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761959.298294] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761959.504192] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421761959.709221] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761959.914697] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761960.119793] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761960.325181] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761960.530658] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761960.736302] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761960.942875] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761961.148833] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761961.354052] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761961.558908] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761961.764592] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761961.969688] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421761962.174859] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421761962.379633] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761962.584487] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761962.789989] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421761962.995125] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761963.199905] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761963.405460] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761963.610175] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761963.815174] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761964.020543] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761964.225546] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761964.429891] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761964.635757] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421761964.841523] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761965.046615] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761965.251922] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761965.457566] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761965.662513] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761965.867307] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761966.072252] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761966.276691] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761966.482411] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421761966.688430] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421761966.893809] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761967.098745] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761967.303327] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761967.508389] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761967.713823] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761967.919141] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761968.124164] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761968.329257] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761968.534165] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761968.739098] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761968.944029] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761969.149358] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761969.355207] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421761969.560509] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421761969.766841] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761969.973089] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421761970.178516] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761970.383571] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761970.589177] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761970.794437] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761970.999387] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761971.204259] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761971.409845] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421761971.614621] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761971.819524] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761972.024066] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761972.229412] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761972.435930] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421761972.641311] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761972.846659] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761973.051066] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761973.257152] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421761973.462382] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421761973.667464] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761973.872750] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421761974.079291] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421761974.284374] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761974.489562] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761974.694338] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761974.900241] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421761975.105247] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761975.310252] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761975.516630] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421761975.721639] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761975.927209] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761976.133908] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761976.339077] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761976.543673] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761976.749881] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421761976.954680] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761977.159765] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761977.364422] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761977.569195] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761977.774036] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761977.979116] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761978.184193] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761978.389288] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761978.594835] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761978.801088] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421761979.006481] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761979.212310] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761979.417509] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761979.622648] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761979.827748] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761980.032082] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761980.236780] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761980.442585] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761980.647856] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761980.852907] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761981.057102] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421761981.262015] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761981.467159] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761981.672138] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761981.877470] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761982.081986] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761982.287086] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761982.492162] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761982.698023] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761982.902976] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761983.109052] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761983.315030] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761983.520285] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761983.725375] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761983.930577] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761984.135430] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761984.340663] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421761984.547438] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421761984.753088] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421761984.958494] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761985.164335] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421761985.370026] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421761985.574857] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761985.780105] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761985.986031] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761986.190850] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761986.395550] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761986.600817] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761986.806374] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761987.011802] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761987.216747] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761987.421638] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761987.626711] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761987.831861] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761988.038357] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421761988.243446] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761988.448054] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761988.652610] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761988.857511] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761989.062302] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761989.267534] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761989.472598] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761989.677239] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761989.882861] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761990.087491] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761990.292545] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421761990.498300] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761990.703643] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421761990.909415] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761991.114032] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761991.318810] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761991.523406] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421761991.727745] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421761991.932563] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761992.138404] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421761992.343642] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761992.549814] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761992.755478] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761992.960655] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761993.165496] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761993.370224] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761993.574747] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761993.779410] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761993.985123] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421761994.190016] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761994.394707] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761994.599352] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761994.803912] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761995.008743] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421761995.213903] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761995.419075] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761995.624171] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421761995.830985] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761996.036363] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761996.245158] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.11 ms +[1421761996.454922] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.38 ms +[1421761996.660765] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421761996.865701] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761997.070574] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.03 ms +[1421761997.275973] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761997.480850] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421761997.687431] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421761997.893474] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421761998.098857] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761998.304482] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761998.509767] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761998.715572] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761998.920592] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421761999.128086] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.71 ms +[1421761999.333157] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761999.538085] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761999.742965] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761999.947728] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762000.152896] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762000.357243] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762000.562983] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762000.768130] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762000.974472] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762001.179757] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762001.385019] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762001.590195] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762001.795176] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762001.999937] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762002.204951] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762002.410058] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762002.615709] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762002.820971] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762003.026451] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762003.231917] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762003.436765] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762003.641054] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762003.846467] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762004.051669] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762004.256499] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762004.461804] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762004.667402] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421762004.872353] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762005.076593] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762005.281260] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762005.485864] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762005.690509] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762005.895056] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762006.099591] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762006.304018] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762006.509020] 296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762006.714475] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421762006.920800] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762007.125161] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762007.329757] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762007.534828] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762007.740009] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762007.945946] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762008.150804] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762008.355406] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762008.560302] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762008.765844] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762008.970925] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762009.175770] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762009.380739] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762009.586332] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762009.791074] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762009.996064] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762010.202127] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762010.407212] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762010.612255] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762010.818673] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421762011.024837] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762011.230331] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762011.436333] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762011.643151] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762011.848833] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762012.054343] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762012.259900] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762012.465133] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421762012.670966] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762012.876399] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762013.082735] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762013.288244] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762013.493882] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762013.700077] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762013.905444] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762014.110986] 1186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421762014.316047] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762014.522261] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762014.728790] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762014.933934] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762015.138904] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762015.344978] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762015.550106] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762015.755434] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762015.960067] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762016.164899] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762016.371031] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762016.577015] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762016.782176] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762016.988488] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762017.195162] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762017.400153] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762017.605952] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762017.810811] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762018.017110] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.88 ms +[1421762018.222411] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762018.428462] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762018.633488] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762018.839228] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762019.045804] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421762019.250267] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762019.455784] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762019.661040] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762019.866407] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762020.071585] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762020.276981] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762020.482106] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762020.688148] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762020.893804] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762021.099061] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762021.303890] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762021.509198] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762021.714603] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762021.919722] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762022.125218] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762022.330574] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762022.535527] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762022.741668] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762022.947207] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762023.152582] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762023.357431] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762023.562813] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762023.767569] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762023.973405] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762024.178495] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762024.383668] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762024.588969] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762024.793501] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762024.998759] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762025.204680] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762025.410977] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762025.616188] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762025.822217] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762026.028010] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762026.233622] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762026.439718] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762026.645635] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421762026.851257] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762027.056124] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762027.261150] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762027.467724] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421762027.674156] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762027.880524] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762028.086715] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762028.292754] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421762028.498439] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762028.704057] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762028.910714] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762029.115998] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762029.321540] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762029.527198] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762029.732271] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762029.937555] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762030.143156] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762030.348735] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762030.555051] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762030.760283] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762030.966754] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762031.172973] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762031.378071] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762031.583562] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762031.788949] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762031.994279] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762032.199394] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762032.404166] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762032.610123] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762032.815417] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762033.020880] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421762033.225693] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762033.431470] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762033.636496] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762033.842597] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762034.048789] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762034.254228] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762034.459340] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762034.664610] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421762034.869721] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762035.074752] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762035.279682] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762035.485331] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762035.690286] 1148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762035.895226] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762036.099656] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762036.304419] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762036.509402] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762036.714861] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421762036.921222] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762037.127344] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762037.332330] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762037.537644] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762037.743126] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762037.947760] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762038.153093] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762038.359650] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762038.566088] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762038.771125] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762038.976951] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762039.182563] 841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762039.388538] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762039.593482] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762039.798686] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762040.003685] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762040.208407] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762040.413082] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762040.618262] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762040.823665] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762041.029647] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762041.234845] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762041.439693] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762041.644349] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762041.849662] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762042.054694] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762042.259819] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762042.465048] 161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762042.670405] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762042.876086] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762043.081776] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762043.288413] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762043.493749] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762043.699220] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762043.905636] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762044.110631] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762044.316221] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421762044.521079] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762044.727069] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762044.932552] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762045.138515] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762045.344684] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762045.549896] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762045.754809] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762045.960333] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762046.165881] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762046.370940] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762046.575669] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762046.781693] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421762046.987165] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762047.192535] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762047.397821] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762047.603243] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762047.809743] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762048.014926] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762048.219509] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762048.425539] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762048.631712] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421762048.836847] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762049.042499] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762049.248140] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762049.453193] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762049.658296] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762049.865657] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.23 ms +[1421762050.071911] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762050.276950] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762050.481648] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762050.687709] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421762050.893961] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762051.099397] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762051.304448] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762051.509858] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762051.714785] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762051.919993] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762052.125175] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762052.329772] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762052.535599] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762052.740197] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762052.945076] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762053.150153] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762053.355619] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421762053.561987] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762053.767718] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762053.972584] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762054.177274] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762054.383170] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762054.587705] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762054.793417] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762054.999105] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762055.205251] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762055.410369] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762055.615217] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762055.821488] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762056.026815] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762056.232196] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762056.438312] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762056.644130] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762056.849675] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762057.055064] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762057.259967] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762057.465002] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762057.671623] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762057.877183] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421762058.082272] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421762058.287299] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421762058.492443] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762058.699048] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421762058.903966] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762059.108551] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762059.314394] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762059.520097] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421762059.725675] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762059.930405] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762060.136264] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762060.341209] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421762060.545659] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762060.750921] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762060.956087] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762061.160973] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762061.366977] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762061.573084] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762061.781350] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.72 ms +[1421762061.993045] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.93 ms +[1421762062.208634] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421762062.424674] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.7 ms +[1421762062.640829] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421762062.913994] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.3 ms +[1421762063.145771] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.9 ms +[1421762063.370243] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421762063.591730] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421762063.816909] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421762064.021422] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762064.227295] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762064.432132] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762064.637606] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762064.846239] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.92 ms +[1421762065.057950] 1133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.73 ms +[1421762065.275675] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421762065.491599] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421762065.756253] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.6 ms +[1421762065.979767] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421762066.205355] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421762066.437547] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.7 ms +[1421762066.659368] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421762066.884297] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421762067.103809] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421762067.308623] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762067.513783] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762067.718708] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762067.923078] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762068.128850] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762068.334984] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762068.539974] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762068.746100] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421762068.953330] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.76 ms +[1421762069.181690] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421762069.397246] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421762069.613291] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.7 ms +[1421762069.833592] 296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421762070.114462] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.3 ms +[1421762070.338127] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421762070.564433] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421762070.769512] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762070.974306] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762071.179703] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421762071.387741] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.12 ms +[1421762071.599690] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.53 ms +[1421762071.813647] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.94 ms +[1421762072.060252] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.5 ms +[1421762072.274943] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421762072.495903] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421762072.722576] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421762072.998083] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.3 ms +[1421762073.283256] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.9 ms +[1421762073.508709] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421762073.734138] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421762073.953760] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421762074.234939] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.4 ms +[1421762074.462744] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421762074.690196] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421762074.917411] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421762075.122370] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762075.327089] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762075.531900] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762075.737765] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762075.945493] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.20 ms +[1421762076.155374] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.20 ms +[1421762076.368445] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.76 ms +[1421762076.583897] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.4 ms +[1421762076.801664] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421762077.023540] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421762077.247834] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421762077.470750] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421762077.696849] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421762077.985383] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.9 ms +[1421762078.190818] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762078.478346] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.8 ms +[1421762078.707898] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421762078.990928] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.9 ms +[1421762079.218532] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421762079.503814] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.3 ms +[1421762079.731248] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421762079.936909] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762080.142901] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762080.347800] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762080.558939] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.87 ms +[1421762080.767732] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.89 ms +[1421762080.981607] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421762081.186826] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762081.393134] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762081.598332] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421762081.803016] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762082.007826] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762082.213962] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762082.419123] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762082.624401] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762082.829218] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762083.033956] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762083.240033] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762083.444784] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762083.650310] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762083.856153] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762084.060693] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762084.266377] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762084.471304] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762084.677131] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762084.881596] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762085.086161] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762085.291168] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762085.496182] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762085.701307] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762085.906507] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762086.111170] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762086.316222] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762086.521050] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762086.725506] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762086.930206] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762087.136185] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762087.340818] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762087.546030] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762087.751130] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762087.956618] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762088.162342] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762088.369820] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762088.574950] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762088.779723] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762088.985663] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762089.190552] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762089.395269] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762089.600886] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762089.806486] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762090.011544] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762090.216301] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762090.422146] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762090.626914] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762090.832669] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762091.038531] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762091.243606] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762091.448460] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762091.653182] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762091.857931] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762092.064074] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421762092.269047] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762092.474458] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421762092.680491] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762092.886325] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762093.091384] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762093.297011] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762093.502299] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762093.707538] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762093.912602] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762094.117428] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762094.322504] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762094.528650] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762094.733794] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421762094.940093] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421762095.145338] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762095.351176] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762095.556076] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762095.762161] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762095.967326] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762096.173749] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762096.378765] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762096.583625] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762096.790246] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421762096.996228] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762097.200722] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762097.406208] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762097.612847] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762097.818641] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762098.023613] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762098.228313] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762098.432729] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421762098.637887] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762098.843345] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762099.050032] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762099.254638] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762099.460470] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762099.665672] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762099.871819] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762100.076928] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762100.281324] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421762100.486060] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762100.691164] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762100.896299] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762101.102490] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762101.307123] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762101.512629] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762101.718621] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762101.924127] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762102.130206] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762102.335760] 1888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762102.540123] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762102.745043] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762102.951011] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762103.155464] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762103.359951] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762103.564542] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762103.770670] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762103.976596] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762104.182219] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762104.386562] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762104.591302] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762104.796649] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762105.001813] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762105.206610] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762105.411206] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762105.615961] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762105.820818] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762106.025520] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762106.230137] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762106.435572] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762106.640618] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762106.846384] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762107.051083] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762107.256349] 1522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762107.462128] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762107.667091] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762107.872869] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762108.078390] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762108.284841] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762108.490494] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762108.695279] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762108.900334] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762109.105955] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762109.310678] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762109.515140] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762109.720265] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421762109.925443] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762110.130490] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762110.335051] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762110.539713] 145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762110.744552] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762110.949958] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421762111.154766] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762111.359535] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762111.565785] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762111.770916] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762111.975652] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762112.180798] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762112.385535] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762112.590328] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762112.795489] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762113.002142] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762113.207926] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421762113.413550] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762113.619272] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762113.825652] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762114.030770] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421762114.235656] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762114.441024] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762114.646180] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762114.851285] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762115.056324] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421762115.260727] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762115.465295] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762115.669921] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762115.875021] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762116.079738] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762116.285025] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762116.490974] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762116.696831] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762116.902653] 1955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762117.107450] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762117.312225] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762117.516869] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762117.721871] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762117.927964] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762118.133169] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762118.339470] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762118.545335] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421762118.750017] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762118.954739] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762119.160129] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421762119.365461] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762119.570948] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762119.775546] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762119.980378] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762120.185153] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762120.390501] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762120.596805] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762120.802116] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762121.006715] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762121.211658] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762121.416486] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762121.620858] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762121.825712] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762122.031135] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762122.236252] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762122.441389] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762122.647463] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762122.852371] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762123.056804] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762123.261579] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762123.466339] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762123.671131] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762123.875982] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762124.080447] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762124.285199] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762124.490364] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421762124.695576] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762124.901292] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421762125.106739] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762125.311750] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762125.516580] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762125.721019] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762125.925640] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762126.130117] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762126.336430] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421762126.541409] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762126.746510] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762126.951434] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762127.156112] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762127.361244] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762127.567268] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762127.772503] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762127.978173] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762128.184319] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762128.388927] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762128.593712] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762128.798664] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421762129.004455] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762129.209233] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762129.413878] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762129.618916] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762129.823728] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762130.029536] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762130.234884] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762130.440276] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762130.645916] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.07 ms +[1421762130.851635] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762131.056586] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762131.262377] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762131.468991] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421762131.675509] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421762131.881754] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762132.087178] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762132.292732] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421762132.497998] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762132.702685] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762132.907918] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762133.112923] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762133.319022] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762133.524116] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762133.729444] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762133.934334] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762134.141923] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.95 ms +[1421762134.346676] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762134.551193] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762134.756183] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762134.961087] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762135.166503] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421762135.371529] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762135.577787] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762135.784172] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421762135.989850] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762136.194639] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762136.400725] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762136.610306] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.50 ms +[1421762136.816608] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421762137.021913] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762137.227808] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762137.432443] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762137.638516] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762137.844705] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762138.049906] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762138.254650] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762138.459043] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762138.665432] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421762138.870694] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421762139.075571] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762139.280119] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762139.484919] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762139.689869] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762139.895899] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762140.101009] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762140.305678] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762140.510649] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762140.716807] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762140.923085] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762141.128190] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762141.333501] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762141.539460] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762141.744365] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762141.950045] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762142.154481] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762142.360610] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762142.565627] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762142.774898] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.70 ms +[1421762142.980857] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762143.186452] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762143.398519] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.57 ms +[1421762143.606734] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.49 ms +[1421762143.821458] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421762144.036096] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421762144.294329] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=54.6 ms +[1421762144.567612] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.5 ms +[1421762144.795717] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421762145.020207] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421762145.304170] 1503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.5 ms +[1421762145.524120] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421762145.750427] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421762145.977326] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421762146.205450] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421762146.432319] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421762146.637434] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762146.842849] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762147.050047] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.50 ms +[1421762147.271476] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421762147.483178] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.89 ms +[1421762147.701423] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421762147.956318] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.4 ms +[1421762148.174021] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421762148.448841] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.2 ms +[1421762148.732718] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.2 ms +[1421762148.962486] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421762149.189542] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421762149.394074] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762149.599991] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762149.805039] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762150.009661] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762150.214862] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762150.419750] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762150.626583] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.41 ms +[1421762150.831969] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762151.037001] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762151.243164] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421762151.449113] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762151.654709] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762151.859540] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762152.064535] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762152.270768] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762152.477023] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762152.682318] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762152.887495] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762153.092102] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762153.298214] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421762153.503176] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762153.708969] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421762153.915269] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421762154.122343] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.38 ms +[1421762154.327326] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762154.532328] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762154.737770] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762154.942970] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762155.149206] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762155.354138] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762155.559445] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762155.764871] 1451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762155.970351] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762156.176400] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762156.381995] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762156.586989] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762156.792000] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762156.997650] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762157.202805] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762157.407830] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762157.613432] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762157.818592] 1238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762158.024606] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762158.229506] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762158.434125] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762158.638992] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762158.844018] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762159.050124] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762159.255491] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762159.460098] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762159.665785] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762159.871854] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421762160.077359] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762160.282445] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762160.487423] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762160.693498] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762160.898986] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762161.104509] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762161.309370] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762161.514363] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762161.719206] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762161.925197] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762162.131356] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762162.336121] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762162.540921] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762162.745692] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762162.950037] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762163.154713] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762163.359919] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762163.564968] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762163.771056] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421762163.976187] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762164.180912] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762164.386876] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762164.591601] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762164.796372] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762165.001965] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762165.206476] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762165.410975] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762165.616785] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762165.822875] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421762166.027578] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762166.231853] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762166.437923] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762166.642957] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762166.848045] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762167.052769] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762167.258452] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762167.463350] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762167.668948] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421762167.874379] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762168.079037] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762168.283622] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762168.488592] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762168.693678] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762168.899652] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762169.104033] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762169.309193] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762169.515392] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762169.722186] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.84 ms +[1421762169.927422] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762170.132373] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762170.338079] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762170.542667] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762170.748013] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762170.953696] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762171.159758] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762171.366081] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421762171.570870] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762171.775744] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762171.981611] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762172.187957] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762172.393456] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762172.598655] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762172.803860] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762173.009001] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762173.215068] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762173.423641] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.36 ms +[1421762173.628625] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762173.834394] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762174.038988] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762174.243664] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762174.449192] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421762174.654756] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762174.860558] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762175.065923] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762175.270635] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762175.475330] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762175.679749] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762175.885855] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421762176.090818] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762176.295711] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762176.500051] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762176.704658] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762176.909696] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762177.114683] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762177.319930] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762177.525102] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762177.730259] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421762177.935209] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762178.140200] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762178.345232] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762178.550289] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762178.754947] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762178.960195] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762179.164781] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762179.370247] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762179.575951] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762179.780651] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762179.985959] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762180.191292] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421762180.397372] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421762180.603791] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762180.809120] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762181.014488] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762181.219447] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762181.424999] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762181.630317] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762181.835698] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421762182.042607] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762182.248459] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762182.453912] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762182.659361] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762182.863911] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762183.069305] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762183.275353] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762183.480500] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762183.685473] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762183.891152] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762184.095779] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421762184.301957] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762184.507697] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762184.712852] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762184.919806] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.00 ms +[1421762185.124611] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762185.329625] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762185.534906] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762185.739841] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762185.944956] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762186.150169] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762186.355169] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762186.559808] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762186.766004] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421762186.971245] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762187.175669] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762187.381011] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762187.586912] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762187.792024] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762187.996761] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762188.201981] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762188.406445] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762188.611232] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762188.815829] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762189.020341] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762189.225420] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762189.430994] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762189.636152] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762189.841333] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762190.046127] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762190.251466] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762190.457826] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762190.663191] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762190.868260] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762191.073918] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762191.278531] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762191.484829] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421762191.690525] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762191.911651] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421762192.121138] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.77 ms +[1421762192.325928] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762192.531245] 1021 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762192.736296] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762192.942314] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762193.148238] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762193.354079] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762193.559776] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762193.765661] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762193.971387] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762194.176280] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762194.381962] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762194.586942] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762194.793050] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421762194.997584] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762195.202466] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762195.408062] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762195.613245] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762195.817984] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762196.022695] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762196.227334] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762196.432986] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.93 ms +[1421762196.639338] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762196.844641] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762197.049893] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762197.254665] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762197.461364] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.31 ms +[1421762197.666319] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762197.871470] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762198.084198] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.68 ms +[1421762198.292591] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.51 ms +[1421762198.498514] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762198.703453] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762198.908492] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762199.114069] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762199.319010] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762199.524152] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762199.729955] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762199.935036] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762200.140036] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762200.344420] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762200.549142] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762200.753981] 145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762200.960519] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762201.166004] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762201.370384] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762201.575215] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762201.780268] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762201.985455] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762202.190102] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762202.395982] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762202.601170] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762202.806480] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762203.011396] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762203.216848] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762203.421622] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762203.626740] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762203.832152] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762204.037375] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762204.242645] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762204.447323] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762204.652001] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762204.856814] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762205.062648] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762205.267178] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762205.472528] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762205.677124] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762205.882099] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762206.086955] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762206.291449] 145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762206.496309] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762206.702178] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762206.907092] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762207.111479] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762207.316827] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762207.522253] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762207.728048] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762207.932968] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762208.137422] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762208.342810] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762208.548112] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762208.753428] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762208.958810] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762209.164793] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762209.369661] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762209.574177] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762209.780332] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762209.985585] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762210.190541] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762210.395478] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762210.601977] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762210.806964] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762211.012829] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762211.217744] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762211.423598] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762211.629586] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762211.834629] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762212.039448] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762212.243956] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762212.448766] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762212.653422] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762212.859299] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762213.064146] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762213.268767] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762213.474411] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762213.679662] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762213.884715] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762214.089791] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762214.295916] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421762214.501802] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762214.707667] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421762214.913503] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421762215.119258] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762215.325724] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762215.532211] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421762215.736942] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762215.941616] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762216.146741] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762216.352901] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762216.558145] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762216.763197] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762216.968328] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421762217.173428] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762217.377715] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762217.582057] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762217.787558] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762217.992543] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762218.198533] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762218.404069] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762218.609155] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762218.813872] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762219.018517] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762219.224575] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.05 ms +[1421762219.432604] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.13 ms +[1421762219.644213] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.56 ms +[1421762219.882555] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.1 ms +[1421762220.099833] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421762220.305088] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762220.510915] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762220.716010] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762220.920420] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762221.126372] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762221.331187] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762221.536470] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762221.742437] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762221.948097] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762222.153051] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762222.358173] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762222.563214] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762222.768123] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762222.973231] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762223.178142] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762223.382844] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762223.587849] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762223.793247] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762223.998774] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762224.204556] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762224.410121] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762224.614780] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762224.819535] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762225.024238] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762225.229438] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762225.435730] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762225.641033] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762225.847393] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762226.053112] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762226.258328] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762226.463577] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762226.668578] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762226.873253] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762227.077724] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762227.284027] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421762227.488574] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762227.693905] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762227.899893] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762228.104554] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762228.309919] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762228.516242] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762228.723114] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421762228.928579] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762229.133340] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762229.338706] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421762229.544121] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762229.748957] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762229.954836] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762230.160732] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762230.366406] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762230.572148] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762230.777608] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762230.984507] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762231.190902] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762231.396524] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762231.603232] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421762231.808408] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762232.012965] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762232.217920] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762232.422659] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762232.627766] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762232.832741] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762233.037976] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762233.242707] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762233.447321] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762233.652215] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762233.857260] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762234.062277] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762234.266861] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762234.471610] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762234.676651] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762234.881546] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762235.086636] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762235.291380] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762235.496268] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762235.701352] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762235.906323] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762236.112710] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762236.317451] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762236.522085] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762236.727883] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762236.933263] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762237.138235] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762237.343959] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762237.548598] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762237.753101] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762237.959284] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762238.163851] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762238.368529] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762238.575272] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421762238.781708] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762238.987268] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762239.192904] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762239.397373] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762239.601683] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762239.807021] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762240.012266] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762240.218166] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762240.423047] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762240.628027] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762240.833221] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762241.038290] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762241.243759] 1720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762241.449468] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762241.654166] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762241.859253] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762242.065064] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762242.270334] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421762242.475687] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762242.681278] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762242.887479] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762243.093272] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762243.299009] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762243.503667] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762243.709657] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762243.915968] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762244.120778] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762244.325009] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762244.531163] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762244.736307] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762244.940886] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762245.146163] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762245.350956] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762245.555404] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762245.760087] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762245.965105] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762246.169992] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762246.375265] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762246.581472] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762246.786692] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762246.992477] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421762247.197173] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762247.401800] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762247.606463] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762247.811204] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762248.017041] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762248.222531] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762248.428882] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762248.634005] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762248.839219] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762249.045508] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421762249.250413] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762249.455560] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762249.660427] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762249.866941] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421762250.072646] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762250.277567] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762250.482082] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762250.687141] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762250.893175] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762251.098276] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762251.303778] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762251.508633] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762251.713791] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762251.918414] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762252.123695] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762252.328832] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762252.534113] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421762252.739036] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762252.944317] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762253.149876] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762253.354914] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762253.560109] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762253.766002] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762253.977606] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.90 ms +[1421762254.183602] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762254.389044] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762254.594672] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762254.800574] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762255.007059] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762255.212131] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762255.417553] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421762255.623626] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762255.828669] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762256.033316] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762256.238416] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762256.443834] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762256.649842] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421762256.854607] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762257.059094] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762257.264218] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762257.468880] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762257.673992] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762257.879428] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762258.084936] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762258.289999] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762258.494984] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762258.700146] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762258.905203] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421762259.109809] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762259.314808] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762259.519672] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762259.726301] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762259.931226] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762260.136461] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762260.342405] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762260.547602] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762260.753212] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762260.958843] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762261.164014] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762261.369873] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762261.575846] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762261.780827] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762261.986348] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762262.191447] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762262.396014] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762262.601925] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421762262.807218] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421762263.012594] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762263.217604] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762263.422861] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762263.627682] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762263.834048] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762264.040385] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762264.246662] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762264.452023] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762264.657190] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762264.862958] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762265.068157] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762265.273223] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762265.478707] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762265.684510] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762265.889151] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762266.094014] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762266.299099] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762266.505095] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762266.709910] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762266.915975] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762267.121028] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762267.325910] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762267.530666] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762267.735497] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762267.940021] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762268.144926] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762268.349998] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762268.554897] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762268.759976] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762268.964477] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762269.170634] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762269.376664] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421762269.582192] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762269.788033] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762269.993578] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762270.198438] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762270.403239] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762270.609229] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762270.814366] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762271.020708] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762271.225422] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762271.430308] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762271.636830] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421762271.842152] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762272.047253] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762272.252036] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762272.456578] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762272.661115] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762272.865663] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762273.070149] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762273.274911] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762273.480854] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762273.685749] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762273.891885] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762274.096763] 825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762274.301581] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762274.506835] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762274.711502] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762274.917188] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421762275.122296] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762275.326860] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762275.531930] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762275.736861] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762275.943064] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762276.148161] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762276.354404] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421762276.559223] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762276.764248] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762276.970183] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762277.176204] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421762277.381669] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762277.587694] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762277.793265] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762278.000063] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762278.206076] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762278.411018] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762278.616298] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762278.821814] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762279.026259] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762279.231094] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762279.437418] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762279.642374] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762279.847417] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762280.052868] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762280.257871] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762280.463325] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762280.668580] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762280.875227] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762281.079875] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762281.286237] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762281.492773] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762281.697733] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762281.902754] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762282.107756] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762282.313557] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762282.520073] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762282.725340] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762282.930187] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762283.135218] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421762283.340243] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762283.544711] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762283.749347] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762283.954860] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762284.160255] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762284.366473] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762284.571928] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762284.777350] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762284.983559] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762285.189005] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421762285.394745] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762285.599342] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762285.804441] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762286.009350] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762286.214274] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762286.420073] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762286.625628] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762286.831381] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762287.035871] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762287.241181] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762287.447049] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762287.652528] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762287.857793] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762288.062316] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762288.269226] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.16 ms +[1421762288.475439] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762288.681001] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762288.887287] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762289.093609] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762289.298567] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762289.503280] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762289.709270] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762289.915718] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421762290.120827] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762290.325097] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762290.529977] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762290.734744] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762290.940591] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762291.145564] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762291.350852] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762291.556272] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762291.761724] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762291.966613] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762292.171442] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762292.376231] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762292.581292] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762292.786550] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762292.992092] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762293.198056] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762293.403104] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762293.608538] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762293.813940] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762294.018965] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762294.224003] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762294.429392] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421762294.634584] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762294.839471] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762295.044386] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762295.249398] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762295.454561] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762295.660160] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421762295.866121] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762296.071040] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762296.276486] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762296.481351] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762296.687164] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762296.892471] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762297.096961] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762297.301375] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762297.506387] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762297.712438] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762297.918220] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762298.122773] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762298.327888] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762298.532756] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762298.738032] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762298.943848] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762299.148657] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762299.353649] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762299.558672] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762299.764693] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421762299.970522] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762300.176516] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762300.381387] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762300.586795] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762300.793339] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762300.998675] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762301.203547] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762301.408445] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421762301.613183] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762301.818417] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762302.023346] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762302.228091] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762302.434416] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762302.639880] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762302.845140] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762303.050075] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762303.254968] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762303.460095] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762303.665478] 1238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762303.870979] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762304.075688] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762304.280585] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762304.485840] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762304.691678] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762304.896660] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762305.100936] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762305.307547] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421762305.512674] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762305.718538] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762305.924335] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762306.129844] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762306.334857] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762306.539797] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762306.744437] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762306.950055] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762307.155222] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762307.361894] 1932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762307.567237] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762307.773784] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762307.979309] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762308.184167] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762308.388797] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762308.593454] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762308.798159] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762309.003115] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762309.208781] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762309.413588] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762309.619018] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762309.823307] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762310.027779] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762310.232476] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762310.437902] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762310.644099] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762310.849650] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762311.054199] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762311.259620] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762311.465015] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762311.669523] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762311.874238] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762312.079791] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762312.284707] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762312.491360] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762312.696304] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762312.900878] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762313.106825] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421762313.311342] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762313.516898] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762313.722007] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762313.928145] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762314.133544] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762314.338429] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762314.543405] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762314.748354] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762314.959296] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.23 ms +[1421762315.172006] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.87 ms +[1421762315.388560] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421762315.607608] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421762315.832393] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421762316.106800] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.3 ms +[1421762316.334139] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421762316.560968] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762316.785671] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421762317.011692] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421762317.235347] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421762317.456354] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421762317.682473] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421762317.909862] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421762318.126624] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421762318.354958] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421762318.581347] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421762318.786362] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762318.992444] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762319.201848] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.57 ms +[1421762319.408739] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.15 ms +[1421762319.635159] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421762319.850194] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421762320.068285] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421762320.285471] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421762320.503126] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421762320.727895] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421762320.933279] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762321.140103] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.74 ms +[1421762321.345258] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762321.550167] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762321.755172] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762321.960174] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762322.165255] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762322.370527] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762322.575953] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762322.780786] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762322.985525] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762323.190500] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762323.396170] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762323.601143] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762323.806325] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762324.012237] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762324.217430] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762324.423292] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762324.629010] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762324.834025] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762325.038917] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762325.244038] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762325.449548] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762325.655893] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762325.861463] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762326.066337] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762326.272012] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762326.477211] 161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762326.682907] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762326.888629] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762327.093497] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762327.298421] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421762327.507917] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.11 ms +[1421762327.719239] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.22 ms +[1421762327.957371] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.5 ms +[1421762328.175827] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421762328.439306] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.8 ms +[1421762328.666101] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421762328.894121] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421762329.120741] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421762329.325876] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762329.531420] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762329.737480] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421762329.942885] 1026 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421762330.149009] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762330.353687] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762330.559043] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762330.766132] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.98 ms +[1421762330.989703] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421762331.194561] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762331.399318] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762331.604034] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762331.811401] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.66 ms +[1421762332.020974] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.12 ms +[1421762332.234357] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.91 ms +[1421762332.446643] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.77 ms +[1421762332.664430] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421762332.884531] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421762333.107483] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421762333.328208] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421762333.553923] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421762333.781499] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421762334.008154] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421762334.213845] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.95 ms +[1421762334.435263] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421762334.662304] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421762334.944833] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.9 ms +[1421762335.167109] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421762335.390924] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421762335.676865] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.1 ms +[1421762335.906287] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.3 ms +[1421762336.111664] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762336.316745] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762336.522790] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762336.728432] 1522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762336.933518] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421762337.138672] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762337.343643] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762337.548493] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762337.753002] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762337.957403] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762338.163243] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762338.372259] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.34 ms +[1421762338.584242] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.05 ms +[1421762338.803127] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421762339.009190] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762339.215109] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762339.419923] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762339.626185] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762339.832667] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762340.037260] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762340.243017] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762340.448293] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762340.653560] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762340.858372] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762341.063162] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762341.267901] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762341.473884] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762341.679083] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762341.883615] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762342.088215] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762342.293065] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762342.499080] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421762342.703802] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762342.909865] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762343.114571] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762343.319337] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762343.524086] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762343.729637] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762343.934163] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762344.139267] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762344.344615] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762344.549891] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762344.755028] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762344.960444] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762345.165668] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762345.370332] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762345.575274] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762345.780572] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762345.987040] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762346.192277] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762346.397620] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762346.602505] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762346.808406] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762347.014506] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762347.219757] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762347.425050] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762347.631303] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762347.836239] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762348.040666] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762348.246304] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762348.452573] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762348.657267] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762348.861829] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762349.068309] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421762349.273418] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762349.479808] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762349.685080] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762349.889838] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762350.095392] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762350.300643] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762350.506537] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762350.711778] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762350.917305] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762351.122936] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762351.327664] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762351.533765] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762351.738980] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762351.944401] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762352.149446] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421762352.355055] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421762352.560022] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762352.765177] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762352.969722] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762353.175795] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762353.381925] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762353.587242] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762353.794057] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.27 ms +[1421762353.999606] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762354.204840] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762354.410363] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762354.616374] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762354.821436] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762355.026941] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762355.232497] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421762355.436869] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762355.642980] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762355.847840] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762356.053014] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762356.299672] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.9 ms +[1421762356.504943] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762356.710268] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762356.915676] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421762357.121050] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762357.326560] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762357.532502] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762357.737490] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762357.942688] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762358.148349] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762358.352990] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762358.557937] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762358.762948] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762358.968503] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762359.173646] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762359.378174] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762359.583193] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762359.787904] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762359.992904] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762360.198606] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762360.403510] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762360.608267] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762360.813345] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762361.018413] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762361.223739] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421762361.428751] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762361.633770] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762361.840264] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421762362.045242] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762362.249906] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762362.454666] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762362.661126] 1984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421762362.866629] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762363.071697] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762363.276043] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762363.481870] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762363.687461] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762363.893146] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421762364.098696] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762364.321015] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421762364.527221] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762364.732291] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762364.943424] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.81 ms +[1421762365.148641] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762365.354266] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421762365.583186] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.3 ms +[1421762365.788357] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762365.993724] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762366.199655] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762366.404967] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762366.610776] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762366.850797] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.4 ms +[1421762367.064895] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421762367.269626] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762367.474964] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762367.681208] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762367.885742] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762368.090816] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762368.297256] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762368.504299] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.08 ms +[1421762368.712324] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.32 ms +[1421762368.918729] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421762369.124589] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762369.330634] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762369.535490] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762369.740243] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762369.945010] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762370.149883] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762370.372042] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421762370.576959] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762370.783074] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762370.988070] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762371.224293] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.5 ms +[1421762371.429373] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762371.634355] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762371.839098] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762372.043626] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762372.269259] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421762372.473698] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762372.687900] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421762372.892510] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762373.097066] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762373.302130] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762373.548765] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.8 ms +[1421762373.753856] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762373.959114] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762374.163693] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762374.368063] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762374.572987] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762374.777614] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762374.982671] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762375.187998] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762375.392650] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762375.597535] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762375.803548] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762376.009214] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421762376.215360] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762376.420728] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762376.625908] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762376.831807] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762377.036358] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762377.241583] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762377.446691] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762377.659961] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.25 ms +[1421762377.865239] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421762378.070478] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762378.275384] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762378.480105] 145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762378.685363] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762378.891667] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762379.097520] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762379.302899] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762379.507972] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762379.714237] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762379.919722] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762380.124693] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762380.329736] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762380.535211] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762380.740558] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762380.945665] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762381.150792] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762381.356613] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762381.562008] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762381.767286] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762381.972406] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762382.178448] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762382.382987] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762382.588209] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762382.793181] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762382.999138] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762383.203942] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762383.408594] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762383.613629] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762383.819775] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762384.025427] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762384.230498] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762384.436518] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762384.642346] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762384.848450] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762385.053921] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421762385.259310] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762385.464017] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762385.669027] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762385.874329] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762386.078984] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762386.284673] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762386.489644] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762386.694938] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762386.899857] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762387.104306] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762387.309466] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762387.514752] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762387.719816] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762387.926632] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762388.131635] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762388.336961] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762388.542000] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762388.746915] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762388.952063] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762389.158156] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762389.363073] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762389.567994] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762389.772839] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762389.978087] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762390.183025] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762390.387473] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762390.592783] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762390.798302] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762391.003917] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762391.208942] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762391.413212] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762391.618434] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762391.824556] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762392.029285] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762392.234041] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762392.438677] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762392.645241] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.98 ms +[1421762392.850356] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762393.055980] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762393.260678] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762393.465285] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762393.670194] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762393.876547] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762394.082149] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762394.287693] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762394.493586] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762394.699357] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762394.903991] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762395.108818] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762395.313777] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762395.518861] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421762395.724956] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762395.931088] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421762396.137146] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762396.342511] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762396.549265] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.81 ms +[1421762396.754636] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421762396.960211] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762397.165229] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762397.370052] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421762397.574963] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762397.780718] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762397.986947] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762398.192067] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762398.397352] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762398.602432] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762398.808923] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762399.014753] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762399.220235] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762399.425356] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762399.631054] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762399.837178] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762400.044188] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.35 ms +[1421762400.251549] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.63 ms +[1421762400.457427] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762400.662246] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762400.867020] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762401.077121] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762401.282275] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762401.487556] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762401.692295] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762401.897598] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762402.102598] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762402.307323] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762402.512266] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762402.717009] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762402.921788] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762403.128155] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421762403.333506] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762403.538624] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762403.757804] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421762403.968719] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.34 ms +[1421762404.181370] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.83 ms +[1421762404.400400] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421762404.664858] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.5 ms +[1421762404.885500] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421762405.111940] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421762405.330981] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421762405.555456] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421762405.783278] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421762406.009626] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421762406.232258] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762406.460339] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421762406.686872] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421762406.892292] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421762407.096992] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421762407.302080] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421762407.508557] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.74 ms +[1421762407.717096] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.64 ms +[1421762407.929429] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.34 ms +[1421762408.148135] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421762408.366031] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421762408.636704] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=66.8 ms +[1421762408.859721] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421762409.086049] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421762409.374094] 1529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.3 ms +[1421762409.594703] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421762409.799408] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762410.054565] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.1 ms +[1421762410.337971] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.5 ms +[1421762410.560416] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421762410.785065] 1392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421762411.068952] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.0 ms +[1421762411.292982] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421762411.497609] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762411.702684] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762411.910396] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.94 ms +[1421762412.119336] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.46 ms +[1421762412.330354] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.51 ms +[1421762412.543730] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421762412.758291] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421762412.981299] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421762413.204453] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421762413.430034] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421762413.655140] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421762413.933581] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.7 ms +[1421762414.156373] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421762414.438122] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421762414.661558] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421762414.886091] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421762415.165006] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.2 ms +[1421762415.394247] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.5 ms +[1421762415.614784] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421762415.838175] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421762416.063239] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421762416.279130] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421762416.484295] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762416.689767] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.92 ms +[1421762416.897131] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.64 ms +[1421762417.107886] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.31 ms +[1421762417.322236] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.3 ms +[1421762417.540680] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421762417.757635] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421762417.979668] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421762418.259927] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.4 ms +[1421762418.482626] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421762418.707642] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421762418.927018] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421762419.151757] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421762419.356288] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762419.580932] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421762419.866405] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.5 ms +[1421762420.151251] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.1 ms +[1421762420.379256] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421762420.601214] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421762420.824171] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421762421.029585] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762421.234902] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762421.440878] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421762421.652161] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.77 ms +[1421762421.861235] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.44 ms +[1421762422.073725] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.91 ms +[1421762422.279038] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421762422.484699] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421762422.689374] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762422.894583] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762423.101300] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421762423.307230] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762423.512481] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762423.718197] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762423.922915] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.03 ms +[1421762424.127925] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762424.364101] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.4 ms +[1421762424.569326] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762424.774435] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762424.979314] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762425.184615] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421762425.390063] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762425.595491] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762425.800210] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762426.006161] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762426.211385] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762426.416308] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762426.621203] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762426.825911] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762427.030425] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762427.236298] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421762427.441657] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421762427.647421] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421762427.852074] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762428.057511] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762428.262464] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762428.467417] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762428.672288] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762428.877024] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762429.081816] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762429.287626] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421762429.492621] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762429.699119] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421762429.904286] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762430.109737] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762430.315812] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762430.521974] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762430.727626] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762430.933026] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762431.137500] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421762431.342554] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762431.547739] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762431.753030] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762431.958687] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762432.163704] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762432.368799] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762432.574963] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762432.779990] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762432.986102] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421762433.190939] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762433.395484] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762433.600826] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421762433.805880] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421762434.011661] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421762434.217998] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762434.423299] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762434.628939] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762434.833871] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762435.039026] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762435.244904] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762435.449977] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762435.655503] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762435.860961] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762436.065374] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762436.271560] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421762436.476701] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762436.682082] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762436.887666] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762437.092825] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762437.297863] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762437.503496] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762437.708597] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762437.913550] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421762438.118098] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762438.324354] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762438.529630] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762438.734648] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762438.939647] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762439.144462] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762439.349484] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762439.554989] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762439.760321] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762439.965910] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762440.171199] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421762440.377540] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421762440.582908] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421762440.789534] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762440.995046] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762441.200846] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762441.406279] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762441.611645] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762441.817636] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762442.022179] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762442.226722] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762442.432273] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762442.638077] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762442.843425] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762443.049633] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762443.254928] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762443.461370] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421762443.666784] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762443.871799] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762444.077770] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762444.283505] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762444.488140] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762444.693405] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762444.898605] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762445.103684] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762445.308504] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762445.513192] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762445.718760] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762445.925095] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762446.130430] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762446.334810] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762446.539992] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762446.744997] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762446.950483] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762447.156110] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762447.361862] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762447.566999] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762447.771797] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762447.977884] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762448.182391] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762448.387676] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421762448.594141] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762448.800387] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762449.005281] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762449.210161] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762449.415782] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762449.620579] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762449.825868] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762450.030300] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762450.236014] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421762450.440418] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762450.646349] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762450.851977] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762451.056745] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762451.261314] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762451.465797] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762451.670972] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762451.876055] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762452.080814] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762452.285308] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762452.490237] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762452.695398] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762452.901667] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762453.106365] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762453.322440] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421762453.527602] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762453.733954] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762453.939332] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762454.145483] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762454.349940] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762454.556044] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762454.761365] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762454.966445] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762455.172045] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762455.377971] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762455.583239] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762455.788186] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762455.993497] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762456.198721] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762456.403485] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762456.609504] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762456.814538] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762457.019675] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762457.226012] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421762457.431237] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762457.636807] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762457.842801] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762458.047797] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762458.253229] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421762458.458124] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762458.663794] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762458.869071] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762459.075340] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421762459.281123] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762459.486299] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762459.691073] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762459.896393] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762460.101268] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762460.306512] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762460.511277] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762460.715825] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762460.921414] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762461.127261] 1932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762461.332443] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762461.628987] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=92.3 ms +[1421762461.834287] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762462.038949] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762462.318946] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.3 ms +[1421762462.728221] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=205 ms +[1421762462.945379] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421762463.152245] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.02 ms +[1421762463.357104] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762463.578977] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421762463.783835] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762463.988846] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762464.193552] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762464.398094] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762464.603260] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762464.809826] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762465.021125] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.98 ms +[1421762465.226943] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762465.433912] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.07 ms +[1421762465.639394] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762465.845610] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762466.055175] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.22 ms +[1421762466.261106] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762466.467235] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762466.672864] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762466.880844] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.70 ms +[1421762467.086618] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762467.302610] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421762467.507539] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762467.742051] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.7 ms +[1421762467.947264] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762468.152622] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762468.358254] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762468.563460] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762468.769437] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762468.974945] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762469.180419] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762469.395483] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.4 ms +[1421762469.601855] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762469.807457] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762470.012497] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762470.217592] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762470.423081] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762470.628303] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762470.833357] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762471.038278] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762471.244350] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762471.450008] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762471.655050] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762471.861390] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762472.067095] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762472.271942] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762472.477464] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762472.682331] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762472.887510] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421762473.092720] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762473.298262] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762473.503187] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762473.708160] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762473.914437] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762474.127246] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.88 ms +[1421762474.332268] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762474.537474] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762474.748568] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.06 ms +[1421762474.999225] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.4 ms +[1421762475.220630] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421762475.426204] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421762475.631524] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421762475.836882] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762476.043085] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762476.248092] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762476.452813] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762476.658902] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762476.864012] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762477.068555] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762477.273818] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421762477.479210] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762477.684042] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762477.889145] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762478.093796] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762478.298736] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762478.505140] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762478.711020] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762478.916699] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762479.121669] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762479.327360] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421762479.532833] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762479.739213] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421762479.944950] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762480.150956] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762480.361328] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.95 ms +[1421762480.566224] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762480.777124] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.96 ms +[1421762480.982481] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762481.187785] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762481.393415] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762481.598712] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762481.803904] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762482.010244] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762482.215382] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762482.421389] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762482.627143] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762482.832531] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421762483.038015] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762483.243343] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421762483.448160] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762483.654185] 1880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421762483.858755] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762484.063620] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762484.269387] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762484.504236] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.7 ms +[1421762484.713766] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.76 ms +[1421762484.924354] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.76 ms +[1421762485.171189] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.9 ms +[1421762485.388562] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421762485.618594] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.1 ms +[1421762485.841087] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421762486.063757] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421762486.341005] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.4 ms +[1421762486.566470] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421762486.850229] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.0 ms +[1421762487.073010] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421762487.300028] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421762487.522194] 1175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421762487.811059] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.1 ms +[1421762488.016491] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762488.221965] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762488.426971] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762488.635819] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.05 ms +[1421762488.863176] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421762489.077584] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421762489.328390] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=47.1 ms +[1421762489.590023] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=57.5 ms +[1421762489.856583] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.7 ms +[1421762490.075000] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421762490.298895] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421762490.583693] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.5 ms +[1421762490.809325] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421762491.035309] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421762491.240783] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421762491.445702] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762491.650793] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762491.855637] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762492.060009] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762492.265578] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762492.471231] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762492.680689] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.10 ms +[1421762492.892822] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.34 ms +[1421762493.139969] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.2 ms +[1421762493.355125] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421762493.573490] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.4 ms +[1421762493.778814] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762493.984809] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762494.189895] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762494.397972] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.74 ms +[1421762494.606275] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.27 ms +[1421762494.818506] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.35 ms +[1421762495.035340] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421762495.254659] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421762495.530371] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.8 ms +[1421762495.813827] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.1 ms +[1421762496.036386] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421762496.258626] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421762496.484495] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421762496.711074] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421762496.928274] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421762497.153837] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421762497.383869] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421762497.589160] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762497.794496] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762497.999486] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762498.204228] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762498.409457] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762498.614951] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762498.819868] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762499.025336] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762499.240160] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421762499.444885] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762499.651088] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762499.856345] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762500.060944] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762500.267194] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762500.472981] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762500.678309] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762500.884640] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421762501.089503] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762501.295682] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762501.500948] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762501.706635] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762501.912320] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762502.117596] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762502.322217] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421762502.526994] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762502.732873] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762502.937828] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762503.143706] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762503.348590] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762503.553421] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762503.761076] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.58 ms +[1421762503.966747] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762504.172785] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762504.378987] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762504.583857] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762504.789842] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421762504.994804] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762505.199246] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762505.404732] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762505.610167] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762505.815564] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762506.021132] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762506.226024] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762506.431512] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762506.636843] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762506.842072] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762507.048756] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762507.254431] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762507.459323] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762507.664324] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762507.869497] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762508.074730] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762508.279252] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762508.484147] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762508.689224] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762508.894726] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762509.099778] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762509.304546] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762509.509314] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762509.715466] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762509.920623] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762510.125458] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762510.330006] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762510.535233] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762510.740461] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762510.945772] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762511.150867] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762511.355710] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762511.560477] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762511.765523] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762511.970269] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762512.174832] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762512.380595] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762512.585400] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762512.791601] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762512.997522] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762513.202351] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762513.407004] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762513.611666] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762513.816883] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762514.022382] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762514.227194] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762514.431748] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762514.636470] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762514.841341] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762515.046278] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762515.250784] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762515.469385] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421762515.674582] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762515.881222] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421762516.086057] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762516.290698] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762516.496215] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762516.701206] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762516.906584] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762517.111314] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762517.315932] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762517.521226] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762517.726187] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762517.931307] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762518.136226] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762518.341538] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421762518.547256] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421762518.753738] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421762518.959207] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762519.165439] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762519.371277] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762519.576789] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762519.781856] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762519.988391] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762520.193292] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762520.399170] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762520.604179] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762520.810258] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762521.015125] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762521.220334] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762521.425013] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762521.631262] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762521.836478] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762522.041729] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762522.247450] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762522.453111] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762522.657626] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762522.863080] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762523.067669] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762523.273538] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762523.479160] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762523.684153] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762523.889005] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762524.093790] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762524.299041] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762524.503490] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762524.707933] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762524.912936] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762525.119279] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762525.324194] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762525.528960] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762525.734579] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762525.939075] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762526.145433] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762526.350421] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762526.555365] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762526.760092] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762526.965653] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421762527.170757] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762527.378243] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.16 ms +[1421762527.583818] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762527.788552] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762527.993447] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762528.198681] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762528.404531] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762528.609857] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762528.815496] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762529.021324] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762529.226346] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762529.431399] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762529.636532] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762529.841270] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762530.045975] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762530.251069] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762530.455686] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762530.661743] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762530.867697] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762531.072131] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762531.277912] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762531.483282] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762531.688696] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762531.893957] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762532.098961] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762532.303703] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762532.509486] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762532.714782] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762532.920225] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762533.126174] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421762533.331445] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762533.536789] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762533.742945] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762533.948501] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762534.153634] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762534.359012] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762534.564256] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762534.768879] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762534.973536] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762535.178684] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762535.384497] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762535.589702] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762535.795048] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762536.017932] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421762536.223380] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762536.428677] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762536.633632] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762536.839648] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762537.044979] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762537.251207] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762537.456397] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762537.661660] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762537.867565] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762538.073094] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421762538.278756] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762538.484299] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762538.690047] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762538.895510] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762539.100401] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762539.306185] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762539.512418] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762539.719004] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762539.925435] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762540.129864] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762540.335206] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762540.540716] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421762540.746090] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762540.952279] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762541.157595] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762541.362795] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421762541.569003] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762541.774379] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762541.979923] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762542.184912] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762542.390088] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762542.595354] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762542.800768] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762543.006469] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762543.211269] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762543.416686] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762543.621653] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762543.828059] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421762544.033237] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762544.239256] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421762544.444900] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762544.649668] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762544.854682] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762545.059881] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762545.264742] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762545.470707] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762545.675994] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762545.881223] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762546.087538] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762546.293306] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762546.498649] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762546.703705] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762546.909099] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762547.114657] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762547.319491] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762547.524666] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762547.731038] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762547.936954] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762548.141788] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762548.347090] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762548.552102] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762548.758194] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762548.963466] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762549.168017] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762549.372326] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762549.578545] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762549.783666] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762549.989006] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762550.194467] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762550.399923] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762550.605668] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762550.812009] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762551.017545] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762551.222050] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762551.426559] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762551.631529] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762551.836238] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762552.040692] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762552.246285] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762552.450810] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762552.655832] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762552.861907] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762553.066942] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762553.271655] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762553.477861] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762553.682616] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762553.887532] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762554.093072] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762554.298451] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762554.503643] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762554.708976] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762554.914847] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421762555.119477] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762555.324094] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762555.529178] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762555.734242] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762555.940677] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762556.145413] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762556.351309] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762556.556127] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762556.761017] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762556.966263] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762557.172750] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.77 ms +[1421762557.379033] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421762557.585557] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421762557.790442] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762557.996346] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762558.201172] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762558.407105] 1888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762558.612598] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762558.818248] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762559.024330] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762559.228812] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762559.434301] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421762559.639937] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762559.845048] 1049 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762560.059746] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.1 ms +[1421762560.264670] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762560.469983] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762560.674688] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762560.881126] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762561.086197] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762561.291319] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762561.495653] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762561.701239] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762561.905806] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762562.110699] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762562.315193] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762562.520808] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762562.725385] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762562.936553] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.56 ms +[1421762563.159472] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421762563.365724] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762563.570908] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762563.778207] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.47 ms +[1421762563.984877] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.86 ms +[1421762564.194499] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.07 ms +[1421762564.408155] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.79 ms +[1421762564.626631] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421762564.832731] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762565.037255] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762565.242417] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421762565.447714] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762565.652978] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762565.859325] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762566.064853] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762566.269737] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762566.474917] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762566.680896] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762566.887110] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762567.091725] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762567.297135] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762567.503515] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762567.708968] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762567.914437] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762568.120147] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762568.325359] 1238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762568.530416] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762568.735536] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762568.940944] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762569.146261] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421762569.352574] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762569.557760] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762569.762605] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762569.967759] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762570.173810] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762570.378211] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762570.584322] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762570.790693] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421762570.995603] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762571.200888] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762571.405915] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762571.611785] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762571.816682] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762572.022377] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762572.227779] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421762572.433918] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762572.640076] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762572.845039] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762573.050909] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421762573.256648] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762573.462711] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762573.668683] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762573.873628] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762574.078786] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762574.284791] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762574.490732] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762574.697334] 1720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762574.902245] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762575.107343] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421762575.313550] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762575.519551] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762575.724532] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762575.929884] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762576.135374] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762576.341631] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762576.547047] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762576.754187] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421762576.959813] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421762577.166118] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762577.371747] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762577.578095] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762577.783167] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762577.989501] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762578.195084] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421762578.399655] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762578.604722] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762578.810197] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421762579.014911] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421762579.219786] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762579.424443] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762579.629600] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762579.835621] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762580.040780] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762580.245579] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762580.450561] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762580.655906] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762580.861077] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762581.067446] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762581.272604] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762581.477688] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762581.682569] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762581.887343] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762582.092295] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762582.297091] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762582.502609] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762582.707702] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762582.913055] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762583.118639] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762583.323310] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762583.528293] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762583.734914] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762583.940305] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762584.145907] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762584.351556] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762584.556619] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762584.761791] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762584.966495] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762585.172140] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762585.378300] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.82 ms +[1421762585.601687] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421762585.806688] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762586.011882] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762586.216679] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762586.421356] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762586.626542] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762586.831589] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762587.036085] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762587.240871] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762587.446786] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.07 ms +[1421762587.651875] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762587.856973] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762588.061661] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762588.266317] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762588.472316] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421762588.677248] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762588.882575] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762589.087266] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762589.291907] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762589.498090] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762589.703187] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762589.908209] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762590.120792] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.19 ms +[1421762590.326058] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421762590.531246] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762590.736722] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762590.942086] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762591.148704] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762591.354420] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762591.559720] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762591.764409] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762591.969086] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762592.175445] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762592.381363] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762592.587467] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421762592.793133] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762592.999625] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762593.204571] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762593.409232] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762593.615171] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421762593.819983] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762594.025802] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762594.230888] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762594.436310] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762594.641899] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762594.847083] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762595.052398] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762595.257314] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762595.463101] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762595.667630] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762595.873362] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762596.077982] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762596.283077] 1175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762596.488558] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762596.693081] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762596.897865] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762597.103738] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762597.308954] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762597.514047] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762597.718763] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762597.924746] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762598.130108] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421762598.335464] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762598.540583] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762598.745208] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762598.949756] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762599.154725] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762599.359763] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762599.566432] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421762599.771065] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762599.975915] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762600.181193] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421762600.387357] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762600.592502] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762600.797165] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762601.001999] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762601.207197] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762601.412699] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421762601.617404] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762601.822889] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762602.028419] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762602.233479] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762602.439838] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762602.646091] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762602.852540] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762603.058053] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762603.263061] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762603.468704] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762603.674962] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762603.880538] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762604.084742] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762604.289661] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762604.495816] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421762604.702179] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421762604.907819] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762605.112642] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762605.317659] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762605.522814] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762605.728330] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762605.933195] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762606.138690] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762606.344313] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762606.549620] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762606.755736] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762606.961335] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762607.166737] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421762607.372445] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762607.577340] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762607.783314] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762607.988276] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762608.193277] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762608.397914] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762608.603029] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762608.808860] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762609.013756] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762609.219936] 1870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762609.425487] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762609.631119] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762609.837709] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762610.042798] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762610.248769] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762610.454696] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762610.660325] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762610.865270] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762611.071597] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762611.276687] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762611.481469] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762611.687209] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421762611.892421] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762612.098850] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762612.303906] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762612.512537] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.39 ms +[1421762612.722790] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.09 ms +[1421762612.938007] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421762613.151504] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.56 ms +[1421762613.369761] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421762613.587235] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421762613.813065] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421762614.040505] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421762614.266776] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421762614.492476] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421762614.719363] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421762614.940914] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421762615.161551] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421762615.381003] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421762615.586523] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762615.791860] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762615.996602] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762616.204714] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.35 ms +[1421762616.414426] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.43 ms +[1421762616.657889] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.9 ms +[1421762616.874784] 1072 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421762617.095837] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421762617.373077] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.6 ms +[1421762617.595065] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.7 ms +[1421762617.822164] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421762618.051392] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421762618.279765] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421762618.485227] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421762618.713683] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421762618.996908] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.1 ms +[1421762619.222140] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421762619.451555] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421762619.677097] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421762619.963648] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.5 ms +[1421762620.169069] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762620.375176] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762620.585981] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.93 ms +[1421762620.802282] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421762621.030317] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421762621.242766] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.48 ms +[1421762621.495284] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.6 ms +[1421762621.717858] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421762621.938459] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421762622.143843] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762622.371749] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421762622.597746] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421762622.804088] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762623.029394] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421762623.237021] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.85 ms +[1421762623.466183] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421762623.746063] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.2 ms +[1421762624.032266] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.5 ms +[1421762624.259276] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421762624.482511] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421762624.768128] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.5 ms +[1421762624.972993] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762625.178194] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762625.384774] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.30 ms +[1421762625.592275] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.22 ms +[1421762625.803202] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.39 ms +[1421762626.042851] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.9 ms +[1421762626.255869] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.42 ms +[1421762626.474259] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421762626.699410] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421762626.934122] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.2 ms +[1421762627.164582] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.6 ms +[1421762627.389891] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421762627.612528] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421762627.891206] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.0 ms +[1421762628.126563] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.7 ms +[1421762628.356143] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421762628.582887] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421762628.865086] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.4 ms +[1421762629.092799] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421762629.317245] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421762629.543289] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421762629.748141] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762629.954198] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762630.159694] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421762630.368264] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.90 ms +[1421762630.579460] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.52 ms +[1421762630.792708] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.72 ms +[1421762631.007938] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421762631.225911] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.1 ms +[1421762631.450404] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421762631.666710] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421762631.949425] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.5 ms +[1421762632.178808] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.5 ms +[1421762632.400385] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421762632.605528] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762632.810645] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762633.015432] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762633.223043] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.86 ms +[1421762633.432275] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.47 ms +[1421762633.640144] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.02 ms +[1421762633.851779] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.62 ms +[1421762634.107900] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=52.3 ms +[1421762634.377502] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=65.7 ms +[1421762634.582464] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762634.787140] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762634.992699] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.94 ms +[1421762635.198357] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762635.403269] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421762635.608798] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762635.814728] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762636.020887] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762636.225602] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762636.432337] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.34 ms +[1421762636.637318] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762636.843561] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762637.049375] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762637.254081] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762637.458706] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762637.665283] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421762637.871623] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762638.076113] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762638.280389] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762638.486272] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762638.692604] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762638.898604] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762639.103379] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762639.309148] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762639.514389] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762639.719640] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762639.925036] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762640.130235] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762640.335581] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762640.541772] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762640.747125] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762640.951707] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762641.157939] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762641.362792] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762641.567369] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762641.772584] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762641.978092] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762642.183229] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762642.388871] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762642.594329] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762642.799412] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762643.004473] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762643.210770] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762643.418277] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.50 ms +[1421762643.632257] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.87 ms +[1421762643.862554] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.6 ms +[1421762644.094418] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.9 ms +[1421762644.304213] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.68 ms +[1421762644.596090] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=88.1 ms +[1421762644.802233] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762645.007269] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762645.212884] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421762645.417929] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762645.622474] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762645.827162] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762646.061753] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.0 ms +[1421762646.266901] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762646.472296] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762646.676784] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762646.881308] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762647.085991] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762647.291313] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762647.496335] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762647.702527] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762647.907287] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762648.112715] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762648.318762] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762648.524646] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762648.729507] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762648.934456] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762649.139027] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762649.344100] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762649.550111] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762649.755428] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762649.960673] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762650.166125] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762650.371770] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762650.580769] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.11 ms +[1421762650.787191] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421762650.992572] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762651.197895] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762651.402517] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762651.608354] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762651.813137] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762652.017516] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762652.222393] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762652.427272] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762652.632313] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762652.837095] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762653.042288] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762653.247640] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762653.453444] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762653.659723] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762653.865774] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421762654.071909] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762654.278147] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762654.484704] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762654.690942] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762654.895820] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762655.100087] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.02 ms +[1421762655.304941] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762655.510274] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762655.717317] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.87 ms +[1421762655.922422] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762656.127158] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762656.332449] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762656.537831] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762656.743045] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762656.948406] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762657.153679] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421762657.360354] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.78 ms +[1421762657.565751] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762657.771720] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762657.977943] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762658.183826] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762658.388335] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762658.593237] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762658.797925] 30 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762659.003186] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762659.208062] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762659.413934] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762659.619538] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762659.824657] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762660.029902] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762660.234684] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762660.439043] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762660.644168] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762660.849395] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762661.054791] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762661.260570] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762661.465336] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762661.670327] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762661.875265] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762662.079785] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762662.285528] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421762662.491334] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762662.697256] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762662.902687] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762663.108055] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762663.313605] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762663.518964] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762663.723702] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762663.929837] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762664.136037] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762664.341992] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762664.547270] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762664.751890] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762664.957794] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762665.162511] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762665.368076] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762665.574356] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.67 ms +[1421762665.780622] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421762665.986235] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762666.191071] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762666.395867] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762666.601734] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762666.807471] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762667.012415] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762667.218630] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.75 ms +[1421762667.424277] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762667.629189] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762667.834307] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762668.039791] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762668.244623] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762668.449207] 1175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762668.655404] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762668.861032] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762669.066203] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762669.270671] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762669.475320] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762669.680441] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762669.885885] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762670.090675] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762670.295461] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762670.501372] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762670.707430] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762670.912872] 1297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762671.117514] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762671.322896] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762671.528107] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762671.734210] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762671.939078] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762672.143744] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762672.348573] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762672.554556] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762672.760395] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762672.966064] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762673.172435] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762673.377588] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762673.582997] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762673.789179] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762673.995725] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762674.201083] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762674.406273] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762674.611759] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762674.817008] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762675.022402] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762675.228588] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762675.433134] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762675.637684] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762675.842584] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762676.047343] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762676.252785] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762676.461053] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.51 ms +[1421762676.666705] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762676.873182] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762677.078826] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762677.284857] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762677.490600] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762677.695734] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762677.902137] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421762678.107446] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762678.312138] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762678.517499] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762678.722609] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762678.928254] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762679.134449] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762679.340783] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421762679.546166] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762679.751146] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762679.955971] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762680.160849] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762680.366123] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762680.572043] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762680.777642] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762680.986354] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.00 ms +[1421762681.198656] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.51 ms +[1421762681.417172] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.4 ms +[1421762681.638979] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421762681.858067] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421762682.081717] 30 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421762682.311899] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.3 ms +[1421762682.539953] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421762682.750644] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.18 ms +[1421762683.027777] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.7 ms +[1421762683.256602] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421762683.482483] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421762683.711156] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421762683.983429] 1482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=68.2 ms +[1421762684.268345] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.4 ms +[1421762684.473397] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762684.678618] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762684.887861] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.37 ms +[1421762685.098275] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.84 ms +[1421762685.311039] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.91 ms +[1421762685.530858] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421762685.791434] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.3 ms +[1421762686.066894] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.4 ms +[1421762686.287544] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421762686.514255] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421762686.736648] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421762687.026057] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.4 ms +[1421762687.306746] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.0 ms +[1421762687.535703] 904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421762687.761774] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421762687.986044] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421762688.216680] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.9 ms +[1421762688.444965] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421762688.673552] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421762688.878313] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762689.083051] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762689.290292] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.96 ms +[1421762689.499481] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.46 ms +[1421762689.711876] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.93 ms +[1421762689.925594] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.50 ms +[1421762690.141965] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421762690.360879] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421762690.635874] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.1 ms +[1421762690.921958] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.0 ms +[1421762691.147346] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421762691.432648] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.1 ms +[1421762691.638066] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762691.843460] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762692.048445] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762692.253606] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762692.459175] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762692.664645] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762692.870182] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762693.076081] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762693.282037] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421762693.489550] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.62 ms +[1421762693.702749] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.31 ms +[1421762693.946896] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=40.2 ms +[1421762694.198009] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=47.3 ms +[1421762694.419788] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421762694.644169] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421762694.849336] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762695.054338] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762695.260454] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762695.465582] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762695.674203] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.80 ms +[1421762695.887001] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.22 ms +[1421762696.100364] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.75 ms +[1421762696.318988] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421762696.537074] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421762696.756964] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421762696.980686] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762697.262308] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.1 ms +[1421762697.485273] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421762697.773114] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.2 ms +[1421762697.979255] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762698.263276] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.5 ms +[1421762698.487102] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421762698.710026] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421762698.937771] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421762699.160530] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421762699.447438] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.5 ms +[1421762699.673585] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421762699.880265] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.69 ms +[1421762700.086909] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421762700.291930] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421762700.499988] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.67 ms +[1421762700.710987] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.12 ms +[1421762700.928194] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421762701.182791] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=50.6 ms +[1421762701.404000] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421762701.625958] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421762701.850450] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421762702.135813] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.9 ms +[1421762702.362136] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421762702.646135] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.8 ms +[1421762702.851586] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762703.056991] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762703.262908] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762703.467541] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762703.672095] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762703.886185] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421762704.113125] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421762704.325497] 89 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.74 ms +[1421762704.538965] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.64 ms +[1421762704.761508] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421762704.966781] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762705.171775] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762705.376333] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762705.583087] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.34 ms +[1421762705.809729] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421762706.022771] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.97 ms +[1421762706.238183] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421762706.461172] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421762706.683686] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421762706.909130] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421762707.194956] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.9 ms +[1421762707.420751] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421762707.647035] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421762707.873941] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421762708.078867] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762708.364610] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.1 ms +[1421762708.646774] 1716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.6 ms +[1421762708.865252] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421762709.089334] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421762709.314798] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421762709.538924] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421762709.743815] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762709.948905] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762710.155583] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.97 ms +[1421762710.381200] 1541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421762710.594134] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.18 ms +[1421762710.845004] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=47.1 ms +[1421762711.110947] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.3 ms +[1421762711.334616] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421762711.612798] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.3 ms +[1421762711.837724] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421762712.066737] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.0 ms +[1421762712.351820] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.3 ms +[1421762712.580958] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421762712.785853] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762712.991279] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762713.196844] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762713.401943] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762713.607773] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762713.812775] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762714.018956] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762714.224296] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762714.429275] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762714.633940] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762714.838835] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762715.044336] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762715.250387] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762715.456672] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762715.661966] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762715.867932] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.99 ms +[1421762716.075251] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.96 ms +[1421762716.287561] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.50 ms +[1421762716.501753] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421762716.717207] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421762716.936332] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421762717.159133] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421762717.364321] 837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762717.569181] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762717.774389] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762717.981210] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421762718.190403] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.75 ms +[1421762718.399844] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.19 ms +[1421762718.610955] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.26 ms +[1421762718.816367] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762719.020715] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421762719.225979] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762719.431090] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762719.636027] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762719.841605] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762720.046446] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762720.252437] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762720.457409] 1075 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762720.662188] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762720.867108] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762721.071806] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762721.277094] 1297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762721.483215] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762721.688423] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762721.894390] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762722.099927] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762722.305189] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762722.510817] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762722.716552] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762722.921917] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762723.127973] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762723.332857] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762723.537883] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762723.743474] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762723.949493] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421762724.155559] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762724.361337] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762724.566584] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762724.772245] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762724.977682] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762725.182694] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762725.388554] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762725.593820] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762725.799218] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421762726.004169] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762726.209458] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421762726.414932] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762726.620186] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762726.826490] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762727.031281] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762727.237278] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762727.443197] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762727.649559] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762727.855721] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762728.060714] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762728.265467] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762728.470180] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762728.676213] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762728.881422] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762729.086263] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762729.291256] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762729.496453] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762729.701763] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762729.907117] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762730.112137] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762730.316892] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762730.522642] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421762730.727849] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762730.933867] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762731.139085] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762731.344797] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762731.549977] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762731.755216] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762731.961400] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762732.166040] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762732.371600] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762732.576495] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762732.781371] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762732.986529] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762733.190900] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762733.395713] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762733.600493] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762733.805751] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762734.011971] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762734.216950] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762734.421701] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762734.626562] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762734.831511] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762735.036025] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762735.240538] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762735.445241] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762735.651323] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762735.856975] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762736.061912] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762736.266572] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762736.472248] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762736.678365] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421762736.885233] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421762737.090862] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762737.295817] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762737.501160] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421762737.706731] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762737.912633] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421762738.117341] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762738.322071] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762738.528134] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762738.734437] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762738.940995] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762739.146953] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762739.352835] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762739.557950] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762739.762715] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762739.968310] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421762740.173554] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762740.378599] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762740.583209] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421762740.789409] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762740.995652] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762741.201216] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762741.406009] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762741.610624] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762741.815808] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762742.021208] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762742.226619] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762742.431540] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762742.636549] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762742.841962] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762743.046679] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762743.251590] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762743.458119] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421762743.662989] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762743.869127] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762744.073825] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762744.278627] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762744.483588] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762744.688327] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762744.893030] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762745.097853] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762745.303019] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762745.508299] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762745.713082] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762745.917610] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762746.122410] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762746.327345] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762746.532298] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762746.736986] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762746.941764] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762747.146993] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762747.352293] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421762747.558311] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762747.763526] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762747.969237] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762748.174157] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762748.379440] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762748.584285] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762748.788988] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762748.995371] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762749.201766] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762749.407340] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421762749.612575] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762749.817958] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762750.022917] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762750.228907] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762750.433655] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762750.639802] 1880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.80 ms +[1421762750.844566] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762751.049836] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762751.254896] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762751.461181] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762751.667797] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421762751.872447] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762752.076942] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762752.282971] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762752.488975] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762752.695109] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762752.901103] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762753.106710] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762753.311665] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762753.517384] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762753.722396] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762753.927379] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762754.132362] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762754.337401] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762754.542695] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762754.747413] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762754.952064] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762755.156693] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762755.361545] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762755.567758] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762755.773549] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762755.979970] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762756.185983] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762756.390560] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762756.595420] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762756.800236] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762757.005471] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421762757.210544] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762757.415543] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762757.620644] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762757.826348] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762758.031229] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762758.236576] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762758.441627] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762758.646382] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762758.853226] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.80 ms +[1421762759.058428] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762759.263363] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762759.468416] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762759.674013] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762759.878636] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762760.083497] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762760.288748] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762760.495282] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.72 ms +[1421762760.700508] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762760.905844] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762761.110582] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762761.315622] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762761.520792] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762761.726596] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762761.932867] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762762.137920] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762762.344148] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762762.550772] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762762.755516] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762762.960253] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762763.165001] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762763.371202] 1503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762763.576589] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762763.781742] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762763.987783] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762764.192929] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762764.398235] 1238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762764.604722] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762764.809546] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762765.014660] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762765.219235] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762765.423802] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762765.628656] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762765.833975] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762766.040355] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762766.246093] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762766.450776] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762766.655871] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762766.860775] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762767.066707] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762767.272731] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762767.478369] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.96 ms +[1421762767.683736] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762767.889129] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762768.093714] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762768.298733] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762768.504806] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762768.709703] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762768.915563] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762769.120890] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421762769.325546] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762769.531396] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762769.736482] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762769.941411] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762770.146863] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762770.352148] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762770.557404] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762770.762407] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762770.968496] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762771.173332] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762771.378971] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762771.583750] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762771.789012] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762771.994185] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762772.198628] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762772.403557] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762772.608355] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762772.813255] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762773.018174] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762773.222789] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762773.428180] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762773.632675] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762773.837875] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762774.043694] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762774.248549] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762774.453410] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762774.658530] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421762774.863595] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762775.068316] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762775.274032] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762775.478515] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762775.683433] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762775.888976] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762776.094518] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762776.301134] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762776.506472] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762776.712803] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762776.918452] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762777.123317] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762777.327938] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762777.533278] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762777.739516] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421762777.944795] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762778.149602] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762778.355120] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762778.561516] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762778.767645] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762778.974260] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762779.179612] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762779.384682] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762779.589901] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762779.794943] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762780.000671] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762780.205792] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762780.410392] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762780.614979] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762780.820867] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762781.026039] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762781.231137] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762781.436235] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762781.642435] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762781.847401] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762782.053986] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762782.259203] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762782.464586] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762782.670734] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762782.876757] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762783.082569] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762783.288386] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762783.493573] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762783.698236] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762783.902919] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762784.108209] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762784.313087] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762784.517933] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762784.722662] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762784.927165] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762785.137549] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.45 ms +[1421762785.343679] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762785.549612] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762785.755173] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762785.960015] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762786.166484] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421762786.372236] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762786.578212] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.94 ms +[1421762786.783095] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762786.988445] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762787.194850] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421762787.401541] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421762787.607930] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762787.812639] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762788.017144] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762788.223453] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762788.429018] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762788.634041] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762788.839328] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762789.044241] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762789.249605] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421762789.454364] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762789.658779] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762789.863165] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762790.067562] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762790.273020] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762790.478014] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762790.682836] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762790.887560] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762791.092271] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762791.297201] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762791.502276] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762791.707344] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762791.912293] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762792.117028] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762792.322406] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762792.527571] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762792.733713] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762792.939186] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762793.144116] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762793.349413] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762793.554249] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762793.759441] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762793.965332] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762794.171323] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762794.375817] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762794.580545] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762794.785892] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762794.991744] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762795.197727] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762795.403316] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421762795.607676] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762795.812303] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762796.017046] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762796.223009] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762796.427965] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762796.633319] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762796.837974] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762797.043741] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762797.248836] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762797.454083] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762797.659130] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762797.864527] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762798.069644] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762798.274549] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762798.480665] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421762798.685611] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762798.889955] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762799.094754] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762799.300733] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762799.506844] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762799.712762] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762799.919137] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762800.124166] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762800.329166] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762800.534379] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762800.739570] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762800.946296] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762801.152322] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762801.358555] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421762801.564540] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762801.769878] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762801.975474] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762802.180984] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421762802.386685] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762802.591515] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762802.796639] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762803.001545] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762803.206790] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762803.412109] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762803.617578] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762803.822867] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762804.028471] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762804.234260] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762804.438999] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762804.643886] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762804.848616] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762805.053858] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762805.258414] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762805.463124] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762805.668058] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762805.873400] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762806.078888] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762806.283742] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762806.489141] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762806.693966] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762806.899251] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762807.103845] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762807.309182] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762807.514593] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762807.720875] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762807.926121] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762808.132641] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762808.337649] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762808.543600] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762808.749556] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762808.954814] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762809.159734] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762809.364458] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762809.569425] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762809.774814] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762809.980084] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762810.185119] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421762810.390653] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762810.596542] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762810.803281] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762811.008268] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762811.213768] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762811.418829] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762811.624701] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762811.830380] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421762812.035719] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421762812.241279] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762812.446700] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762812.653005] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762812.857993] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762813.063873] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762813.268667] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762813.473505] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762813.678617] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762813.883881] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762814.088407] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762814.293047] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762814.497693] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762814.702542] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762814.908951] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762815.114190] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762815.319571] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762815.525317] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762815.730376] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762815.935827] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762816.140591] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762816.345432] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762816.550145] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762816.754915] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762816.960065] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762817.164817] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762817.371295] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421762817.579797] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.25 ms +[1421762817.785809] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762817.991425] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762818.196742] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762818.403542] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762818.608693] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762818.814265] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762819.019775] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762819.226085] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762819.432050] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762819.637030] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762819.843399] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762820.048453] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762820.253081] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762820.458252] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762820.663914] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762820.868983] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762821.075021] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421762821.279860] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762821.484424] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762821.689461] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762821.894772] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762822.100685] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762822.306062] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762822.511565] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762822.716234] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762822.920935] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762823.125781] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762823.331043] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762823.537483] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762823.742399] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762823.948098] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762824.154424] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762824.360782] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762824.565678] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762824.771508] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762824.976688] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762825.185469] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.50 ms +[1421762825.391016] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762825.596729] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762825.801630] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762826.006630] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762826.211877] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762826.418226] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762826.623464] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762826.828466] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762827.033252] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762827.238108] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762827.442536] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762827.647694] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762827.853577] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762828.058118] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762828.262878] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762828.467791] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762828.672694] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762828.877831] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762829.082641] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762829.287300] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762829.493398] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762829.698364] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762829.902931] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762830.108705] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762830.313776] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762830.519917] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762830.726116] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762830.931693] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762831.136774] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762831.342271] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762831.547570] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762831.752600] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762831.957621] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762832.162606] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762832.368054] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762832.574275] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762832.780737] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762832.985870] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762833.192005] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762833.396936] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762833.602131] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762833.808284] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762834.013220] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762834.219323] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762834.424588] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762834.630596] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421762834.835440] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762835.040225] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762835.245237] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762835.450410] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762835.655586] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762835.860964] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762836.067027] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762836.272853] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762836.478296] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762836.683389] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762836.889820] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762837.095674] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762837.301967] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762837.507281] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762837.712528] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762837.917634] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762838.123768] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762838.345692] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421762838.550979] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762838.756725] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762838.961925] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762839.166900] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762839.372825] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762839.578431] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762839.783924] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762839.989494] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762840.195815] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762840.402179] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762840.608107] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762840.813289] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762841.019703] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762841.225513] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762841.431927] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421762841.637456] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762841.843233] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762842.048515] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762842.253429] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762842.458823] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762842.664818] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762842.871198] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762843.077425] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762843.282682] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762843.488813] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762843.694133] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762843.899173] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762844.105263] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762844.310626] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762844.516956] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762844.722252] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762844.927488] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762845.133214] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762845.338017] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762845.542918] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762845.748267] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421762845.953080] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762846.159126] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762846.364726] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762846.570090] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762846.775487] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762846.981874] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762847.188242] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762847.393113] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762847.605107] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.94 ms +[1421762847.810648] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762848.015757] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762848.220932] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762848.426378] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762848.631706] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762848.837386] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762849.041684] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762849.247191] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762849.452941] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762849.658497] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762849.864581] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762850.069152] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762850.275080] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762850.480300] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762850.685847] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762850.897395] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.69 ms +[1421762851.102813] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762851.308559] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762851.514473] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762851.719487] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762851.924540] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762852.130722] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762852.335976] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421762852.542725] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762852.748156] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762852.953097] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762853.158144] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762853.363229] 130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762853.568259] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762853.773435] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762853.978297] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421762854.182979] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762854.388129] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762854.593639] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762854.799096] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762855.004603] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762855.209978] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762855.416688] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762855.622143] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762855.829124] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762856.034292] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762856.239756] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421762856.445485] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762856.651839] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421762856.856560] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762857.061245] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762857.267684] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421762857.472706] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762857.677601] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762857.882948] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762858.088226] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762858.293496] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762858.499583] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762858.705310] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762858.912178] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421762859.117382] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762859.322465] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762859.528217] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762859.733672] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762859.938964] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762860.145772] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421762860.350804] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762860.555715] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762860.761205] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762860.966550] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762861.172185] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762861.378047] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762861.583220] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762861.788273] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762861.993696] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762862.198949] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762862.404507] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762862.610769] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421762862.816215] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762863.021186] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762863.226385] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762863.431630] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762863.636810] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762863.843682] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762864.049462] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762864.254299] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762864.459554] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762864.664549] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762864.869617] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762865.076051] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421762865.281757] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762865.488467] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762865.693714] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762865.899152] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762866.104248] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762866.310171] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762866.515460] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762866.721104] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762866.926620] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762867.131610] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762867.337032] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421762867.542553] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762867.749126] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762867.955134] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762868.160756] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762868.365867] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762868.572087] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762868.778318] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762868.983809] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762869.190350] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762869.395718] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762869.601605] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762869.806667] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762870.011818] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762870.217114] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421762870.422356] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762870.627620] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762870.834628] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762871.041166] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762871.246731] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762871.452026] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762871.658318] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762871.864281] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762872.069496] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762872.274667] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762872.479661] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762872.686081] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762872.892372] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762873.097762] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762873.303147] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762873.509233] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762873.715000] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762873.920362] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762874.127194] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762874.332735] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762874.539143] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762874.747054] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.96 ms +[1421762874.951739] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762875.157504] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762875.362450] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762875.567614] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762875.772590] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762875.978174] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762876.184280] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762876.388783] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762876.594068] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762876.799003] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762877.003960] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.03 ms +[1421762877.209231] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762877.415880] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762877.621181] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762877.826601] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762878.031570] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762878.236205] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762878.442449] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762878.648250] 1612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762878.853733] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762879.058988] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762879.264145] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762879.470113] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762879.675003] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762879.880216] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762880.085198] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421762880.291185] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421762880.495969] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762880.700851] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762880.907266] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762881.112927] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762881.318664] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421762881.524019] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762881.730491] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421762881.936007] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762882.141103] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762882.345978] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762882.551831] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762882.757579] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762882.964134] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762883.170428] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762883.375430] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762883.580432] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762883.786926] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762883.992133] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762884.198458] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762884.404850] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762884.609901] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762884.816431] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762885.021747] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762885.227568] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762885.432589] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762885.637957] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762885.843459] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762886.048485] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762886.254526] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762886.459117] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762886.664738] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762886.869942] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421762887.075855] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762887.280943] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762887.485816] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762887.691129] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762887.897271] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762888.102640] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762888.307335] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762888.512898] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762888.718471] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762888.923871] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762889.129040] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762889.333994] 30 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762889.539269] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762889.746052] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762889.951570] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762890.157866] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762890.363105] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762890.568663] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762890.775015] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762890.980250] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762891.185480] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762891.391268] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762891.595968] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762891.800959] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762892.006896] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762892.213107] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762892.418357] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762892.623582] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762892.829986] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762893.034933] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762893.239661] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421762893.445787] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762893.651954] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762893.857829] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762894.063354] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421762894.268517] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762894.474238] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762894.679682] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762894.884840] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762895.090083] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762895.294965] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762895.500487] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762895.705547] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762895.910871] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762896.115780] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762896.321371] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762896.525784] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762896.731919] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762896.938606] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421762897.148514] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.62 ms +[1421762897.362673] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421762897.575097] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.03 ms +[1421762897.791873] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421762898.012019] 1417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421762898.236758] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421762898.459960] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421762898.685463] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421762898.906545] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421762899.128903] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421762899.334022] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762899.538946] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762899.744919] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421762899.953048] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.77 ms +[1421762900.183986] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.3 ms +[1421762900.397807] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.95 ms +[1421762900.602999] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762900.807978] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762901.014145] 1870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762901.219943] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762901.424700] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762901.630740] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762901.836932] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762902.041725] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762902.246839] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762902.452184] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762902.658805] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762902.865638] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762903.070826] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762903.279439] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.58 ms +[1421762903.484385] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762903.688949] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762903.893722] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762904.099022] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762904.304173] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762904.509545] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762904.714783] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762904.919356] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762905.124378] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762905.329564] 1021 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762905.534629] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762905.740812] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762905.946567] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762906.151838] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762906.357925] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762906.563362] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762906.767927] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421762906.973830] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762907.180041] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762907.386220] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762907.591617] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762907.796575] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762908.001769] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762908.206894] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762908.412431] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421762908.618830] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421762908.825501] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762909.031328] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762909.236318] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762909.441253] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762909.646821] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762909.853286] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762910.059088] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421762910.263626] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762910.469560] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762910.674127] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762910.878981] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762911.083806] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762911.288494] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762911.493687] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762911.699730] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762911.905574] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762912.110634] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762912.316175] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762912.521711] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762912.728047] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762912.934327] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762913.139158] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762913.355598] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421762913.561988] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762913.766595] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762913.971695] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762914.177147] 1482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762914.381748] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762914.586647] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762914.792477] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762914.998472] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762915.204414] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762915.410040] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762915.616040] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762915.821145] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762916.026263] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762916.231864] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762916.437621] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762916.642196] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762916.848078] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762917.053213] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762917.259362] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421762917.464901] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421762917.670381] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762917.891883] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421762918.097732] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762918.302979] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762918.508523] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762918.713914] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762918.918793] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762919.124200] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762919.330433] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421762919.535905] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421762919.741795] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762919.946763] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762920.151379] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762920.358033] 1984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421762920.563525] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421762920.769183] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762920.974953] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762921.179645] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762921.384890] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762921.590260] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762921.796521] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762922.002291] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762922.207538] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762922.412766] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762922.618992] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762922.825814] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.67 ms +[1421762923.031330] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762923.237420] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421762923.442269] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762923.648305] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762923.853491] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762924.058786] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762924.264400] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762924.469890] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762924.675376] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762924.880610] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762925.085737] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762925.290981] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762925.496469] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421762925.703222] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421762925.908875] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762926.114620] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762926.320266] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762926.526246] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762926.732842] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762926.938285] 1392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762927.143890] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762927.349842] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762927.555487] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762927.761294] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421762927.966996] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762928.173042] 1955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762928.378444] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762928.584894] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762928.791202] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762928.996766] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762929.201558] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762929.407552] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762929.612935] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762929.818252] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762930.023833] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762930.228642] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762930.433905] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762930.639733] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762930.845889] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762931.051089] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762931.256352] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762931.462429] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762931.668147] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762931.874146] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762932.079458] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762932.284436] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762932.490842] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421762932.696428] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762932.901694] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762933.106650] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762933.312408] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762933.517738] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762933.722986] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762933.928774] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762934.134004] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762934.339179] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762934.544783] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762934.750597] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762934.956156] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762935.162545] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762935.368311] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762935.575028] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762935.780917] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762935.986180] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762936.191315] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762936.396872] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762936.602389] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762936.808081] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762937.014253] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762937.220363] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762937.425510] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762937.631026] 30 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762937.836457] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762938.042100] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762938.247270] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762938.452763] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762938.658305] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762938.864186] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762939.069391] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.98 ms +[1421762939.275355] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762939.480480] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762939.685817] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762939.891763] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762940.096757] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762940.301744] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762940.507063] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762940.712923] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762940.919049] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421762941.124035] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762941.329123] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762941.535895] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421762941.741590] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421762941.947565] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762942.152953] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762942.358907] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762942.563738] 555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762942.768697] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762942.974742] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762943.179677] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762943.384987] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762943.590903] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762943.796309] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762944.002226] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762944.207460] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762944.412965] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762944.618029] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762944.823326] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762945.028080] 161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762945.233267] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762945.439847] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762945.645195] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762945.851575] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762946.056763] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762946.262218] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762946.467573] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762946.673258] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762946.879716] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762947.084647] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762947.290594] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762947.496312] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762947.701997] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762947.907609] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762948.114115] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762948.319763] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762948.525458] 1410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762948.731575] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762948.937819] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762949.143052] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762949.348862] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762949.554506] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421762949.760635] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762949.965749] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762950.171190] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762950.376679] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762950.581986] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762950.787645] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762950.993023] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762951.199685] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762951.406420] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762951.612009] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762951.817404] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762952.022491] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762952.228364] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762952.434778] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421762952.641039] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762952.846449] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762953.051685] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762953.256461] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762953.462194] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421762953.668712] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762953.875669] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762954.081304] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762954.286966] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762954.492874] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421762954.698323] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762954.903924] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762955.109228] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762955.315351] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421762955.520727] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762955.726800] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762955.932160] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762956.137695] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762956.342857] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762956.549386] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762956.756262] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762956.962089] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762957.167685] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762957.374378] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421762957.581141] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.04 ms +[1421762957.786765] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762957.991839] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762958.198401] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762958.404538] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762958.613781] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.34 ms +[1421762958.819374] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762959.024881] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762959.231234] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762959.437640] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762959.643881] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762959.849418] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762960.055814] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762960.261172] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762960.466914] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762960.672431] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762960.877960] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762961.083202] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762961.288316] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762961.494406] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762961.699674] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762961.905054] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762962.110191] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762962.316576] 1049 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421762962.521884] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762962.727110] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762962.932120] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762963.137081] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762963.343357] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762963.548887] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762963.754277] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762963.959806] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762964.165305] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762964.370933] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762964.576099] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762964.781194] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762964.993181] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.50 ms +[1421762965.198878] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762965.405227] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762965.610361] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762965.830378] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421762966.036563] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762966.241334] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762966.446512] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762966.651630] 837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762966.856948] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762967.063197] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762967.268388] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762967.473794] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421762967.678907] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762967.884765] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762968.090126] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762968.295356] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762968.501339] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762968.707043] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762968.912579] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762969.118511] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421762969.324362] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421762969.530849] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421762969.737475] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762969.943210] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762970.148449] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762970.354124] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762970.559378] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762970.764985] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762970.970141] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762971.176349] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762971.382104] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762971.587687] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762971.792505] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762971.998881] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762972.204548] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421762972.409943] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762972.615252] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762972.820925] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762973.026077] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762973.231265] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762973.436671] 1410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421762973.641913] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762973.849143] 1075 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.09 ms +[1421762974.054121] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762974.259580] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762974.465037] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762974.671708] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762974.877464] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762975.082981] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762975.289047] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762975.494027] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762975.699438] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762975.904595] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762976.109670] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762976.314494] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762976.521083] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421762976.726884] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762976.932159] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762977.137562] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762977.343883] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762977.549265] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762977.754777] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762977.960336] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762978.166252] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762978.372685] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762978.579143] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762978.785146] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762978.990759] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762979.196645] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762979.403756] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421762979.609811] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762979.816762] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762980.023714] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762980.229040] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762980.434545] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762980.641107] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762980.847579] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762981.052904] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762981.259339] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762981.464966] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762981.671403] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762981.876937] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762982.083353] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762982.288698] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762982.495281] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762982.700823] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762982.906600] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762983.112130] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421762983.317806] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421762983.523354] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762983.729211] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762983.934810] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762984.140069] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762984.345426] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762984.550681] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762984.756037] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762984.961551] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762985.166722] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762985.371981] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762985.577841] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762985.783125] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762985.988514] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762986.194097] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762986.400118] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762986.605364] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762986.811018] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762987.017525] 1522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762987.222365] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762987.428012] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762987.634718] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421762987.840066] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762988.045407] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762988.250508] 841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762988.455255] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762988.660531] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762988.865924] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762989.071677] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762989.276859] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762989.483279] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.85 ms +[1421762989.693115] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.04 ms +[1421762989.898668] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762990.104172] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762990.309686] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762990.515118] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762990.721485] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762990.927037] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421762991.132824] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762991.338590] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762991.543960] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762991.749583] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762991.954631] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762992.159535] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762992.364838] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762992.570635] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762992.777655] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421762992.983414] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762993.190276] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762993.395488] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762993.601847] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762993.807593] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762994.013437] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762994.218986] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762994.425258] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421762994.631874] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762994.837606] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762995.043270] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762995.248580] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762995.453661] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762995.659318] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762995.864506] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762996.069643] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762996.274715] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762996.480021] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762996.685620] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762996.891694] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762997.096626] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762997.301453] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762997.506569] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762997.712878] 1897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762997.918846] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762998.125266] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762998.331971] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762998.540118] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.07 ms +[1421762998.745777] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421762998.950607] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762999.156614] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762999.361937] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762999.568408] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762999.773689] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762999.978883] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763000.184255] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763000.389175] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763000.595352] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763000.800445] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763001.009872] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763001.215483] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763001.420822] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763001.626246] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763001.831461] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763002.037131] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763002.242636] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763002.447982] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421763002.653157] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763002.858890] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763003.065023] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763003.270662] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763003.476114] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763003.681528] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763003.886918] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763014.296352] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763014.501892] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763014.706669] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763014.911801] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763015.119953] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.20 ms +[1421763015.325217] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763015.530599] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763015.736306] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421763015.941180] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763016.146927] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421763016.352579] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763016.558485] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763016.765510] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763016.971801] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763017.178156] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763017.383710] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763017.589628] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421763017.796490] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421763018.001516] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763018.206622] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763018.412077] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763018.617703] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763018.824119] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763019.030534] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763019.237293] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763019.442633] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763019.647469] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763019.852951] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763020.058429] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763020.264368] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763020.470069] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763020.675988] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763020.881696] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763021.086779] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763021.293052] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763021.498312] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763021.703270] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763021.908235] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763022.114167] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763022.319420] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763022.525222] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763022.731242] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763022.938246] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763023.143573] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763023.348907] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763023.555004] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763023.760335] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421763023.966378] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763024.171719] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763024.377379] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763024.583851] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763024.789633] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763024.995768] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421763025.202404] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763025.408533] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763025.613322] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763025.819942] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763026.025483] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763026.231125] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763026.437707] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763026.643347] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763026.848623] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763027.054712] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763027.259744] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763027.465221] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763027.670943] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763027.876405] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763028.083154] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763028.288143] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763028.492985] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763028.698611] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421763028.904294] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763029.110150] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763029.316442] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763029.523585] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.94 ms +[1421763029.729498] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421763029.935189] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763030.140774] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421763030.346399] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763030.551219] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763030.756706] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763030.963226] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763031.169554] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763031.375136] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763031.580763] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763031.786888] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421763031.992685] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763032.197692] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763032.403795] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763032.609138] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763032.814521] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763033.019592] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763033.224893] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763033.431018] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763033.637619] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421763033.843197] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763034.048050] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763034.253238] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763034.458295] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763034.663156] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763034.867916] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763035.073756] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763035.279326] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763035.485004] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421763035.691476] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763035.896970] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763036.105491] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.31 ms +[1421763036.316568] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.69 ms +[1421763036.529218] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.41 ms +[1421763036.744545] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421763036.966324] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421763037.189863] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421763037.406688] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421763037.634815] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421763037.859846] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421763038.143297] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.6 ms +[1421763038.349149] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763038.554651] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763038.760204] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763038.969045] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.80 ms +[1421763039.179973] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.48 ms +[1421763039.394615] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.3 ms +[1421763039.610877] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421763039.877562] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.2 ms +[1421763040.101080] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421763040.306449] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763040.512499] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763040.717879] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763040.923980] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763041.139728] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.0 ms +[1421763041.346135] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763041.551463] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763041.756334] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763041.962681] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763042.168456] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763042.374653] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763042.581000] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763042.786135] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763042.991313] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763043.196612] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763043.402153] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763043.607579] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763043.812931] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763044.018596] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763044.223729] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763044.428683] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763044.633960] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763044.839021] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763045.044317] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763045.249336] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763045.455478] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763045.661238] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763045.866815] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763046.072349] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763046.279167] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763046.484735] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763046.690449] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763046.895783] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763047.100870] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763047.306419] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763047.511638] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763047.717437] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421763047.922643] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763048.129486] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763048.335053] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763048.541609] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421763048.747048] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763048.952702] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421763049.158459] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763049.364299] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763049.569816] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763049.775093] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763049.981209] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763050.186984] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763050.392251] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763050.598768] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763050.804025] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763051.009238] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763051.214811] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763051.420002] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763051.625223] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763051.831021] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763052.037925] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421763052.243337] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763052.448425] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763052.654052] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763052.859678] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763053.064840] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421763053.270114] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763053.475211] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763053.681627] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763053.887158] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763054.092623] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763054.298280] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763054.503861] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763054.708982] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763054.915321] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763055.120593] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763055.326588] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421763055.532515] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763055.739093] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763055.944900] 1075 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763056.151345] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763056.356658] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763056.562103] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763056.767618] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763056.973095] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763057.178690] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763057.384719] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763057.591385] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763057.796796] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763058.002407] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763058.208697] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763058.413969] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763058.619583] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763058.825309] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763059.031154] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763059.237371] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763059.443131] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763059.649032] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763059.854563] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763060.060521] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763060.267044] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763060.472203] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763060.677742] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763060.882842] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763061.087967] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763061.293279] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763061.499185] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421763061.706197] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421763061.912094] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763062.117459] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763062.322398] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763062.528529] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763062.734832] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421763062.940628] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763063.146720] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421763063.352246] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763063.558326] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763063.763446] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763063.968582] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763064.175267] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763064.381079] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763064.587052] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763064.792554] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763064.999205] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763065.205630] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763065.411182] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763065.618294] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421763065.824117] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763066.030712] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763066.236988] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763066.442513] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763066.647501] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763066.852511] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763067.057491] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763067.263064] 1049 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763067.469871] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421763067.676378] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763067.882016] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421763068.088770] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763068.293906] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763068.499646] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763068.704644] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763068.909845] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763069.114786] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763069.319527] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763069.525508] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763069.730657] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763069.936833] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763070.142852] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763070.349270] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763070.554832] 1026 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763070.761445] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763070.967854] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763071.173366] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763071.378779] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763071.584179] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763071.789100] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763071.995414] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763072.201655] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763072.407303] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763072.613604] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763072.818752] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763073.025029] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421763073.231822] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763073.438367] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763073.643666] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763073.848661] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763074.054122] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763074.259557] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763074.465417] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763074.670605] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763074.875683] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763075.080942] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763075.286578] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421763075.492457] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763075.697576] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763075.902336] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763076.107931] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421763076.314556] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763076.520925] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763076.725735] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763076.931308] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763077.136785] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763077.342168] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763077.548023] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763077.753349] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763077.959058] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763078.164959] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763078.371498] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763078.576977] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763078.782123] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763078.988307] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763079.193346] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763079.398944] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763079.604064] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763079.810200] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421763080.015799] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763080.221184] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763080.427522] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763080.632903] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763080.838705] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763081.045183] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763081.250615] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763081.457427] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763081.662791] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763081.869685] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763082.074744] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763082.279753] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763082.486322] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763082.692503] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763082.897790] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763083.103162] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763083.308053] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763083.513346] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763083.719969] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763083.925409] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763084.130537] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763084.336486] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763084.542320] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763084.748093] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763084.954234] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763085.160713] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763085.365993] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763085.571239] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763085.775871] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763085.980908] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763086.186117] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763086.391256] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763086.597922] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421763086.803435] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763087.009849] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763087.215238] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763087.420136] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763087.625417] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763087.831376] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763088.037919] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763088.243646] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763088.449837] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763088.656129] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763088.861963] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763089.067593] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763089.273778] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763089.479746] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763089.686206] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763089.891850] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763090.097367] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421763090.302293] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763090.508023] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.94 ms +[1421763090.713334] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763090.919769] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763091.125963] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763091.330923] 296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763091.536538] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763091.741951] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763091.947748] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763092.153168] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763092.358377] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763092.564843] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763092.769849] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763092.975274] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763093.180699] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763093.385646] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763093.590399] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763093.795865] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763094.001894] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763094.207132] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763094.412752] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763094.618512] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763094.824075] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763095.028831] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763095.233784] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763095.439231] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763095.645494] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763095.851192] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763096.056419] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763096.262954] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763096.468673] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763096.674503] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763096.879988] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763097.085323] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.03 ms +[1421763097.290878] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763097.496694] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421763097.702362] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421763097.907250] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763098.112596] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763098.318083] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763098.523446] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763098.728302] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763098.934020] 1410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421763099.139793] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763099.345244] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763099.551938] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763099.757772] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763099.962956] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763100.169389] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.88 ms +[1421763100.374690] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763100.579941] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763100.786677] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763100.993546] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763101.199177] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763101.404723] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763101.611385] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421763101.816772] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763102.021696] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763102.226641] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763102.432345] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763102.650190] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421763102.860957] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.18 ms +[1421763103.101411] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.6 ms +[1421763103.319882] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421763103.539660] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421763103.765994] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421763103.991277] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421763104.218681] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421763104.443011] 1392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421763104.731668] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.7 ms +[1421763104.958468] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421763105.164083] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763105.369459] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763105.576059] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763105.784740] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.53 ms +[1421763106.011297] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421763106.223800] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.40 ms +[1421763106.474237] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.5 ms +[1421763106.697231] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421763106.918328] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421763107.202225] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.9 ms +[1421763107.484674] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.8 ms +[1421763107.766940] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.1 ms +[1421763107.989153] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421763108.195270] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763108.400999] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763108.606541] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763108.812741] 1529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763109.017907] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763109.223151] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763109.428770] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763109.636660] 1451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.89 ms +[1421763109.847387] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.74 ms +[1421763110.081695] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.1 ms +[1421763110.330153] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.2 ms +[1421763110.593369] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.1 ms +[1421763110.816852] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421763111.021888] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763111.226774] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763111.436598] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.01 ms +[1421763111.647838] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.03 ms +[1421763111.861654] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.23 ms +[1421763112.075662] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.3 ms +[1421763112.297027] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421763112.519960] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421763112.800990] 1870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.9 ms +[1421763113.068584] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=63.5 ms +[1421763113.294029] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421763113.517868] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421763113.794998] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.5 ms +[1421763114.000141] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763114.233972] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.2 ms +[1421763114.498996] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=61.3 ms +[1421763114.781875] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.4 ms +[1421763115.005048] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421763115.225130] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421763115.449904] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421763115.671463] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421763115.876939] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763116.081927] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763116.290505] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.91 ms +[1421763116.517746] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421763116.753464] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.4 ms +[1421763116.971942] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.1 ms +[1421763117.189918] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421763117.412802] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421763117.632621] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421763117.916732] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.1 ms +[1421763118.205080] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.4 ms +[1421763118.433653] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421763118.720116] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.3 ms +[1421763118.925788] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763119.131926] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763119.336968] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763119.542763] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763119.748784] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763119.954777] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763120.160227] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763120.366733] 1932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763120.572351] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763120.777859] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763120.983416] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763121.188700] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763121.394372] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763121.599810] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763121.816392] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.0 ms +[1421763122.026655] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.40 ms +[1421763122.239155] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.64 ms +[1421763122.491651] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.7 ms +[1421763122.697479] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763122.903102] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763123.108143] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763123.314020] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.99 ms +[1421763123.523347] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.06 ms +[1421763123.758609] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.2 ms +[1421763123.976514] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421763124.196892] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421763124.402135] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763124.607395] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763124.812869] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763125.018323] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763125.223306] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763125.428690] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763125.634226] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763125.840074] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763126.044884] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763126.251021] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763126.455880] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763126.662339] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763126.869849] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.27 ms +[1421763127.074499] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763127.279816] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763127.485139] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763127.690719] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763127.896339] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763128.100894] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763128.306875] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763128.513207] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763128.719197] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421763128.924669] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763129.130017] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763129.335335] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763129.540799] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763129.746999] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763129.953577] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763130.159853] 1522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421763130.365478] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763130.571089] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763130.776934] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421763130.982219] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763131.187470] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763131.393559] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763131.600050] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763131.805820] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763132.011309] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763132.217076] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763132.422210] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763132.628035] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763132.834217] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763133.040139] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763133.245422] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763133.450648] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763133.657154] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763133.862626] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763134.067743] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763134.272663] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763134.478073] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763134.683591] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763134.888562] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763135.093397] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763135.298624] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763135.503537] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763135.708533] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763135.914037] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763136.119894] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763136.326490] 1522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421763136.531934] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763136.738136] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421763136.943405] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763137.148270] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763137.353501] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763137.559014] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763137.764907] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763137.970462] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763138.176276] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.92 ms +[1421763138.382632] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763138.589016] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763138.795112] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763139.000828] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763139.205644] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763139.410926] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763139.616165] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763139.821340] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763140.026802] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763140.231643] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763140.437194] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763140.642836] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763140.848537] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763141.053362] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763141.258445] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763141.463690] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763141.669198] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763141.875533] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763142.081213] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421763142.286327] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763142.491222] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763142.696487] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763142.902217] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763143.107266] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763143.312283] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763143.517346] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763143.723276] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763143.929777] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763144.135089] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763144.341478] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763144.547095] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763144.752246] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763144.957550] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763145.163753] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763145.370067] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763145.575926] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763145.782626] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421763145.989238] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763146.195463] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763146.401268] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763146.608178] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763146.813373] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763147.018066] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763147.223929] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763147.429418] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763147.635154] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763147.840555] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763148.046473] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763148.252449] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763148.457767] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763148.664346] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763148.870544] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763149.075481] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763149.280514] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763149.487143] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763149.692789] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763149.899240] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763150.104385] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421763150.310245] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763150.515503] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763150.720555] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763150.925906] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763151.131224] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763151.336667] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763151.543398] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763151.749346] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763151.954813] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763152.159541] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763152.366046] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763152.571625] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763152.776695] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763152.981845] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763153.186977] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763153.391855] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763153.597320] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763153.802887] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763154.009646] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763154.214539] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763154.420525] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763154.625498] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763154.830554] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763155.036066] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763155.242075] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763155.446982] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763155.651796] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763155.857104] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763156.062500] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763156.267350] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763156.472673] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763156.678158] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763156.883789] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763157.088457] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763157.293453] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763157.506402] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.56 ms +[1421763157.712210] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763157.918161] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763158.123214] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763158.328538] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763158.534326] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421763158.739897] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763158.945317] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763159.150921] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763159.356346] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763159.561973] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763159.767253] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763159.972611] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763160.178212] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763160.383432] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763160.590045] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421763160.795651] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763161.000800] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763161.207340] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421763161.412635] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763161.618147] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763161.823784] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763162.031719] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.17 ms +[1421763162.243866] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.58 ms +[1421763162.461033] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421763162.674152] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.05 ms +[1421763162.895068] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421763163.115323] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421763163.346310] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.9 ms +[1421763163.571580] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421763163.798562] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421763164.019665] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421763164.243737] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421763164.470829] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421763164.676192] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763164.881489] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763165.087482] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763165.295271] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.88 ms +[1421763165.522666] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421763165.736940] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.2 ms +[1421763165.984921] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.2 ms +[1421763166.205325] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421763166.424465] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421763166.704954] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.5 ms +[1421763166.924278] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421763167.147009] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421763167.352124] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763167.557466] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763167.762542] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763167.968889] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763168.174693] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763168.380317] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763168.586739] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763168.792874] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763168.999488] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421763169.209459] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.85 ms +[1421763169.422905] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.18 ms +[1421763169.628690] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763169.834542] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763170.040019] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763170.245179] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763170.450670] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763170.656304] 1238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763170.861386] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763171.066435] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763171.272649] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421763171.478018] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421763171.683482] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763171.888905] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763172.093905] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763172.299086] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763172.505280] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763172.710422] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763172.915213] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763173.120289] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763173.325151] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763173.530786] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421763173.736498] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421763173.941478] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763174.146735] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763174.352218] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763174.557714] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763174.763943] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763174.969891] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763175.175194] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763175.380578] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763175.586188] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763175.792732] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421763175.998379] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763176.203582] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763176.408558] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763176.613809] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763176.819163] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763177.025162] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421763177.230152] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763177.435016] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763177.640498] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421763177.845981] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763178.052062] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421763178.257354] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763178.462369] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763178.667582] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763178.872383] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763179.077038] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763179.281947] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763179.487048] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763179.692045] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763179.897235] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763180.101950] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763180.306841] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763180.512411] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763180.717915] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763180.923330] 1063 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763181.128328] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763181.334459] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763181.540138] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763181.745590] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763181.951234] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763182.158097] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763182.364919] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421763182.570715] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763182.776797] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421763182.982469] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763183.187544] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763183.393808] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763183.599137] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763183.804751] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421763184.009769] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763184.215197] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763184.420922] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421763184.626591] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763184.832479] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763185.037308] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763185.242458] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763185.448727] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763185.654615] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763185.860710] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763186.066905] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421763186.272148] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763186.477231] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763186.683937] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763186.890448] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763187.095145] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763187.300334] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763187.506502] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763187.713054] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421763187.918289] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763188.123508] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763188.328747] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763188.534264] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763188.739506] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763188.944702] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763189.149946] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763189.355162] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763189.561703] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763189.768033] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763189.973022] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763190.179141] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763190.383794] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763190.589019] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763190.795338] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763191.000805] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763191.205984] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763191.412467] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763191.618564] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763191.824102] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763192.029407] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763192.234600] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763192.439571] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763192.645695] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763192.851180] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763193.057308] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763193.262817] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763193.469147] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763193.674178] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763193.879123] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763194.083903] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763194.288525] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763194.493724] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763194.699199] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763194.904602] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763195.109293] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763195.314249] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763195.519266] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763195.724485] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763195.931039] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763196.136697] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763196.345766] 1503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763196.552318] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421763196.759417] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.81 ms +[1421763196.964625] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763197.169656] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763197.374930] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763197.580696] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763197.785844] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763197.991297] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763198.197350] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763198.402872] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763198.608304] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763198.813682] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763199.018513] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763199.224024] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763199.430254] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763199.635662] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763199.841290] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763200.047369] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763200.253719] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421763200.459001] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763200.665104] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763200.871346] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763201.076848] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763201.282123] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763201.488076] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763201.694915] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763201.900204] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763202.104955] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763202.310622] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421763207.524169] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763207.729690] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763207.935385] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763208.141593] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763208.347005] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763208.553264] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421763208.760049] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763208.965726] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763209.171353] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763209.377105] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763209.582496] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763209.787909] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763209.994649] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763210.200220] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763210.405765] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763210.611497] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763210.817096] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763211.021941] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763211.227054] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763211.432507] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421763211.638942] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421763211.845046] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421763212.050721] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421763212.255627] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763212.460619] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763212.666025] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763212.871356] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763213.076387] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763213.281552] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763213.487328] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421763213.692309] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763213.897574] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763214.103578] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763214.308818] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763214.514601] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763214.720270] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763214.925925] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763215.131238] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763215.336330] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763215.541991] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763215.747576] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763215.953209] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763216.158333] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763216.363446] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763216.568882] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763216.774602] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763216.980469] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763217.185640] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763217.390789] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763217.596019] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763217.801446] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763218.007303] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763218.213038] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763218.418427] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763218.623855] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763218.830216] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763219.035232] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763219.240220] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763219.445770] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763219.652506] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763219.859241] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421763220.064819] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.85 ms +[1421763220.270062] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763220.475401] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763220.681167] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421763220.886576] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763221.091259] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763221.296660] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763221.503223] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763221.708938] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763221.914911] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763222.121104] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421763222.326353] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763222.533174] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763222.739239] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763222.945935] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421763223.152557] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763223.358791] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763223.563759] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763223.768827] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763223.975737] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763224.180972] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763224.386365] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763224.591858] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763224.797119] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763225.002859] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763225.208638] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763225.413738] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763225.618964] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763225.824026] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763226.030002] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763226.236269] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763226.442359] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763226.648905] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763226.855248] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763227.061377] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763227.267611] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763227.472572] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763227.678317] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421763227.883944] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763228.088861] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763228.294195] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763228.499441] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763228.704757] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763228.909686] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763229.115374] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763229.321241] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763229.526636] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763229.731932] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763229.937008] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763230.142019] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763230.347063] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763230.552842] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763230.757788] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763230.962907] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763231.169333] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763231.374421] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763231.580790] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763231.786841] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763231.993128] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763232.198260] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763232.403970] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763232.610636] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763232.815749] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763233.022994] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763233.228013] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763233.433117] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763233.638236] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763233.843874] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421763234.048922] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763234.254397] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763234.460184] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763234.666861] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763234.872255] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763235.077031] 825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763235.281826] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763235.487292] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763235.692825] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763235.897953] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421763236.102603] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763236.307792] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763236.513475] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763236.719507] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763236.925947] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763237.131787] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763237.337644] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763237.543123] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763237.749227] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763237.954460] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763238.159649] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763238.365045] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763238.570298] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763238.775484] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763238.981097] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763239.186656] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763239.391859] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763239.597857] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763239.804604] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763240.009783] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763240.214922] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763240.420073] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763240.625533] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763240.831256] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763241.037385] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763241.242862] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763241.448449] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421763241.654326] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763241.859894] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763242.065051] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763242.270272] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763242.478024] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.61 ms +[1421763242.689768] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.39 ms +[1421763242.907133] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421763243.125627] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.2 ms +[1421763243.330405] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763243.536126] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763243.741451] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763243.955021] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.18 ms +[1421763244.182062] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421763244.395835] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.54 ms +[1421763244.610922] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421763244.832837] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421763245.055656] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421763245.279483] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421763245.567690] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.0 ms +[1421763245.794069] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421763246.022739] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421763246.249453] 1451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421763246.476926] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421763246.763268] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.0 ms +[1421763246.992720] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.2 ms +[1421763247.224623] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.1 ms +[1421763247.429933] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763247.635127] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763247.840686] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763248.045758] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763248.250929] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763248.457632] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763248.668098] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.01 ms +[1421763248.873193] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763249.078008] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763249.283506] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763249.491283] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.48 ms +[1421763249.720164] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421763249.932581] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.01 ms +[1421763250.147856] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421763250.366329] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421763250.644327] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.8 ms +[1421763250.868403] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421763251.093718] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421763251.375777] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421763251.658777] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.7 ms +[1421763251.883953] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421763252.109688] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421763252.392254] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.6 ms +[1421763252.617767] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421763252.899040] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.1 ms +[1421763253.181892] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.7 ms +[1421763253.407740] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421763253.613491] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763253.819195] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763254.024184] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763254.231187] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.20 ms +[1421763254.463716] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.4 ms +[1421763254.679489] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421763254.895728] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421763255.114399] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421763255.337984] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421763255.565430] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421763255.790482] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421763256.011700] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421763256.241076] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.2 ms +[1421763256.526577] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.6 ms +[1421763256.754736] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421763256.973809] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421763257.201683] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421763257.428192] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421763257.646661] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.4 ms +[1421763257.876997] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.1 ms +[1421763258.082027] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763258.286864] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763258.492554] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763258.699386] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763258.906654] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.94 ms +[1421763259.112781] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763259.317932] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763259.523425] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763259.729280] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421763259.934392] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763260.139264] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763260.344987] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763260.550842] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421763260.756262] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763260.961173] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763261.165991] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421763261.371204] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763261.577694] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763261.782879] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763261.987978] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763262.193394] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763262.398655] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763262.605029] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763262.810198] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763263.016797] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763263.222115] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763263.427972] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763263.635333] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.93 ms +[1421763263.845701] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.88 ms +[1421763264.050707] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763264.257283] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763264.463648] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763264.669340] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763264.874811] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763265.079955] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763265.286023] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763265.491000] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763265.695889] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763265.901043] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763266.105932] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763266.310895] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763266.516640] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763266.727870] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.99 ms +[1421763266.933155] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763267.138157] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763267.344471] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421763267.550046] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763267.756438] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763267.962549] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763268.167956] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763268.373419] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763268.578694] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763268.784556] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763268.989860] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763269.195241] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763269.401514] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763269.607276] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763269.812945] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763270.018456] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763270.223515] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763270.429711] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421763270.634803] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763270.839881] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763271.044705] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763271.249971] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763271.456554] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763271.662731] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763271.867887] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763272.073704] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763272.278881] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763272.486032] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.93 ms +[1421763272.691412] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763272.897594] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763273.102922] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763273.308581] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763273.513855] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763273.719257] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763273.924821] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763274.130349] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763274.336652] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763274.542326] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763274.748787] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763274.954835] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763275.160136] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763275.365696] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763275.570887] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763275.775746] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763275.981339] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763276.186761] 1021 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763276.391994] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763276.597114] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763276.803348] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763277.009723] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763277.214858] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763277.421642] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763277.627374] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763277.832323] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763278.037835] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763278.242747] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763278.449203] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763278.655695] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763278.861223] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763279.066193] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763279.272246] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763279.477582] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763279.683162] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763279.888734] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763280.093952] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763280.299385] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421763280.505000] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763280.710480] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763280.915943] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763281.121221] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421763281.326584] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763281.531546] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763281.736874] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763281.942500] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763282.147388] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763282.352916] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763282.559225] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763282.765891] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763282.971276] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763283.176230] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763283.381372] 1063 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763283.587571] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763283.793231] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763283.998486] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421763284.203692] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763284.409113] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763284.614349] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763284.819392] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421763285.025481] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421763285.230651] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763285.435510] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763285.641295] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763285.847117] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763286.052975] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763286.259388] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763286.464750] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763286.669703] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763286.874779] 841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763287.079781] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763287.285147] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763287.490300] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763287.696214] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763287.902699] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421763288.107910] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763288.313541] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763288.519146] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763288.724652] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763288.930514] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763289.135819] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421763289.342031] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763289.547712] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763289.752826] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763289.959633] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763290.165037] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763290.370497] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763290.575793] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763290.780937] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763290.987535] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763291.194012] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763291.398851] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763291.604178] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763291.810203] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421763292.016370] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421763292.221519] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763292.427475] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763292.632972] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763292.838484] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763293.043606] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763293.249414] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421763293.455277] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421763293.660357] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763293.866691] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763294.072732] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763294.278128] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763294.483808] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763294.689368] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763294.895633] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763295.100491] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763295.305852] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763295.511449] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763295.716973] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763295.922207] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763296.127350] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763296.332681] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763296.538396] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763296.743696] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763296.948558] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763297.153720] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763297.361332] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763297.567010] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763297.774148] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421763297.979818] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421763298.185241] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763298.390339] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763298.595289] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763298.801550] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763299.008022] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763299.218418] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.11 ms +[1421763299.424783] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763299.630170] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763299.835827] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763300.040612] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763300.245689] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763300.451389] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763300.657469] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421763300.863049] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763301.067778] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763301.273080] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763301.479760] 1612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.85 ms +[1421763301.695492] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421763301.924343] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421763302.139068] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421763302.345127] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763302.550115] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763302.756050] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763302.961621] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763303.166513] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763303.371839] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763303.576750] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763303.782154] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763303.987249] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763304.192839] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421763304.398144] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763304.603564] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763304.809678] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763305.015273] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763305.220750] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763305.426042] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763305.632060] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421763305.839977] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763306.044642] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763306.249805] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763306.455075] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763306.661050] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763306.867702] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763307.072270] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763307.277715] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763307.484045] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763307.689508] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421763307.895106] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763308.100066] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763308.305328] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763308.510979] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763308.716329] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763308.922961] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763309.128627] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763309.334721] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763309.540483] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763309.745487] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763309.950249] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763310.155491] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763310.360565] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763310.565262] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763310.771499] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763310.978007] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763311.183124] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763311.388572] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763311.594373] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763311.800083] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763312.005195] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763312.210490] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763312.415487] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763312.621075] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763312.827601] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763313.032701] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763313.238509] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763313.443573] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763313.649502] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763313.854672] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763314.060409] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763314.265504] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763314.470905] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763314.676322] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763314.881595] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763315.086713] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763315.291779] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763315.497613] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763315.703281] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763315.909042] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763316.114689] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763316.320081] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763316.524760] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763316.729488] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763316.934541] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763317.139702] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763317.344845] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763317.550711] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763317.756502] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763317.962726] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.88 ms +[1421763318.168534] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763318.373667] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763318.579465] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763318.785517] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763318.992043] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421763319.198414] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763319.403557] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763319.608582] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763319.814174] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763320.020003] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763320.225217] 825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763320.430141] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763320.636394] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421763320.842925] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763321.048407] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763321.253830] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763321.459282] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763321.664367] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763321.869676] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763322.074465] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763322.279487] 814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763322.485498] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763322.690766] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763322.896067] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763323.100982] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763323.307088] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763323.513577] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763323.719662] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421763323.924572] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763324.129423] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763324.335458] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763324.540964] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763324.746519] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763324.952044] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763325.157305] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763325.364067] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.13 ms +[1421763325.569836] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763325.775207] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763325.980667] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763326.186189] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763326.391446] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763326.597025] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763326.805115] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421763327.011003] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763327.216579] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763327.423074] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421763327.629158] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763327.835123] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763328.041380] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763328.246423] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763328.451709] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763328.657489] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763328.864114] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763329.070296] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763329.276180] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763329.481792] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763329.688045] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763329.894003] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763330.099461] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421763330.304686] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763330.511397] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763330.718014] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763330.923597] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763331.129795] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763331.335165] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763331.541141] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763331.747604] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763331.953224] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763332.158850] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763332.364249] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763332.571252] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.76 ms +[1421763332.776826] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763332.983140] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421763333.188646] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763333.393711] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763333.598659] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763333.803613] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763334.008837] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763334.214735] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763334.420630] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.96 ms +[1421763334.625841] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763334.831404] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763335.036992] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763335.242490] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763335.448928] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763335.653890] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763335.859027] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763336.064039] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763336.269211] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763336.474499] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763336.679845] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763336.886576] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763337.091913] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763337.297520] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763337.503268] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763337.709881] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421763337.915625] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763338.120327] 512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763338.326577] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763338.532090] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763338.737556] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763338.943316] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763339.148611] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763339.353765] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763339.558770] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763339.763869] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763339.970596] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763340.176495] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763340.381797] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763340.587730] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763340.792845] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763340.998110] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421763341.202988] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763341.409101] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763341.614880] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421763341.820568] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763342.025356] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763342.231603] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763342.438098] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763342.643811] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763342.849646] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763343.055641] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421763343.260626] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763343.466065] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763343.671890] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763343.878467] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763344.083857] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421763344.288794] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763344.494088] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763344.699378] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763344.904955] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763345.109706] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763345.316086] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421763345.522682] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763345.729232] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763345.935907] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763346.141224] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763346.346566] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763346.551467] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763346.757722] 1913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763346.962842] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763347.167703] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763347.372808] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763347.578504] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763347.785390] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763347.990861] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763348.197037] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763348.402466] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763348.609109] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763348.814664] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763349.020533] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763349.226900] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763349.432999] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421763349.638948] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421763349.845049] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763350.050226] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763350.255251] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763350.461356] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763350.666758] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763350.872523] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763351.077773] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763351.283066] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763351.489016] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763351.694377] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763351.899856] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763352.105550] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763352.310455] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763352.516682] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763352.722715] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763352.928065] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763353.133041] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763353.339080] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421763353.544270] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763353.750315] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763353.955524] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763354.160591] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763354.365816] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763354.571503] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763354.778066] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763354.983337] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763355.189208] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421763355.394265] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763355.600444] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763355.805828] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763356.010735] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763356.215652] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763356.420573] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763356.626966] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763356.833828] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763357.040004] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763357.245553] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763357.451091] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763357.657851] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421763357.863398] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763358.068302] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763358.274327] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763358.479967] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763358.686660] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763358.893332] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763359.098087] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763359.303387] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763359.509743] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763359.715499] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763359.920932] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763360.126418] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763360.331644] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763360.536926] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763360.743908] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763360.950422] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763361.155997] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763361.360792] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763361.567352] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763361.772486] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763361.978408] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763362.184498] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763362.389779] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763362.595072] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763362.800679] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763363.005733] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763363.211320] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763363.417627] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763363.623389] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763363.828632] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763364.034697] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763364.239539] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763364.445070] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763364.652071] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421763364.857692] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763365.062591] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763365.267396] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763365.472903] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763365.677900] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763365.883098] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763366.089454] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763366.295826] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421763366.501837] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421763366.708081] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421763366.913616] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763367.119681] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421763367.325116] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763367.531797] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763367.738164] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763367.944707] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763368.151133] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763368.356879] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763368.571151] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.3 ms +[1421763368.783135] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.80 ms +[1421763369.025469] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.4 ms +[1421763369.245888] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421763369.467368] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421763369.746602] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.0 ms +[1421763369.966774] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421763370.193211] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421763370.398928] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763370.604790] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763370.810495] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763371.015706] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763371.220994] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763371.429424] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.44 ms +[1421763371.640843] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.19 ms +[1421763371.857739] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421763372.062901] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421763372.268139] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763372.476712] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.21 ms +[1421763372.693178] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.2 ms +[1421763372.905041] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.53 ms +[1421763373.118100] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.08 ms +[1421763373.334809] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421763373.555657] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421763373.779464] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421763374.059658] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.0 ms +[1421763374.340615] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.1 ms +[1421763374.562077] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763374.782536] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421763374.989066] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763375.194395] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763375.399512] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763375.605073] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763375.811427] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763376.016836] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763376.223791] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.11 ms +[1421763376.432217] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.35 ms +[1421763376.643304] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.72 ms +[1421763376.856063] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.71 ms +[1421763377.069271] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.49 ms +[1421763377.287208] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421763377.512717] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421763377.739258] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421763377.945001] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763378.151509] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763378.356951] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763378.563463] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421763378.774118] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.20 ms +[1421763378.988614] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421763379.201524] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.83 ms +[1421763379.423693] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421763379.647931] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421763379.870140] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421763380.092617] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421763380.318322] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421763380.600855] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.3 ms +[1421763380.823139] 130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421763381.044611] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.7 ms +[1421763381.273545] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.0 ms +[1421763381.490173] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421763381.719125] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421763381.940065] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421763382.167073] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421763382.454428] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.2 ms +[1421763382.659661] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763382.865673] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421763383.071459] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763383.280212] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.09 ms +[1421763383.492845] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.69 ms +[1421763383.708671] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421763383.925500] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421763384.146160] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421763384.426715] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.5 ms +[1421763384.650008] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421763384.877152] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421763385.102502] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421763385.328569] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421763385.576554] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.7 ms +[1421763385.795671] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421763386.017759] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421763386.243319] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421763386.517433] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.7 ms +[1421763386.805541] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.8 ms +[1421763387.031195] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421763387.314630] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.1 ms +[1421763387.520370] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763387.726403] 847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763387.931709] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763388.139547] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.78 ms +[1421763388.345326] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763388.550366] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763388.756209] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763388.963051] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763389.168337] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763389.373897] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763389.580407] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763389.785898] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763389.992175] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763390.198845] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763390.409461] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.63 ms +[1421763390.614498] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763390.819713] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763391.024417] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763391.229254] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763391.434961] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763391.640114] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763391.845933] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763392.051323] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421763392.256694] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763392.462377] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763392.668151] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763392.873665] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763393.078403] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763393.283462] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421763393.489143] 145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763393.695785] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763393.901558] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763394.106534] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763394.312859] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763394.519502] 1888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763394.726557] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763394.932330] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763395.137290] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763395.342260] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763395.548598] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763395.753732] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763395.959873] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763396.164949] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763396.371492] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763396.577397] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763396.782616] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763396.988431] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763397.193881] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763397.399681] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421763397.605107] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763397.810564] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763398.015342] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763398.220586] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763398.426887] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763398.633288] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763398.838476] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763399.043710] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763399.249783] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421763399.455189] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763399.661077] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763399.868144] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.83 ms +[1421763400.073320] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763400.278454] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763400.483833] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763400.689037] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763400.895816] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763401.101347] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763401.306352] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763401.512377] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763401.717864] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763401.923899] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421763402.129730] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763402.334883] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763402.540645] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763402.746318] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763402.951847] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421763403.157341] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763403.362454] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763403.567941] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763403.773460] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763403.978447] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763404.184670] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763404.390219] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763404.596841] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763404.802772] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763405.008279] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763405.213875] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763405.419070] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763405.625110] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421763405.831447] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421763406.036625] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763406.241585] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763406.447706] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763406.653015] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763406.861192] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763407.067016] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763407.271895] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763407.477074] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763407.682319] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763407.887893] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763408.092725] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763408.297936] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763408.503225] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763408.708548] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763408.915082] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763409.121233] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421763409.326300] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763409.532563] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763409.737707] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763409.943659] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763410.150128] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763410.355800] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421763410.561420] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763410.767270] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763410.973572] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763411.178594] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763411.384521] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421763411.589793] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763411.795228] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763412.000802] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763412.206155] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763412.410969] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763412.616201] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763412.821678] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763413.027110] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763413.232250] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763413.437383] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763413.643552] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763413.849405] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763414.054673] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763414.260826] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763414.466417] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763414.671767] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763414.878011] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421763415.082824] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763415.287857] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763415.492940] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763415.698491] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763415.904394] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763416.110192] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763416.315036] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763416.520750] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763416.726225] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763416.931877] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763417.136727] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763417.342044] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763417.547364] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763417.752710] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763417.959250] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763418.164207] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763418.369934] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763418.576512] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763418.782024] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763418.987333] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763419.193689] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763419.399846] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763419.605603] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763419.812830] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.96 ms +[1421763420.037493] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421763420.252063] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421763420.497236] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=41.0 ms +[1421763420.717079] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421763420.942914] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421763421.224657] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.4 ms +[1421763421.430369] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763421.636154] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763421.875260] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.7 ms +[1421763422.096334] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421763422.320976] 1133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421763422.543503] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421763422.771704] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421763423.057752] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.1 ms +[1421763423.283523] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421763423.557026] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.3 ms +[1421763423.784479] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421763423.990257] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763424.195631] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763424.401128] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763424.606802] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763424.813516] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.01 ms +[1421763425.022849] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.62 ms +[1421763425.242093] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421763425.457432] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421763425.677002] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421763425.902833] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421763426.129301] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421763426.349565] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421763426.630435] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.5 ms +[1421763426.859224] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421763427.089018] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421763427.294504] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763427.521590] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421763427.745247] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421763427.968210] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421763428.193054] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421763428.418578] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421763428.644229] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421763428.850105] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763429.054695] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763429.260888] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763429.468684] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.63 ms +[1421763429.678825] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.19 ms +[1421763429.885198] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763430.089727] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763430.295498] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763430.501337] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763430.707355] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763430.912714] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763431.117702] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763431.323266] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763431.528663] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763431.735230] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421763431.940799] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763432.145912] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763432.351775] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421763432.557094] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763432.762633] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763432.967762] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763433.174269] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763433.380496] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763433.585923] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763433.791432] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763433.996618] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763434.202103] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421763434.406715] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763434.612999] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763434.819403] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763435.025985] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763435.231176] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763435.437487] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763435.642784] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763435.849197] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763436.055600] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421763436.260359] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421763436.465676] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763436.671425] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763436.878281] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763437.083164] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763437.288302] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763437.493422] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763437.706168] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.97 ms +[1421763437.920647] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.81 ms +[1421763438.126782] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763438.332555] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763438.539221] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763438.744889] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763438.950225] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763439.155493] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763439.360738] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763439.569754] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.24 ms +[1421763439.775255] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763439.980765] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763440.187191] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421763440.397566] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.20 ms +[1421763440.604188] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763440.809921] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763441.015961] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421763441.222389] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763441.428107] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763441.633664] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763441.838628] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763442.043291] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763442.248296] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763442.456173] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.73 ms +[1421763442.685573] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.3 ms +[1421763442.890890] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763443.095565] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763443.300713] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763443.506262] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763443.714808] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.15 ms +[1421763443.920123] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763444.125514] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763444.334662] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.41 ms +[1421763444.540545] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763444.746456] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421763444.953084] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763445.158570] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763445.363572] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763445.578871] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421763445.784684] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763445.997625] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.66 ms +[1421763446.203163] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763446.459116] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.9 ms +[1421763446.667572] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.84 ms +[1421763446.873460] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763447.081543] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.23 ms +[1421763447.286499] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763447.517190] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.7 ms +[1421763447.723095] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763447.929536] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763448.160632] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.3 ms +[1421763448.365948] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763448.570866] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763448.776340] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763448.981844] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763449.202528] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421763449.407889] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763449.613371] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763449.818916] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763450.024067] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763450.230333] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763450.449680] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421763450.656404] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763450.862136] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763451.066682] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763451.273629] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.12 ms +[1421763451.486835] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.64 ms +[1421763451.692533] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763451.898180] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763452.107199] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.46 ms +[1421763452.312749] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763452.519553] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763452.725275] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763452.930178] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763453.135469] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763453.349067] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.75 ms +[1421763453.555899] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763453.761342] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763453.968243] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.74 ms +[1421763454.173816] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763454.379379] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421763454.586097] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763454.792505] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763454.998284] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763455.203249] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763455.409621] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763455.615276] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763455.820617] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763456.033110] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.81 ms +[1421763456.238420] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763456.443594] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763456.648827] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763456.854101] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763457.060660] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763457.265442] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763457.470637] 296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763457.676278] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763457.881820] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763458.087946] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763458.293217] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763458.499394] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763458.704793] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763458.909811] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763459.115936] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763459.321131] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763459.526614] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763459.732147] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763459.937571] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763460.143096] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763460.348550] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763460.554171] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763460.760066] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763460.967191] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763461.172811] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763461.378115] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763461.583784] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421763461.789048] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763461.993990] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763462.200944] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421763462.406043] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763462.611533] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763462.818597] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763463.024346] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763463.229729] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763463.434998] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763463.641358] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421763463.846959] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763464.051872] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763464.257860] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763464.463238] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763464.669800] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763464.875119] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763465.080019] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763465.285176] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763465.491104] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421763465.696649] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763465.902631] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763466.108068] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763466.313137] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763466.518767] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421763466.725234] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763466.930852] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763467.136865] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763467.341866] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763467.551699] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.77 ms +[1421763467.764445] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.49 ms +[1421763467.976038] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.91 ms +[1421763468.220965] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=40.6 ms +[1421763468.441784] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421763468.665453] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421763468.945958] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.5 ms +[1421763469.172405] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421763469.400718] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421763469.622422] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.7 ms +[1421763469.885504] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.0 ms +[1421763470.147332] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=57.5 ms +[1421763470.373330] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421763470.580813] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.14 ms +[1421763470.792611] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.46 ms +[1421763470.998186] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421763471.205711] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.40 ms +[1421763471.437035] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.1 ms +[1421763471.680724] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.1 ms +[1421763471.897183] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421763472.157293] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.2 ms +[1421763472.435507] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.2 ms +[1421763472.661224] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421763472.882009] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421763473.087011] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763473.316482] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421763473.541656] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421763473.827879] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.8 ms +[1421763474.116027] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.5 ms +[1421763474.342895] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421763474.567453] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421763474.796944] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.4 ms +[1421763475.082296] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.0 ms +[1421763475.305590] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421763475.511115] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763475.717796] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763475.929912] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.59 ms +[1421763476.140065] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.97 ms +[1421763476.349779] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.58 ms +[1421763476.564234] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.3 ms +[1421763476.814977] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.6 ms +[1421763477.071143] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=52.4 ms +[1421763477.293671] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421763477.521930] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421763477.750389] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421763477.977499] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421763478.204064] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421763478.409478] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763478.692680] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.2 ms +[1421763478.975523] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.7 ms +[1421763479.200847] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421763479.424381] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421763479.705944] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.1 ms +[1421763479.925824] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.7 ms +[1421763480.131104] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763480.337859] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763480.544340] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763480.749644] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421763480.958123] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.71 ms +[1421763481.188629] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.4 ms +[1421763481.405320] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421763481.622511] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421763481.840915] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421763482.061663] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421763482.337386] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.6 ms +[1421763482.561437] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421763482.784694] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421763483.006315] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.7 ms +[1421763483.212507] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763483.443553] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.8 ms +[1421763483.672687] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421763483.889989] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421763484.173673] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.7 ms +[1421763484.437620] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.1 ms +[1421763484.643465] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763484.849342] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763485.054503] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763485.260445] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763485.465718] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763485.671559] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763485.916791] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=41.1 ms +[1421763486.122021] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763486.327064] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421763486.532220] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763486.737159] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763486.949927] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.94 ms +[1421763487.155579] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763487.361051] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421763487.591006] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421763487.797520] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421763488.003345] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763488.208807] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763488.447601] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.5 ms +[1421763488.669589] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421763488.880904] 1261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.08 ms +[1421763489.086051] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763489.303654] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421763489.510153] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763489.715997] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763489.921362] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763490.126878] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763490.347335] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421763490.553098] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763490.760126] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421763490.965668] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763491.171164] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763491.377880] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763491.583637] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763491.790059] 1566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763491.995590] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763492.200901] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763492.406019] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763492.611765] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763492.818396] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763493.023458] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763493.229013] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763493.435603] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763493.641153] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763493.846541] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763494.051490] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763494.257805] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421763494.463042] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763494.668384] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763494.873816] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763495.078617] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763495.284191] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763495.489085] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763495.694085] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763495.899394] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763496.105405] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763496.311641] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763496.516889] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763496.722437] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763496.928288] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763497.133118] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763497.338586] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763497.544120] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763497.750502] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763497.955831] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763498.161158] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763498.366578] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763498.573257] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421763498.778230] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763498.984863] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763499.190055] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763499.395555] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763499.601107] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763499.807887] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763500.012970] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763500.219334] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763500.424410] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763500.630243] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763500.835799] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763501.040319] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763501.246085] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763501.451966] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763501.658316] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763501.864009] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763502.068544] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763502.273622] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763502.479980] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763502.685480] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763502.891870] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763503.096981] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763503.302255] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763503.508348] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763503.713383] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763503.919371] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763504.124934] 1261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763504.329969] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763504.535032] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763504.741633] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763504.947307] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763505.152619] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763505.357645] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763505.562818] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763505.768249] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763505.973340] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763506.179668] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763506.385552] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763506.591847] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763506.797102] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763507.002562] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763507.207619] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421763507.412975] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763507.619653] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763507.826665] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421763508.032091] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421763508.237459] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763508.442712] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763508.647766] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763508.854141] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763509.060694] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763509.265856] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763509.471361] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763509.678067] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763509.884434] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763510.090159] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763510.295521] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763510.500972] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763510.706800] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763510.912542] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763511.117412] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763511.322231] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763511.528545] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763511.734561] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763511.940187] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763512.145321] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763512.350815] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.93 ms +[1421763512.556120] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763512.761657] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763512.967257] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763513.172842] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763513.378164] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763513.583338] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763513.789435] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763513.994808] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763514.201132] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763514.406154] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763514.612118] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421763514.818377] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.87 ms +[1421763515.023937] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421763515.229708] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763515.435239] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763515.641908] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763515.847218] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763516.052243] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763516.257541] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763516.464186] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763516.669612] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763516.876078] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763517.081193] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763517.286057] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763517.491255] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763517.697612] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763517.903758] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421763518.109641] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421763518.314736] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763518.521112] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763518.726819] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763518.933088] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763519.138159] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763519.344045] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763519.549799] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763519.756599] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763519.963088] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763520.168739] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763520.374141] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763520.580766] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763520.786590] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763520.992121] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763521.197425] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763521.402396] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763521.607244] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763521.813829] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763522.020704] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763522.225601] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763522.431123] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.87 ms +[1421763522.637998] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.72 ms +[1421763522.843552] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763523.049875] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763523.254885] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763523.460504] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763523.665659] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763523.872618] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421763524.077695] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763524.283571] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763524.489227] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763524.695230] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763524.901348] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763525.106468] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763525.312837] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421763525.517744] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763525.724164] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763525.930506] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421763526.135482] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763526.342020] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421763526.547552] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763526.753269] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763526.960057] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763527.166285] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763527.371285] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763527.576685] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763527.783338] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421763527.989133] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763528.194732] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763528.400464] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421763528.605450] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763528.811328] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763529.016807] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763529.222031] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763529.428556] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763529.634132] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763529.838986] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763530.044795] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763530.250310] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421763530.456358] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421763530.662507] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763530.867789] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763531.073106] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763531.278556] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763531.484128] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763531.690101] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763531.895354] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763532.100803] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763532.305930] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763532.512028] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763532.717869] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763532.923979] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763533.129001] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763533.334270] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763533.540532] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763533.746755] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763533.952071] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763534.157053] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763534.362917] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421763534.568311] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763534.773609] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763534.979490] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763535.185775] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763535.391801] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421763535.598415] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763535.804740] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763536.010843] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421763536.216185] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763536.421602] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763536.627313] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763536.833927] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763537.039122] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763537.243989] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763537.449456] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763537.656068] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763537.862940] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421763538.069189] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763538.274361] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763538.479633] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763538.685002] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763538.890311] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763539.096126] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763539.301414] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763539.507080] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763539.712033] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763539.917313] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763540.122365] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763540.327504] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763540.534097] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763540.740000] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763540.945637] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763541.153914] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421763541.359263] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763541.565084] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421763541.770964] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763541.976692] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763542.183191] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763542.388921] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763542.594121] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763542.799963] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763543.005221] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763543.210799] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763543.415705] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763543.620632] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763543.825929] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763544.031025] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763544.236161] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763544.441208] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763544.646866] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763544.852655] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763545.057900] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763545.262789] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763545.468911] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763545.675401] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763545.881641] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421763546.086897] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763546.292033] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421763546.498159] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763546.703437] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763546.908433] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763547.113153] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763547.319123] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421763547.524847] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763547.730868] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763547.937215] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421763548.142735] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763548.347741] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763548.554554] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763548.759963] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763548.966144] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421763549.172478] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763549.377822] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763549.583878] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763549.789358] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763549.994570] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763550.200614] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763550.406515] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763550.612358] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763550.819096] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421763551.025157] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763551.230731] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763551.435864] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763551.642199] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763551.847356] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763552.053126] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763552.259895] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763552.465419] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763552.671987] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763552.877695] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763553.083011] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763553.289136] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763553.494480] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763553.700209] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763553.905506] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763554.110726] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763554.315753] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763554.522348] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763554.727975] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763554.934670] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763555.141599] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.81 ms +[1421763555.347122] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763555.552893] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763555.759842] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763555.965388] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763556.173512] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.91 ms +[1421763556.384381] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.44 ms +[1421763556.600587] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421763556.820801] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421763557.038317] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421763557.262301] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421763557.545653] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.9 ms +[1421763557.771411] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421763557.998412] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421763558.223311] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421763558.452830] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.2 ms +[1421763558.739676] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.3 ms +[1421763558.970457] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.3 ms +[1421763559.191317] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421763559.416295] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421763559.638218] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.7 ms +[1421763559.867280] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421763560.093926] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421763560.299232] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763560.504727] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763560.716475] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.97 ms +[1421763560.926639] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.92 ms +[1421763561.163195] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.5 ms +[1421763561.411504] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.3 ms +[1421763561.630530] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421763561.856719] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421763562.140771] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.0 ms +[1421763562.365020] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421763562.640266] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.0 ms +[1421763562.861030] 1021 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421763563.139987] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.0 ms +[1421763563.424656] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.9 ms +[1421763563.643101] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421763563.869757] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421763564.099559] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421763564.328027] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421763564.558703] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.3 ms +[1421763564.779184] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421763565.003337] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421763565.210209] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763565.415245] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763565.621437] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.05 ms +[1421763565.844691] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421763566.057638] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.04 ms +[1421763566.274102] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421763566.494457] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421763566.770529] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.9 ms +[1421763566.994626] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421763567.271652] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.1 ms +[1421763567.494779] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421763567.776628] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.7 ms +[1421763568.000724] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421763568.223182] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421763568.505258] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.2 ms +[1421763568.786956] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.4 ms +[1421763569.010996] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421763569.240070] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421763569.466479] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421763569.749399] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.2 ms +[1421763569.955512] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763570.160892] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763570.366340] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763570.572778] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763570.777866] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763570.982933] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763571.187803] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763571.394130] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763571.599309] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763571.806304] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763572.011449] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763572.216706] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763572.422049] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763572.627157] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763572.833750] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763573.039062] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763573.244106] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763573.449602] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763573.655698] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763573.860791] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763574.065998] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763574.271456] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763574.479134] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763574.705218] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421763574.920815] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421763575.137094] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421763575.357290] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421763575.582650] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421763575.809878] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421763576.089436] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.3 ms +[1421763576.315691] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421763576.543046] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421763576.749181] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763577.031488] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421763577.254457] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421763577.479567] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421763577.705983] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421763577.933944] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421763578.162460] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421763578.390927] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421763578.597083] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763578.802902] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763579.008311] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763579.216649] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.04 ms +[1421763579.427024] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.36 ms +[1421763579.666191] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.5 ms +[1421763579.871898] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763580.077673] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763580.283656] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763580.488735] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763580.694126] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763580.900521] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763581.105443] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763581.311505] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763581.518308] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763581.723676] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763581.928948] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763582.134994] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763582.340043] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763582.545117] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763582.751192] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421763582.957852] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421763583.163220] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763583.369110] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763583.575599] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763583.781321] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763583.986425] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763584.191774] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763584.396704] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763584.602076] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763584.807884] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421763585.015796] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763585.220946] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763585.426375] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763585.632076] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763585.837170] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763586.042255] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763586.247568] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763586.452942] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763586.658783] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421763586.864914] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763587.070995] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763587.275892] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763587.481262] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763587.687086] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763587.893025] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763588.099215] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421763588.304652] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763588.511305] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421763588.716902] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763588.922567] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763589.128537] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763589.333844] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763589.539420] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763589.744905] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763589.950484] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763590.156386] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763590.361692] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763590.567643] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763590.773477] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763590.980215] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763591.187145] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763591.392138] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763591.597400] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763591.802402] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763592.007816] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763592.213301] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763592.418323] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763592.624623] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763592.829711] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763593.034797] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763593.241131] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763593.446375] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763593.651949] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763593.857477] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763594.063500] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763594.269979] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763594.476012] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763594.682544] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763594.887801] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763595.092679] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763595.297800] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763595.503080] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763595.708676] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763595.914356] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763596.119287] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763596.325200] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763596.530411] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763596.736087] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763596.941855] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763597.147203] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763597.352149] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763597.557517] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763597.762962] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763597.970199] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421763598.176395] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763598.382748] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763598.588246] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421763598.794438] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763598.999926] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763599.205134] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763599.410631] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763599.616372] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763599.822327] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763600.027119] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763600.232425] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763600.439449] 1897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763600.644622] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763600.850312] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763601.055376] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763601.261505] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763601.467058] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763601.672765] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763601.878313] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763602.083555] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763602.288327] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763602.493143] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421763602.699336] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763602.904371] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763603.109333] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763603.314150] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421763603.519711] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763603.726045] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763603.932104] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421763604.136907] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763604.342256] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763604.548884] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763604.755026] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763604.960407] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763605.165676] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763605.371913] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763605.577718] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763605.784407] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763605.991294] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763606.199910] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.50 ms +[1421763606.405141] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763606.610516] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763606.816137] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763607.020698] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763607.226828] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763607.433287] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763607.639087] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763607.844767] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763608.050000] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763608.255439] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421763608.461048] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763608.666913] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763608.872804] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763609.077517] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763609.283683] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421763609.490410] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421763609.695504] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763609.902165] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763610.106929] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763610.313481] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763610.520174] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763610.727364] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763610.933952] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763611.139231] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763611.345155] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763611.550824] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763611.757589] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763611.962882] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763612.167802] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763612.373204] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763612.579463] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421763612.785897] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763612.991213] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763613.196628] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763613.401567] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763613.607160] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763613.813653] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763614.019034] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763614.224144] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763614.429553] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763614.635250] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763614.841306] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763615.047623] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763615.252795] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763615.458083] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763615.663490] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763615.868682] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763616.073625] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763616.279098] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763616.484426] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763616.689812] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763616.895459] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763617.101037] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763617.307359] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763617.513687] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763617.719495] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763617.926142] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421763618.132031] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763618.337221] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763618.542389] 841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763618.747684] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763618.953344] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763619.159078] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763619.366855] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.70 ms +[1421763619.572747] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763619.779353] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763619.984655] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763620.190303] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763620.395258] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763620.600874] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763620.807438] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763621.012774] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763621.217949] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763621.423314] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763621.629692] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763621.836123] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763622.042234] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763622.247621] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763622.453150] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763622.658712] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763622.864253] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763623.073318] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.52 ms +[1421763623.279133] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421763623.484614] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763623.690187] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763623.896805] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763624.102784] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763624.308110] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763624.514211] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763624.719924] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763624.925423] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763625.130389] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763625.335664] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763625.541116] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763625.747089] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763625.952614] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763626.157631] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763626.362755] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763626.576160] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.53 ms +[1421763626.781768] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763626.988689] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763627.194011] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763627.449216] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.2 ms +[1421763627.655322] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763627.866478] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.09 ms +[1421763628.078979] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.78 ms +[1421763628.284276] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763628.489635] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763628.695057] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763628.900271] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763629.138365] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.5 ms +[1421763629.343757] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763629.551470] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.01 ms +[1421763629.762536] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.81 ms +[1421763629.975364] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.68 ms +[1421763630.191086] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.0 ms +[1421763630.449632] 1612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=54.2 ms +[1421763630.685015] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.5 ms +[1421763630.911395] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421763631.138265] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421763631.364777] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421763631.591473] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421763631.862860] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=67.3 ms +[1421763632.094473] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.8 ms +[1421763632.321624] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421763632.538281] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421763632.744093] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763632.952339] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.14 ms +[1421763633.163105] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.35 ms +[1421763633.386686] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421763633.608173] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421763633.827347] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421763634.050105] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421763634.276340] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421763634.560503] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.1 ms +[1421763634.784004] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421763635.008677] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421763635.299119] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=86.4 ms +[1421763635.506234] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.03 ms +[1421763635.712158] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763635.917092] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763636.126422] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.61 ms +[1421763636.331721] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763636.538197] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763636.744025] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763636.949679] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763637.155867] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.00 ms +[1421763637.368697] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.95 ms +[1421763637.579199] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.93 ms +[1421763637.791612] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.03 ms +[1421763638.030179] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.0 ms +[1421763638.288441] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=53.8 ms +[1421763638.508432] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.7 ms +[1421763638.714183] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763638.920468] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763639.132604] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.10 ms +[1421763639.343213] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.38 ms +[1421763639.583694] 1541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.8 ms +[1421763639.834004] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.0 ms +[1421763640.097908] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.6 ms +[1421763640.334470] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.4 ms +[1421763640.619734] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.3 ms +[1421763640.825162] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763641.030485] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763641.235591] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763641.441511] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763641.647123] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763641.853149] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763642.094354] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=37.3 ms +[1421763642.333415] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.9 ms +[1421763642.547088] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.79 ms +[1421763642.765556] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421763643.021856] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.9 ms +[1421763643.297602] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.7 ms +[1421763643.525716] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421763643.752908] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421763643.981451] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421763644.191852] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.96 ms +[1421763644.442726] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.9 ms +[1421763644.665420] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421763644.875541] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.59 ms +[1421763645.096484] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421763645.313372] 1148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421763645.530675] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421763645.751545] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421763645.974606] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421763646.200608] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421763646.427355] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421763646.654171] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421763646.879193] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421763647.086713] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.74 ms +[1421763647.291983] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763647.497178] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763647.702553] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763647.907749] 847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763648.137791] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.5 ms +[1421763648.353979] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421763648.569786] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.4 ms +[1421763648.786921] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421763649.007830] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421763649.228322] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421763649.434340] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421763649.640120] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763649.845559] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763650.054106] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.03 ms +[1421763650.282542] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421763650.499804] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421763650.716934] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421763650.938452] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421763651.161039] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421763651.387420] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421763651.613785] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421763651.842603] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421763652.068160] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421763652.307631] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.1 ms +[1421763652.533435] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421763652.819738] 1955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.9 ms +[1421763653.084165] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.4 ms +[1421763653.313579] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.3 ms +[1421763653.537565] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421763653.771317] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.8 ms +[1421763653.998700] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421763654.224930] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421763654.431129] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763654.636160] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763654.844141] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.74 ms +[1421763655.053080] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.09 ms +[1421763655.289680] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.6 ms +[1421763655.501763] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.03 ms +[1421763655.760373] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=54.2 ms +[1421763655.966505] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421763656.173227] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763656.378510] 1133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763656.583989] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763656.789758] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763656.996654] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763657.201833] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763657.407263] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763657.612667] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763657.817831] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763658.022737] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763658.227998] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763658.435510] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.23 ms +[1421763658.641036] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763658.846452] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763659.051297] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763659.257513] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763659.462650] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763659.667830] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763659.873163] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763660.079206] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763660.284709] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763660.490021] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763660.695638] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763660.901178] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763661.106607] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763661.311668] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763661.516875] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763661.722192] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763661.927683] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763662.132890] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763662.337871] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763662.543285] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763662.748590] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763662.954090] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763663.160584] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763663.389950] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421763663.596416] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763663.812139] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421763664.017074] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763664.245301] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421763664.451610] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763664.656691] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763664.910079] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=49.2 ms +[1421763665.115006] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763665.405109] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=86.3 ms +[1421763665.610471] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763665.815846] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763666.020560] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763666.225925] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763666.437743] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.61 ms +[1421763666.643989] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763666.849649] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763667.054820] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763667.260364] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421763667.526329] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=61.6 ms +[1421763667.732833] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763667.941434] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.53 ms +[1421763668.164608] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421763668.372444] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.84 ms +[1421763668.587715] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421763668.794319] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.86 ms +[1421763668.999779] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421763669.205097] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763669.439928] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.5 ms +[1421763669.651954] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.65 ms +[1421763669.857480] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763670.062642] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763670.267799] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763670.474111] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763670.688185] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.76 ms +[1421763670.904234] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.9 ms +[1421763671.114446] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.24 ms +[1421763671.323116] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.73 ms +[1421763671.528891] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763671.738491] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.18 ms +[1421763671.943950] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763672.149617] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763672.355373] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763672.654862] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=94.9 ms +[1421763672.866003] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.93 ms +[1421763673.070959] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763673.275611] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763673.480792] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763673.686266] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763673.892937] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763674.099038] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763674.303922] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763674.513749] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763674.720223] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763674.926130] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763675.131310] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763675.336695] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763675.542041] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763675.749037] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421763675.961599] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.66 ms +[1421763676.168218] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763676.381091] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.76 ms +[1421763676.586685] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763676.791999] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763676.996947] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763677.202409] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763677.407878] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763677.613910] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763677.819808] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763678.025283] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763678.231038] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763678.437843] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763678.643617] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763678.850193] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763679.055049] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763679.259731] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763679.465254] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763679.670532] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763679.876023] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763680.081879] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763680.286994] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763680.494150] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.89 ms +[1421763680.699046] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763680.905314] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763681.110380] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763681.316653] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763681.521954] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763681.727487] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763681.934085] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763682.139266] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763682.344376] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763682.550793] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763682.756886] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421763682.965593] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.36 ms +[1421763683.171200] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421763683.376284] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763683.582901] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763683.788839] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763683.994527] 825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763684.200336] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763684.405647] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763684.611286] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763684.816942] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763685.022761] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763685.229000] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763685.434686] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763685.640581] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763685.846146] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763686.052407] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763686.264157] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.83 ms +[1421763686.470146] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763686.676203] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763686.881770] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763687.086817] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763687.291960] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763687.497355] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763687.702612] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763687.908322] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763688.113952] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763688.318999] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763688.524500] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763688.730521] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763688.935582] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763689.140683] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763689.345729] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763689.551634] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763689.757264] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763689.962885] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763690.168576] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763690.373984] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763690.578905] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763690.785391] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763690.990697] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763691.196441] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763691.401775] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763691.606647] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763691.812066] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763692.016821] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763692.222055] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763692.427701] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763692.633254] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763692.839713] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763693.044578] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763693.249692] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763693.454868] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763693.661766] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763693.867584] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763694.072596] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763694.277872] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763694.483817] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763694.693604] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.17 ms +[1421763694.900014] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763695.105236] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763695.311774] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763695.518946] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763695.724292] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763695.930259] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763696.135801] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763696.341597] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763696.547555] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763696.752700] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763696.958342] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763697.163395] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763697.368410] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763697.573984] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763697.779608] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763697.985282] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763698.191861] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763698.397378] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763698.603297] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763698.810200] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763699.015712] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763699.221403] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763699.426770] 145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763699.632172] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763699.837515] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763700.042019] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763700.248017] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763700.454612] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763700.660185] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763700.865302] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763701.070322] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763701.276526] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763701.481851] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763701.687064] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763701.893666] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763702.098974] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763702.303886] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763702.509612] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763702.715326] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763702.920583] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763703.126466] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763703.332709] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763703.538033] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763703.743877] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421763703.949949] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421763704.156766] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763704.361867] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763704.567773] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763704.774108] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763704.979968] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763705.185146] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763705.390413] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763705.595611] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763705.802321] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763706.008311] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763706.214350] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421763706.419512] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763706.624682] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763706.829885] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763707.036054] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763707.241460] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763707.447758] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763707.653147] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763707.858504] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763708.064412] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763708.269597] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763708.474940] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763708.681193] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763708.887341] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763709.092301] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763709.298470] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763709.504474] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763709.712241] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.82 ms +[1421763709.917880] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763710.123464] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763710.329916] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763710.535241] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763710.740965] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763710.946510] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421763711.152266] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763711.357052] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763711.563921] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763711.770938] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763711.977712] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763712.183115] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763712.388331] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763712.594235] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763712.799933] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763713.005518] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763713.211029] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763713.416943] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421763713.622346] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763713.828999] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763714.034203] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763714.239536] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763714.444702] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763714.649911] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763714.855316] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763715.060050] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763715.266308] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763715.471724] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763715.678413] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763715.883760] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763716.088702] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763716.293869] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763716.499675] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763716.705160] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763716.912115] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421763717.117144] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763717.322655] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763717.528142] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763717.734276] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763717.939090] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763718.143621] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763718.348858] 825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421763718.554388] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763718.759397] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763718.964831] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763719.169946] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763719.376039] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763719.581490] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763719.787090] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763719.992334] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763720.197819] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763720.402981] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763720.608704] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763720.815136] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763721.021025] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763721.228596] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763721.434051] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763721.640931] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763721.846233] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763722.052419] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763722.258355] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763722.465224] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763722.671135] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763722.876513] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763723.082568] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763723.287721] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763723.494064] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763723.700161] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763723.905845] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421763724.110638] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763724.316471] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763724.521882] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763724.728499] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763724.934607] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421763725.139886] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763725.345506] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763725.551122] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763725.756746] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763725.963031] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763726.168209] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763726.373404] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763726.579925] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763726.785723] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763726.991312] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763727.197633] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763727.403113] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763727.609128] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763727.814692] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763728.021019] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763728.226570] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763728.432212] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763728.637728] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763728.843754] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763729.048539] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763729.253406] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763729.459526] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763729.664818] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763729.871005] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763730.084829] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421763730.290117] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763730.495511] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763730.700982] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763730.907771] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763731.113913] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763731.320022] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763731.525358] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763731.732139] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763731.937700] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763732.144400] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763732.349325] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763732.554584] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763732.760672] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763732.966172] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763733.171306] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763733.377045] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763733.582165] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763733.787522] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763733.993283] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763734.200111] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421763734.404941] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763734.609955] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763734.815857] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763735.021156] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763735.226328] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763735.434779] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.70 ms +[1421763735.640133] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763735.846578] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763736.051510] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763736.257559] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763736.462611] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763736.667815] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763736.873112] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763737.078461] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763737.283840] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763737.490301] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763737.695488] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763737.900937] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763738.107040] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763738.311828] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763738.518166] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421763738.723430] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763738.928423] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763739.134585] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763739.339494] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763739.545866] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763739.751780] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.89 ms +[1421763739.956849] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763740.161516] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763740.366486] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763740.571171] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763740.776487] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763740.981925] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763741.187565] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763741.393557] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763741.598483] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763741.803162] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763742.008438] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763742.213599] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763742.419119] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763742.624238] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763742.829234] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763743.033912] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763743.240450] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421763743.445824] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763743.651463] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763743.857225] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763744.062855] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421763744.267858] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763744.473500] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763744.679805] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763744.886707] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763745.092687] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763745.298901] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763745.503798] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763745.708787] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763745.913669] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763746.118349] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763746.323118] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763746.528481] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763746.734721] 1955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421763746.939990] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763747.146395] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763747.352017] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763747.557884] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763747.763305] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763747.968779] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421763748.173854] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763748.379835] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763748.584999] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763748.790234] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763748.995152] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763749.200677] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421763749.406670] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763749.612340] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763749.817772] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763750.023908] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763750.229191] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763750.435426] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763750.641342] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421763750.846957] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763751.051490] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763751.256313] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763751.461411] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763751.667110] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763751.872434] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763752.077213] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763752.282554] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763752.487913] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763752.693504] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763752.899105] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763753.105259] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421763753.310086] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763753.515992] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763753.722418] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763753.929125] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763754.134624] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763754.340848] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763754.547101] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763754.752267] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763754.960559] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.17 ms +[1421763755.171884] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.35 ms +[1421763755.384154] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.25 ms +[1421763755.598878] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421763755.816975] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421763756.082856] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.4 ms +[1421763756.363406] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.8 ms +[1421763756.569376] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763756.775748] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763756.980604] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763757.185879] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421763757.392163] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421763757.597238] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763757.802891] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763758.009034] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421763758.214058] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763758.419183] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763758.624181] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763758.829538] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763759.034362] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763759.239494] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763759.445652] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763759.650895] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763759.856304] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763760.061422] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763760.266676] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763760.471994] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763760.677910] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763760.882947] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763761.088919] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763761.294143] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763761.499135] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763761.705328] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763761.910836] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763762.116086] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763762.321218] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763762.527640] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763762.733217] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763762.938819] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763763.144460] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763763.349348] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763763.554671] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763763.759624] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763763.965367] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763764.171812] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763764.377079] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763764.583413] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763764.793040] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.48 ms +[1421763765.005041] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.50 ms +[1421763765.222196] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421763765.427482] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763765.632407] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763765.837760] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421763766.047675] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.83 ms +[1421763766.280772] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.2 ms +[1421763766.496271] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421763766.748060] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=47.9 ms +[1421763766.954877] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763767.160540] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763767.365902] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763767.571615] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421763767.776855] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763767.983482] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763768.190401] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421763768.395705] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421763768.600803] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763768.806150] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763769.012031] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763769.217502] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763769.423722] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763769.628870] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763769.835091] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763770.040095] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763770.245311] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763770.450821] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763770.656799] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.88 ms +[1421763770.862300] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763771.067375] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763771.271941] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763771.478300] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763771.683799] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763771.889015] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763772.093899] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763772.299660] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421763772.505843] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763772.711261] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763772.915938] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763773.120715] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763773.325211] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763773.531437] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763773.736717] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763773.941781] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763774.147022] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763774.352006] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763774.559908] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.89 ms +[1421763774.765146] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763774.970678] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763775.176528] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763775.381739] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763775.587004] 1186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763775.791966] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763775.997172] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763776.203443] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763776.408586] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763776.613968] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763776.819306] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763777.024934] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763777.231106] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763777.436070] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763777.642529] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763777.848536] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763778.054369] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763778.260586] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763778.467188] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763778.673126] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763778.878735] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763779.083644] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763779.288894] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763779.494436] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763779.700126] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763779.906365] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763780.112135] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763780.317507] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763780.523237] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763780.728618] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763780.934587] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763781.141037] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763781.346971] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763781.551738] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763781.756745] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763781.962675] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763782.167418] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763782.372915] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763782.578518] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763782.784124] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763783.003963] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763783.210412] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763783.415948] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763783.621163] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763783.826831] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763784.032128] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763784.238198] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763784.443397] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763784.648481] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763784.853504] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763785.058300] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763785.263245] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763785.468558] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763785.674037] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763785.880289] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763786.086039] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763786.291694] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763786.496519] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763786.701794] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763786.907710] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763787.112541] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763787.317436] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763787.523642] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763787.728739] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763787.934808] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763788.139691] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763788.345932] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421763788.551321] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763788.757612] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763788.962736] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763789.168784] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763789.374904] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763789.580491] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763789.785549] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763789.991565] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421763790.197297] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421763790.403235] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763790.610309] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421763790.815641] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763791.020766] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.85 ms +[1421763791.225979] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763791.431143] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763791.636385] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763791.841687] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763792.046424] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763792.253305] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.81 ms +[1421763792.458297] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763792.663839] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421763792.869325] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763793.075578] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763793.281434] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763793.486257] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763793.691286] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763793.896909] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763794.101828] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763794.306747] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763794.513457] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763794.718655] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763794.924002] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763795.129133] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763795.335190] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421763795.540180] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763795.745434] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763795.951186] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763796.156650] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763796.361732] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763796.566990] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763796.771985] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763796.978144] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421763797.183698] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763797.389146] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763797.594549] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763797.800820] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763798.006171] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763798.212697] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421763798.417767] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763798.622713] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763798.829152] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763799.034472] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763799.239385] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763799.445242] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763799.650987] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763799.857143] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763800.061787] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763800.267707] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763800.473219] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763800.678754] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763800.884816] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763801.090121] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421763801.294872] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763801.500059] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763801.704941] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763801.910935] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763802.115545] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763802.320419] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763802.525777] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763802.730860] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763802.936993] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763803.143080] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763803.348129] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763803.553782] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421763803.758330] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763803.964155] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763804.170125] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763804.375209] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763804.580686] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763804.786999] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763805.002679] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.9 ms +[1421763805.207756] 1156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763805.412917] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763805.619195] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763805.825692] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763806.031237] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763806.236742] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763806.442066] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763806.648100] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763806.854694] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763807.059676] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763807.264548] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763807.470567] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763807.676370] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763807.882758] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421763808.088586] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763808.295051] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421763808.500643] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763808.706121] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763808.912693] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763809.117406] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763809.323017] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763809.528517] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763809.734328] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763809.939858] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763810.145224] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763810.350552] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763810.556128] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763810.761046] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763810.967165] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763811.173492] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763811.379833] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763811.586380] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763811.792012] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763811.998267] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763812.203561] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763812.408837] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763812.628004] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421763812.833429] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763813.039250] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763813.244178] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763813.449162] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763813.656470] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.27 ms +[1421763813.867382] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.67 ms +[1421763814.078853] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.01 ms +[1421763814.295843] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421763814.515446] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.7 ms +[1421763814.738888] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421763814.966162] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421763815.188117] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421763815.471672] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.6 ms +[1421763815.698398] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421763815.918325] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421763816.146789] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421763816.378821] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.1 ms +[1421763816.584020] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763816.790343] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763816.995701] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763817.206013] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.73 ms +[1421763817.424728] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421763817.639878] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421763817.883171] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.4 ms +[1421763818.103585] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421763818.327268] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421763818.551597] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421763818.773932] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421763819.047430] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.7 ms +[1421763819.275538] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421763819.481321] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763819.686455] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763819.892065] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763820.096909] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763820.301927] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763820.507639] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763820.713400] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421763820.919463] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763821.125289] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763821.331227] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421763821.536452] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421763821.742434] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421763821.947680] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763822.153080] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763822.359160] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.00 ms +[1421763822.564616] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763822.770639] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763822.976647] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763823.181721] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763823.387835] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763823.593457] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763823.799443] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.89 ms +[1421763824.004429] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763824.210287] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421763824.415904] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421763824.621909] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421763824.827217] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763825.032265] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763825.237195] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763825.442183] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763825.647490] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763825.853220] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763826.059399] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763826.264516] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763826.471035] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763826.676619] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763826.883137] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763827.087901] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763827.293872] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763827.499089] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763827.705119] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763827.911667] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421763828.117436] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763828.322691] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763828.528273] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763828.734550] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763828.939128] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763829.144160] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763829.349091] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763829.554299] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763829.760779] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421763829.966802] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763830.171918] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763830.377189] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763830.583659] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763830.788652] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763830.994497] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763831.200362] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763831.406812] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763831.612786] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763831.818527] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763832.024573] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763832.230289] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763832.435392] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763832.640648] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763832.845578] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763833.050606] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421763833.265429] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421763833.470876] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763833.676933] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763833.881896] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763834.086758] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763834.291963] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763834.498368] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763834.704051] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763834.909227] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763835.114950] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763835.319808] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763835.524925] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763835.729795] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763835.935869] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763836.147240] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.06 ms +[1421763836.352416] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763836.557888] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763836.763010] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763836.968395] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421763837.173219] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763837.379465] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763837.584787] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763837.790119] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763837.995407] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763838.200402] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763838.405479] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763838.611484] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421763838.817786] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763839.023105] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763839.229233] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763839.434753] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763839.640989] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763839.845918] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763840.051090] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763840.256111] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763840.462743] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421763840.667611] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763840.873877] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763841.080001] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763841.285214] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763841.490154] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763841.696128] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763841.900636] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763842.105978] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763842.310805] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763842.515888] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763842.720775] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763842.925427] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763843.130121] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763843.336777] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763843.542985] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763843.748441] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763843.954649] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421763844.159839] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763844.365585] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763844.571665] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763844.776599] 904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763844.981021] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763845.185816] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763845.390868] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763845.595607] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763845.800581] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763846.005740] 904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763846.210725] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763846.415436] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763846.620351] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763846.826351] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763847.030937] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763847.235872] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763847.441393] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763847.646497] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763847.851432] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763848.055887] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763848.261023] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763848.466659] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763848.671900] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763848.879043] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763849.089681] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763849.294866] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763849.500079] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763849.705361] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763849.910605] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763850.115259] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763850.320639] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763850.527112] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421763850.733412] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421763850.939318] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763851.144769] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421763851.350211] 1451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421763851.555355] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763851.761537] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763851.966415] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763852.171380] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763852.377685] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763852.583595] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763852.789131] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763852.994834] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421763853.199752] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763853.405042] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763853.609987] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763853.815460] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763854.020367] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763854.225457] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763854.430383] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763854.635578] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763854.841962] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763855.046554] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763855.251683] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763855.456835] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763855.662380] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763855.867490] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763856.073053] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763856.277911] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763856.483999] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763856.689175] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763856.895129] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763857.099652] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763857.304924] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763857.509636] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763857.715066] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763857.920560] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763858.125546] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763858.330592] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763858.535954] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763858.741161] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763858.947671] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763859.153551] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763859.359415] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763859.565777] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763859.772040] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421763859.978081] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763860.183428] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763860.388673] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763860.594069] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763860.800055] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421763861.005833] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421763861.210434] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763861.415268] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763861.621211] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763861.826674] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763862.031659] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763862.236737] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763862.441697] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763862.647397] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763862.852216] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763863.057799] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763863.262534] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763863.467833] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763863.673227] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763863.878652] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763864.084216] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763864.290626] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763864.496435] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763864.701553] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763864.907374] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763865.112167] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763865.318088] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763865.523542] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763865.729418] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763865.935353] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763866.140506] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763866.345251] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763866.550575] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421763866.756608] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763866.961503] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763867.167763] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421763867.374391] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.97 ms +[1421763867.579330] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763867.783855] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763867.989664] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763868.195980] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421763868.401431] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763868.607869] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421763868.814121] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421763869.019476] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763869.223909] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421763869.429075] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763869.635273] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763869.840018] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763870.044327] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763870.248992] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763870.454853] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763870.660310] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763870.866795] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763871.071840] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763871.277080] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763871.483287] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763871.688260] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763871.893413] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763872.099277] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763872.304103] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763872.509103] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763872.714646] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763872.919812] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763873.124781] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763873.330485] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763873.536787] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763873.741775] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763873.947168] 1261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763874.152821] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763874.358031] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763874.563991] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763874.768738] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.00 ms +[1421763874.973601] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763875.178464] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763875.383979] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763875.589205] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763875.795411] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763876.000428] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763876.205256] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763876.411863] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421763876.617008] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763876.822312] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763877.027801] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.93 ms +[1421763877.232255] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763877.437370] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763877.641703] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421763877.847627] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763878.052539] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763878.257628] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763878.463144] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421763878.669108] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421763878.874746] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763879.079517] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763879.284450] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763879.489723] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763879.695465] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763879.901011] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763880.105849] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763880.310695] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763880.515548] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763880.720513] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763880.925780] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763881.130587] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763881.336755] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763881.541597] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763881.746623] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763881.951858] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763882.157311] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763882.363072] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763882.568102] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763882.773258] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763882.978841] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763883.185219] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763883.391525] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763883.597157] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763883.802065] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763884.006892] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763884.211905] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763884.416957] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763884.623300] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763884.829386] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763885.033917] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763885.239212] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763885.444665] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421763885.650254] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421763885.856046] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763886.060786] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763886.267071] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763886.473275] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763886.679627] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763886.885275] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763887.090227] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763887.296040] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763887.501223] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763887.707508] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763887.912732] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763888.118905] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421763888.323993] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763888.529450] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763888.735568] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763888.940749] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763889.146957] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763889.352307] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763889.557777] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763889.762654] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763889.968027] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763890.173138] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763890.378328] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763890.584707] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763890.789655] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763890.994583] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763891.199575] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763891.404864] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763891.610318] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763891.817480] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.21 ms +[1421763892.021866] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763892.226482] 145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763892.431407] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763892.636540] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763892.841703] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763893.046223] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763893.251002] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763893.456494] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421763893.661657] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763893.866923] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763894.071505] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763894.276768] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763894.481556] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763894.686258] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763894.891403] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763895.095651] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763895.300389] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763895.505558] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763895.710832] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763895.915996] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763896.121777] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763896.327770] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763896.532941] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763896.738323] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763896.943479] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763897.149222] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763897.355210] 1913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763897.560328] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763897.765328] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.02 ms +[1421763897.970146] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763898.174958] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763898.380255] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421763898.586479] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763898.792631] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763898.997707] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763899.202430] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421763899.407320] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763899.612777] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763899.817367] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763900.022851] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763900.227587] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763900.432746] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763900.638132] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763900.843348] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763901.048043] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763901.253222] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763901.459300] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763901.664679] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763901.872476] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.95 ms +[1421763902.082190] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.41 ms +[1421763902.316665] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.9 ms +[1421763902.533229] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421763902.747319] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.2 ms +[1421763903.011933] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.5 ms +[1421763903.232939] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421763903.437833] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763903.642908] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763903.849158] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763904.054597] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421763904.262072] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.85 ms +[1421763904.473787] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.84 ms +[1421763904.714071] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.1 ms +[1421763904.932693] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421763905.156473] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421763905.381303] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421763905.603126] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421763905.885771] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.6 ms +[1421763906.118056] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.5 ms +[1421763906.411814] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=89.7 ms +[1421763906.633880] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421763906.919273] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.5 ms +[1421763907.144114] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421763907.366739] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421763907.586351] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421763907.874432] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.9 ms +[1421763908.079292] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763908.284978] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763908.490387] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763908.705232] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421763908.916149] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.79 ms +[1421763909.128575] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.98 ms +[1421763909.345243] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421763909.562340] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421763909.834812] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=68.4 ms +[1421763910.060643] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421763910.284909] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421763910.508364] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421763910.796151] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.8 ms +[1421763911.022617] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421763911.228880] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763911.515470] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.7 ms +[1421763911.741877] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421763911.967238] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421763912.194881] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421763912.419738] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421763912.645391] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421763912.850419] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763913.056107] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421763913.260991] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763913.477788] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421763913.693780] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.7 ms +[1421763913.908377] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421763914.125869] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421763914.344634] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421763914.562593] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421763914.838884] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.1 ms +[1421763915.117054] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.5 ms +[1421763915.339861] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421763915.567619] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421763915.794933] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421763916.014012] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421763916.237632] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421763916.468926] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.4 ms +[1421763916.748594] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.6 ms +[1421763916.970082] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421763917.193716] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421763917.480446] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.1 ms +[1421763917.688292] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.81 ms +[1421763917.893782] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763918.100955] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.82 ms +[1421763918.313841] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.24 ms +[1421763918.530164] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.2 ms +[1421763918.747477] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421763918.964281] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421763919.182084] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421763919.444095] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=58.4 ms +[1421763919.726040] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.4 ms +[1421763919.957502] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.6 ms +[1421763920.184098] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421763920.410154] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421763920.634413] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421763920.844561] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763921.049400] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763921.254428] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763921.460057] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763921.665460] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763921.870140] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763922.074578] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763922.279571] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763922.492492] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.80 ms +[1421763922.702912] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.32 ms +[1421763922.944203] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=37.6 ms +[1421763923.158599] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421763923.379513] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421763923.585007] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763923.790613] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763923.996065] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763924.202082] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763924.412698] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.42 ms +[1421763924.624821] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.13 ms +[1421763924.839788] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421763925.053649] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.97 ms +[1421763925.276778] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421763925.495892] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.2 ms +[1421763925.724595] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421763925.946204] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421763926.232265] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.0 ms +[1421763926.518058] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.9 ms +[1421763926.723309] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763926.928386] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763927.133472] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763927.339517] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763927.544524] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763927.751074] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421763927.959287] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.99 ms +[1421763928.165497] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763928.371980] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763928.577867] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763928.783108] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763928.989317] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421763929.194803] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763929.400204] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763929.606413] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763929.811554] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763930.016261] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763930.222010] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763930.426808] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763930.632887] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763930.838333] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763931.043359] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763931.248268] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763931.453702] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763931.659345] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763931.865176] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763932.071007] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763932.276044] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763932.481016] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763932.687659] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763932.892839] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763933.097894] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763933.303225] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763933.509090] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763933.714953] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763933.920684] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763934.126753] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763934.332943] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763934.539329] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763934.745577] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763934.950230] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763935.155531] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421763935.360150] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763935.565102] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763935.770952] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763935.975982] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763936.182538] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421763936.387744] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763936.593843] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763936.799035] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763937.004006] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763937.209082] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763937.413969] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763937.619581] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763937.824949] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763938.029770] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763938.234990] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421763938.440063] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763938.645620] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763938.850989] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763939.055899] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421763939.261328] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763939.467819] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421763939.673095] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421763939.878096] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763940.082580] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763940.287435] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763940.492676] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763940.698109] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763940.903230] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763941.108038] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763941.313015] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763941.518169] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763941.723577] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763941.929094] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763942.134558] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763942.340608] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421763942.545700] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763942.750649] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763942.955928] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763943.162008] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763943.366980] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763943.572329] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763943.777780] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763943.983312] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763944.188678] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763944.393382] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763944.599516] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763944.805005] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763945.012570] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.82 ms +[1421763945.217696] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763945.424394] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421763945.635235] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.49 ms +[1421763945.841674] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421763946.046611] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763946.251496] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763946.457109] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763946.663168] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763946.868216] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763947.072992] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763947.277790] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763947.482623] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763947.687710] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763947.892442] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763948.097076] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763948.302668] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421763948.508472] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.85 ms +[1421763948.713907] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763948.919465] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763949.124936] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763949.331117] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763949.537370] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763949.743655] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763949.950075] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763950.155162] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763950.361138] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421763950.566355] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763950.771702] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763950.977183] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763951.183491] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763951.388591] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763951.593604] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763951.798697] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763952.004693] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763952.210661] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763952.415472] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763952.621168] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421763952.826704] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763953.031713] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763953.244127] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.62 ms +[1421763953.449806] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763953.655510] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763953.861280] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763954.066168] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763954.271375] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763954.477659] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763954.683117] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763954.888245] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763955.093391] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763955.298032] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763955.503968] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763955.708827] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763955.914058] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763956.119566] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763956.324584] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763956.530801] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763956.737345] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763956.942518] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763957.147796] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763957.352881] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763957.558427] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421763957.764497] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763957.969644] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763958.176053] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763958.381360] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763958.586998] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421763958.792975] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421763958.998307] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763959.204597] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763959.409685] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763959.615057] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763959.820790] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763960.025771] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763960.230856] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763960.437210] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763960.642450] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763960.848019] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763961.053544] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763961.258707] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763961.463984] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763961.670272] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763961.876518] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763962.081207] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763962.286159] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763962.492297] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763962.698700] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763962.904220] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763963.109509] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763963.314719] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763963.519955] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763963.725254] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763963.930526] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763964.135844] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763964.341177] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763964.546861] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763964.752515] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763964.957714] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763965.163276] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763965.368341] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763965.573761] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763965.779399] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763965.984405] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763966.189359] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763966.394881] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763966.599864] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763966.805574] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763967.010202] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763967.215892] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763967.421344] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421763967.627540] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763967.833286] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763968.037986] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763968.243261] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763968.449578] 1566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763968.655209] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763968.860485] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763969.065222] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763969.270338] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763969.475922] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763969.681382] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763969.886611] 30 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763970.091728] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421763970.297138] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421763970.502890] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763970.708507] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763970.913470] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421763971.119109] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763971.324717] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763971.531253] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421763971.736780] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763971.942435] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421763972.154771] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.38 ms +[1421763972.360209] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421763972.565522] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763972.770841] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763972.975603] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763973.180113] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763973.385335] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763973.591558] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763973.797319] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763974.002164] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763974.207483] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763974.412866] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763974.618809] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763974.824066] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763975.029139] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763975.233968] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763975.439032] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763975.645226] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763975.850838] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763976.056425] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763976.261501] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763976.467062] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763976.672521] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763976.878692] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763977.083229] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763977.287969] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763977.492841] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763977.699825] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.11 ms +[1421763977.904661] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763978.109153] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763978.314493] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763978.520179] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763978.725344] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763978.930128] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763979.135379] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763979.341787] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763979.547172] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763979.752602] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763979.958406] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421763980.163952] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763980.369093] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763980.574392] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763980.779742] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763980.985537] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763981.191404] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421763981.396838] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763981.602336] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763981.807744] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763982.013264] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763982.218436] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763982.424123] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763982.629487] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763982.834629] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763983.039081] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763983.243594] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763983.448290] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763983.653615] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763983.858423] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763984.063316] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763984.268249] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763984.473467] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763984.678558] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763984.884664] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763985.089728] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763985.294418] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421763985.500562] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763985.706087] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763985.911713] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763986.117129] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421763986.322364] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763986.528163] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421763986.734877] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763986.941154] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763987.146597] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763987.352208] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421763987.557640] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763987.764143] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763987.970623] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763988.176005] 1072 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763988.382156] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763988.587854] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763988.794214] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763988.999429] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763989.204986] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763989.411106] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763989.617218] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421763989.822320] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763990.028004] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421763990.232945] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763990.439322] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763990.644724] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763990.851023] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763991.055830] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763991.260853] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763991.466147] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763991.671525] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763991.876921] 1021 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763992.081867] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763992.286704] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763992.492014] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763992.697808] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763992.903534] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421763993.108567] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763993.313655] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763993.518675] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763993.724539] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763993.930061] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763994.135364] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763994.341591] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763994.546954] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763994.752615] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763994.957755] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763995.163434] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421763995.368867] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763995.573786] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421763995.778872] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763995.983966] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763996.188937] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763996.393563] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763996.600136] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763996.805592] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763997.010561] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763997.215366] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763997.420435] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763997.626102] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763997.831577] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763998.036676] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763998.241264] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763998.446656] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763998.651959] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763998.857702] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763999.063459] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763999.268735] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763999.477465] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.58 ms +[1421763999.685882] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.61 ms +[1421763999.899559] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.1 ms +[1421764000.105166] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764000.319422] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421764000.539396] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421764000.744691] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764000.950169] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764001.155439] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764001.361255] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764001.567310] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764001.773227] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764001.979490] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421764002.184152] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764002.389151] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764002.594002] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764002.798747] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764003.003921] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764003.209195] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764003.414196] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764003.619434] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764003.825620] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764004.030274] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764004.236238] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764004.441331] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764004.647723] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764004.854096] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764005.059974] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421764005.264910] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764005.469699] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764005.675008] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764005.880157] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764006.084754] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764006.289777] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764006.494791] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764006.699727] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764006.904538] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764007.108566] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764007.313637] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764007.518346] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764007.723028] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764007.928418] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764008.133451] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764008.338260] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764008.542964] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764008.748567] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764008.953681] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764009.158797] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764009.364271] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764009.569616] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764009.774592] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764009.979224] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764010.184263] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764010.389474] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764010.594370] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764010.800132] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764011.006002] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764011.211724] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764011.416821] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764011.621938] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764011.826917] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764012.031343] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764012.235956] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764012.441013] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764012.646691] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764012.851585] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764013.055988] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764013.260957] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764013.466127] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764013.671257] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764013.876310] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764014.080766] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764014.285210] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764014.491463] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764014.697315] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421764014.901958] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764015.106691] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764015.311602] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764015.516923] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764015.723141] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764015.928376] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764016.134306] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764016.340098] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764016.544992] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764016.749400] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764016.955004] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764017.159916] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764017.364937] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764017.569842] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764017.775526] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764017.980875] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764018.186864] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764018.393156] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421764018.598444] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764018.803967] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764019.009717] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421764019.215987] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421764019.421073] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764019.626609] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764019.833109] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764020.038947] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764020.243921] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764020.450211] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764020.656365] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764020.862094] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764021.066952] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764021.272663] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.92 ms +[1421764021.479111] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764021.685370] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764021.891848] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764022.096608] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764022.301585] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764022.507040] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764022.713585] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764022.919429] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764023.126316] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421764023.334703] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.87 ms +[1421764023.563156] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421764023.780821] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421764024.000138] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.2 ms +[1421764024.221693] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421764024.445711] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421764024.668421] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421764024.897592] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421764025.121926] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421764025.327477] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764025.533555] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764025.738909] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764025.944478] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764026.150006] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764026.355390] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764026.560551] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764026.765867] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764026.971631] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764027.176807] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764027.383190] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764027.589782] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421764027.795392] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421764028.001756] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764028.220498] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421764028.432917] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.60 ms +[1421764028.645032] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.09 ms +[1421764028.865187] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421764029.085978] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421764029.308563] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421764029.591611] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.0 ms +[1421764029.872385] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.7 ms +[1421764030.090541] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421764030.296204] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764030.501792] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421764030.712092] 1522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.72 ms +[1421764030.922643] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.62 ms +[1421764031.135407] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.86 ms +[1421764031.350785] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421764031.570650] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421764031.788267] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421764032.012710] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421764032.218989] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421764032.425003] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764032.631867] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421764032.837253] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764033.043076] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764033.260696] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421764033.465503] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764033.670583] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764033.875921] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764034.080889] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764034.286251] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421764034.493573] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.35 ms +[1421764034.705049] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.36 ms +[1421764034.918650] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.60 ms +[1421764035.139474] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421764035.356782] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421764035.634218] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.6 ms +[1421764035.862380] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421764036.071130] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.23 ms +[1421764036.276420] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764036.481566] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764036.687752] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421764036.894127] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764037.098918] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764037.307326] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.79 ms +[1421764037.512191] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764037.717282] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764037.922624] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764038.129103] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.01 ms +[1421764038.357825] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421764038.600259] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.5 ms +[1421764038.852566] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.6 ms +[1421764039.071265] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.2 ms +[1421764039.296777] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421764039.522772] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421764039.756022] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.0 ms +[1421764040.037616] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.8 ms +[1421764040.264164] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421764040.471293] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.40 ms +[1421764040.676596] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764040.882153] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764041.086939] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764041.291804] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764041.496975] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764041.702270] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764041.909376] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.36 ms +[1421764042.138914] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421764042.349356] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.91 ms +[1421764042.559953] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.82 ms +[1421764042.767113] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764042.972800] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764043.178081] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764043.383889] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764043.589832] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421764043.794943] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764043.999997] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764044.204945] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764044.409864] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764044.615976] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764044.821329] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764045.026913] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764045.233492] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764045.439387] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764045.644697] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764045.849615] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764046.055069] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764046.260110] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764046.465858] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764046.671436] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764046.876540] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764047.081504] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764047.285938] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764047.490815] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764047.696911] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764047.902230] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764048.106960] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764048.311756] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764048.516918] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764048.722508] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764048.928244] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421764049.133478] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764049.339525] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764049.545466] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764049.750767] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764049.957109] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764050.162963] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764050.367911] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764050.573786] 1541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764050.779119] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764050.984359] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764051.189363] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764051.395002] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764051.600980] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764051.805964] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764052.010547] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764052.215589] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764052.420317] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764052.624888] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764052.829714] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764053.034332] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764053.238938] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764053.444154] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764053.650577] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764053.855907] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764054.060809] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764054.265915] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764054.471473] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764054.677007] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764054.882239] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764055.087165] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764055.291993] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764055.497343] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764055.703635] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764055.908901] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764056.114396] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764056.319485] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764056.524955] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764056.731388] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764056.936646] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764057.142381] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764057.347141] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764057.551830] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764057.757112] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764057.961847] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764058.167764] 1541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764058.373100] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764058.578305] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764058.784524] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764058.989392] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764059.194036] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764059.398983] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764059.604366] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764059.810236] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764060.014819] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421764060.219656] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764060.424878] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421764060.630121] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421764060.835803] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764061.040388] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764061.245959] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764061.451126] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764061.656268] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764061.861335] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764062.067090] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764062.271914] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764062.476872] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764062.683012] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764062.889021] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764063.093712] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764063.298675] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764063.503433] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764063.708526] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764063.913961] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764064.118831] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764064.324437] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421764064.529396] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764064.735301] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764064.941925] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764065.147676] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764065.353832] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764065.559758] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421764065.764979] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764065.969981] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764066.175949] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764066.381188] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764066.586260] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764066.791292] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764066.997595] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764067.202739] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764067.408192] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764067.612781] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764067.817523] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764068.022129] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764068.228219] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764068.434824] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421764068.641790] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421764068.847330] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764069.052216] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764069.257256] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764069.462807] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421764069.668957] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764069.874509] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764070.079916] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764070.284632] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764070.489082] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764070.694118] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764070.898666] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764071.103417] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764071.308595] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764071.514977] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764071.720044] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764071.925776] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764072.130100] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764072.334677] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764072.540592] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764072.747039] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764072.952567] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764073.158382] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764073.363720] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764073.568940] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764073.774096] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764073.979568] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764074.184753] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764074.390591] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764074.595735] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764074.801127] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764075.006914] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764075.212862] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764075.417922] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764075.623255] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764075.828610] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764076.034225] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421764076.239168] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764076.444038] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764076.648940] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764076.854740] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764077.059158] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764077.265088] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764077.469801] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764077.674575] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764077.879153] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764078.083897] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764078.289162] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421764078.509497] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421764078.715030] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764078.920140] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764079.124943] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764079.330261] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764079.535413] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764079.741103] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764079.946311] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764080.151654] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764080.358219] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764080.563722] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764080.768743] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764080.975152] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764081.181304] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421764081.386828] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764081.592523] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764081.797547] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764082.002162] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764082.207018] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764082.412019] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764082.618203] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764082.823613] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764083.028543] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764083.233555] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764083.438306] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764083.643370] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764083.848887] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764084.055491] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421764084.261126] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764084.467832] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764084.675213] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764084.880027] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764085.084336] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764085.288962] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764085.493849] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764085.699553] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764085.904757] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764086.109707] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764086.314885] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764086.520054] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764086.725094] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764086.930272] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764087.135341] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764087.340747] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764087.546086] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764087.751029] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764087.955867] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764088.161033] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764088.367739] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421764088.573439] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764088.778604] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764088.983476] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764089.188786] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764089.393851] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764089.599551] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764089.804831] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764090.009231] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421764100.417974] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764100.623174] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764100.829811] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421764101.035536] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764101.240804] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764101.446048] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764101.650987] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764101.856237] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764102.060923] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764102.265669] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764102.470715] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764102.676324] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764102.881737] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764103.086655] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764103.293279] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421764103.498541] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764103.704039] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764103.909488] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764104.114682] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764104.320189] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764104.524805] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764104.729874] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764104.934419] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764105.140668] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764105.346314] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764105.551669] 814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764105.756388] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764105.962643] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764106.167843] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764106.372927] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764106.579114] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764106.784928] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764106.990925] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764107.195338] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764107.401577] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764107.606778] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764107.812800] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764108.017545] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764108.223081] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764108.428118] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764108.634444] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764108.840875] 1984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764109.046885] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764109.252753] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764109.457777] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764109.663096] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764109.869008] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764110.073993] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764110.278962] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764110.483859] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764110.688702] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764110.894751] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421764111.099841] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764111.308260] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.99 ms +[1421764111.513444] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764111.718771] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764111.924234] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421764112.129821] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764112.339260] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.92 ms +[1421764112.551540] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.26 ms +[1421764112.768854] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421764112.974241] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764113.186223] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.72 ms +[1421764113.430731] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=40.9 ms +[1421764113.686670] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.9 ms +[1421764113.906855] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421764114.178066] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=67.4 ms +[1421764114.400023] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421764114.619482] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421764114.903092] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.8 ms +[1421764115.130579] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421764115.355201] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421764115.581082] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421764115.809909] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421764116.036717] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421764116.258700] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421764116.464384] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764116.669390] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764116.874363] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764117.083575] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.50 ms +[1421764117.295124] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.85 ms +[1421764117.507756] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.72 ms +[1421764117.720892] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.14 ms +[1421764117.977229] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=52.1 ms +[1421764118.193610] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421764118.417989] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421764118.632260] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421764118.859815] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421764119.147318] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.6 ms +[1421764119.377144] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421764119.602148] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421764119.883269] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.3 ms +[1421764120.170008] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.2 ms +[1421764120.388816] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421764120.616994] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421764120.846506] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421764121.051746] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764121.257811] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421764121.464369] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.72 ms +[1421764121.673322] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.91 ms +[1421764121.886133] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.97 ms +[1421764122.097422] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.00 ms +[1421764122.309772] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.87 ms +[1421764122.529938] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421764122.749184] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421764122.973842] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421764123.254705] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.0 ms +[1421764123.508411] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=49.7 ms +[1421764123.779624] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=67.3 ms +[1421764124.005108] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421764124.231483] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421764124.453218] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421764124.681683] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421764124.971159] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.3 ms +[1421764125.257458] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.9 ms +[1421764125.481994] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421764125.687252] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764125.892733] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764126.097788] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764126.317954] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421764126.531591] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.60 ms +[1421764126.746809] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421764126.962498] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421764127.184470] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421764127.407387] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421764127.633296] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421764127.858226] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421764128.063453] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764128.269662] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764128.475066] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764128.680907] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421764128.886277] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764129.092073] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.07 ms +[1421764129.298517] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421764129.504411] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764129.710010] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764129.915250] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764130.120780] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.88 ms +[1421764130.327575] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.04 ms +[1421764130.557803] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.3 ms +[1421764130.771741] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.86 ms +[1421764130.986296] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421764131.203999] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421764131.425886] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421764131.643974] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421764131.850456] 1913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421764132.055492] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764132.260890] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764132.466027] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764132.672708] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764132.879383] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764133.084177] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764133.289302] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764133.494172] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764133.699630] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421764133.904409] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764134.110399] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421764134.315518] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764134.521007] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764134.725861] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764134.935120] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.86 ms +[1421764135.167244] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.6 ms +[1421764135.413766] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.6 ms +[1421764135.672192] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=54.5 ms +[1421764135.944178] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=67.8 ms +[1421764136.171146] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421764136.396720] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421764136.672639] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.0 ms +[1421764136.887748] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421764137.093462] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421764137.298213] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764137.502894] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764137.708284] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764137.913233] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764138.117922] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764138.322827] 30 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764138.528291] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764138.734506] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.72 ms +[1421764138.939846] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764139.145160] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764139.360097] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421764139.589882] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421764139.803647] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.81 ms +[1421764140.019456] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421764140.238969] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421764140.460959] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421764140.748347] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.6 ms +[1421764140.953582] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764141.158830] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764141.365949] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.30 ms +[1421764141.573282] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.28 ms +[1421764141.803009] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.5 ms +[1421764142.039377] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.5 ms +[1421764142.257467] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.4 ms +[1421764142.476461] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421764142.691379] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421764142.896377] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764143.100872] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764143.305409] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764143.511216] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764143.715676] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764143.920349] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764144.125094] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764144.329968] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764144.534477] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764144.739545] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764144.943962] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764145.150054] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421764145.354867] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764145.560798] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764145.765867] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421764145.972664] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.80 ms +[1421764146.177587] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764146.382260] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764146.587346] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764146.793169] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764146.997901] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764147.202625] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764147.408287] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764147.613501] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764147.819385] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764148.023859] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764148.228809] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764148.434344] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764148.640179] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421764148.845790] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764149.050683] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764149.255654] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764149.461948] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764149.667503] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764149.873175] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764150.077968] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764150.283968] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764150.489229] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764150.694397] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764150.899398] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764151.104047] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764151.310126] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764151.515932] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421764151.721888] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421764151.928347] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764152.133411] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764152.339301] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764152.544042] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764152.749165] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764152.954878] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764153.160339] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764153.365254] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764153.570027] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764153.775232] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764153.981765] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421764154.187162] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764154.393453] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764154.599648] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764154.805958] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764155.010662] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764155.216674] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764155.421840] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764155.627108] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764155.832193] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764156.036856] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764156.242650] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764156.450890] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.49 ms +[1421764156.662856] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.96 ms +[1421764156.902656] 1888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.1 ms +[1421764157.153173] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.8 ms +[1421764157.362864] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.91 ms +[1421764157.581369] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421764157.806019] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421764158.088967] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.5 ms +[1421764158.308028] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.2 ms +[1421764158.590672] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.7 ms +[1421764158.812456] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421764159.017193] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764159.222263] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764159.427186] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764159.633121] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421764159.843496] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.54 ms +[1421764160.057788] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421764160.272383] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421764160.525419] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=49.3 ms +[1421764160.748302] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421764160.974458] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421764161.198776] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421764161.421677] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421764161.644955] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421764161.873516] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421764162.092502] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421764162.298727] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421764162.504927] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764162.710499] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764162.915804] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764163.122104] 1529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764163.327894] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764163.532736] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764163.737424] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764163.942571] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764164.149005] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421764164.355831] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.24 ms +[1421764164.566961] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.32 ms +[1421764164.778377] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.49 ms +[1421764164.992343] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.93 ms +[1421764165.211776] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421764165.416372] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764165.621118] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764165.826765] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764166.031058] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421764166.235944] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764166.441204] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764166.647336] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764166.852855] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764167.057286] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764167.263002] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764167.468952] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764167.675078] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764167.880735] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764168.086517] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764168.291235] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764168.496519] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764168.702046] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764168.906712] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764169.111416] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764169.316702] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764169.521848] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764169.732580] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.23 ms +[1421764169.938158] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764170.143731] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764170.350028] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764170.556075] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764170.760756] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764170.966572] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764171.171800] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764171.377994] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764171.583204] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764171.788186] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764171.993052] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764172.198916] 1522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764172.403998] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764172.609118] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764172.814565] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764173.019060] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764173.225080] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764173.429909] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764173.634587] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764173.839316] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764174.043614] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764174.249902] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764174.455249] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764174.660704] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764174.866395] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764175.070706] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764175.276453] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764175.481467] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764175.686594] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764175.891450] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764176.096298] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421764176.301139] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764176.506958] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764176.711916] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764176.917233] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764177.122035] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764177.326807] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764177.531869] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764177.736701] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764177.942257] 837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764178.148423] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764178.353595] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764178.559013] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764178.764539] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764178.971053] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764179.176137] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764179.381219] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764179.585989] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764179.790660] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764179.995987] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764180.201777] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764180.407489] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764180.613702] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764180.819789] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764181.024442] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764181.229325] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764181.434607] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764181.641246] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764181.846435] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764182.051661] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764182.256791] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764182.462338] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764182.667765] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764182.874018] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764183.079838] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421764183.285239] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764183.490985] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764183.696459] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764183.902241] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764184.106901] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764184.312157] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764184.517517] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764184.723763] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764184.929767] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.94 ms +[1421764185.135331] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764185.340593] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764185.546862] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764185.752175] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764185.957602] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764186.163170] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764186.369277] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421764186.575590] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764186.781610] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764186.986632] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764187.192647] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764187.397802] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421764187.603307] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764187.809081] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764188.014348] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764188.219679] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421764188.425806] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421764188.631213] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764188.836752] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764189.041758] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764189.246718] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764189.452665] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764189.657749] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764189.863128] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764190.068082] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421764190.273284] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421764190.478431] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764190.684341] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764190.889694] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764191.094447] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764191.300230] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764191.505452] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764191.711624] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764191.917871] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764192.123041] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764192.328054] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764192.532866] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421764192.738272] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764192.944124] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764193.150229] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764193.355636] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764193.560708] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764193.765665] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764193.970846] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764194.176146] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764194.381149] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764194.586477] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764194.791828] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764194.997165] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764195.203435] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764195.408536] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764195.613802] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764195.818912] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764196.023415] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764196.229384] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764196.434058] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764196.639224] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764196.844642] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764197.048976] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764197.255147] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764197.460268] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764197.666238] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764197.872308] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764198.076616] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764198.281425] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764198.487736] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.67 ms +[1421764198.692961] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764198.899406] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421764199.105043] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764199.309904] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764199.515823] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764199.721120] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764199.926043] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764200.132320] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421764200.337607] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764200.542769] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764200.748859] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764200.953959] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764201.160109] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764201.365053] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764201.570713] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764201.777766] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764201.983253] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764202.188185] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764202.393186] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764202.599045] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421764202.804068] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764203.009097] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764203.214158] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764203.419457] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764203.624829] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764203.831329] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764204.035738] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764204.240828] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764204.449103] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764204.655678] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764204.861111] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764205.066271] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764205.270855] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764205.475974] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764205.681274] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764205.886393] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764206.091045] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764206.297362] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764206.505670] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.38 ms +[1421764206.717615] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.10 ms +[1421764206.959995] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.7 ms +[1421764207.214349] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=50.8 ms +[1421764207.432436] 847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421764207.653677] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421764207.937266] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.8 ms +[1421764208.142233] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764208.347543] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764208.553527] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764208.759411] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764208.964932] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764209.173929] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.70 ms +[1421764209.385949] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.32 ms +[1421764209.600011] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421764209.821426] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421764210.042441] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421764210.263413] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421764210.548497] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.6 ms +[1421764210.774023] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421764210.997037] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421764211.202120] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764211.407210] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764211.612532] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421764211.819820] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.07 ms +[1421764212.029463] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.83 ms +[1421764212.266256] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.2 ms +[1421764212.484682] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421764212.706998] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421764212.912649] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764213.117875] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764213.322815] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764213.528314] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764213.733591] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421764213.938751] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764214.143523] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764214.348899] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421764214.554130] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764214.761273] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764214.967555] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764215.173012] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764215.377876] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764215.583062] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764215.788741] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764215.994983] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764216.199951] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764216.405204] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764216.611540] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764216.816618] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764217.021321] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764217.226283] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764217.431360] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764217.636895] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764217.842418] 1021 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764218.046989] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764218.252636] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421764218.457436] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764218.663851] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421764218.869087] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764219.073548] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764219.279551] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764219.485188] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764219.691444] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764219.896591] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764220.101194] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764220.306156] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764220.511021] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764220.715913] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764220.921229] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764221.126633] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764221.332658] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764221.537645] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764221.742590] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764221.947576] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764222.152855] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764222.358287] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421764222.563661] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764222.768955] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764222.975100] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764223.180168] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764223.385907] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.05 ms +[1421764223.591055] 1026 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764223.796050] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764224.001764] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764224.207635] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764224.412765] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764224.619130] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764224.824225] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764225.029608] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764225.234414] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764225.439155] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764225.644682] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764225.849622] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764226.053835] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764226.258332] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764226.464310] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764226.669259] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764226.874038] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764227.078491] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764227.282815] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764227.487724] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764227.692767] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764227.899320] 1720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764228.104821] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764228.309831] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764228.515293] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764228.721099] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421764228.926542] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764229.131660] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764229.338269] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421764229.543526] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764229.748927] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764229.954887] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764230.160888] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764230.367349] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421764230.572921] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764230.778059] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764230.984045] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764231.189304] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764231.394400] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764231.599614] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764231.805223] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764232.009740] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764232.215829] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764232.422123] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764232.627271] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764232.833483] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764233.038503] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764233.243432] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764233.449939] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421764233.656299] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764233.861981] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421764234.066503] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764234.272375] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764234.477587] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764234.682991] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764234.889142] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764235.093977] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764235.298544] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764235.504995] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421764235.710363] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764235.915403] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764236.120002] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764236.324895] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764236.530085] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764236.735241] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764236.939966] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764237.145864] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764237.350986] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764237.555605] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764237.760415] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764237.965773] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764238.170921] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764238.376336] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764238.583040] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421764238.788298] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764238.994427] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764239.199550] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764239.404271] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421764239.609335] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764239.814593] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764240.019654] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421764240.225845] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764240.432191] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764240.639120] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764240.845132] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764241.051396] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764241.256075] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764241.461198] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764241.666425] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764241.871898] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421764242.076603] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764242.281658] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764242.486803] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764242.692859] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764242.898704] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421764243.103406] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764243.308175] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764243.513331] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764243.719451] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764243.924696] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764244.129599] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421764244.334659] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764244.539870] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764244.746209] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764244.953005] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764245.158129] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764245.364699] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764245.571492] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764245.777139] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764245.982922] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764246.188065] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764246.394279] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421764246.600461] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421764246.805816] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764247.010554] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764247.215618] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764247.421686] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764247.627365] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764247.833078] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764248.038541] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421764248.243361] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764248.449525] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421764248.655114] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764248.860615] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764249.066689] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764249.272066] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764249.477524] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764249.684025] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764249.888893] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764250.093691] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764250.299018] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764250.504653] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764250.709826] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764250.916230] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764251.121553] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764251.327096] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421764251.532107] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764251.736994] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764251.942788] 1880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764252.147683] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764252.353867] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421764252.559292] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764252.765432] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764252.970399] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764253.175753] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764253.381077] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421764253.586411] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764253.792438] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764253.997601] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764254.203813] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764254.408652] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764254.613797] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764254.819488] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764255.024866] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421764255.230044] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764255.435188] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764255.640202] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764255.847121] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.10 ms +[1421764256.052019] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764256.257605] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764256.463749] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764256.668955] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764256.874682] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764257.079405] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764257.284244] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764257.490405] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764257.695315] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764257.900616] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764258.105646] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764258.311122] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421764258.516816] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764258.723250] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764258.928417] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764259.135011] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.87 ms +[1421764259.340023] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764259.546186] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764259.751679] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764259.957643] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.93 ms +[1421764260.163115] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764260.368316] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764260.573051] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764260.778112] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764260.983193] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764261.189419] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764261.404828] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421764261.634744] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421764261.847694] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.01 ms +[1421764262.064255] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421764262.333050] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=65.2 ms +[1421764262.558962] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421764262.787958] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421764263.068399] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.2 ms +[1421764263.273467] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764263.478594] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764263.684432] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764263.890996] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764264.095823] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764264.301869] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764264.508132] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764264.714466] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421764264.919537] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764265.124741] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764265.329878] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764265.535686] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764265.745670] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.85 ms +[1421764265.957830] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.99 ms +[1421764266.174542] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421764266.379716] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764266.585081] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764266.792297] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.01 ms +[1421764267.002837] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.46 ms +[1421764267.217339] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421764267.432864] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.9 ms +[1421764267.688840] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=52.0 ms +[1421764267.914034] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421764268.136976] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421764268.359504] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421764268.646871] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.4 ms +[1421764268.873024] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421764269.093535] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421764269.298375] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764269.504461] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764269.709708] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764269.916753] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.30 ms +[1421764270.122083] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764270.327405] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764270.532601] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764270.738045] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764270.943287] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764271.150952] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.78 ms +[1421764271.374426] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421764271.579698] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764271.786121] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764271.991638] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764272.197174] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764272.403761] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421764272.609788] 1417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421764272.816468] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421764273.021277] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764273.227076] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764273.432059] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764273.637178] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764273.843395] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764274.048481] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421764274.253687] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764274.459643] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421764274.666511] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764274.873890] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421764275.079506] 1156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421764275.285053] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764275.492089] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421764275.697525] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764275.902414] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764276.107220] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764276.312522] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764276.517852] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764276.723923] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764276.929672] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764277.135014] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764277.341325] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764277.546656] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764277.751435] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764277.956167] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764278.160962] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764278.366184] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764278.570905] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764278.775403] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764278.980368] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764279.186321] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764279.391469] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764279.598120] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.20 ms +[1421764279.804135] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764280.009484] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764280.214656] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764280.419882] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764280.625979] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764280.831491] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764281.037286] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421764281.242168] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764281.447228] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764281.652372] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764281.858419] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764282.064015] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764282.269799] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764282.475194] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764282.680572] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764282.886044] 825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421764283.090890] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764283.297213] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764283.502532] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764283.707511] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764283.912637] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764284.117160] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764284.321751] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764284.526818] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764284.732125] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764284.937646] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764285.143011] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764285.348976] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764285.553988] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764285.759478] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764285.964845] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764286.169856] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764286.375038] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764286.580266] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764286.785323] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764286.990568] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764287.195673] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764287.401584] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764287.607343] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764287.812171] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764288.016559] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764288.222559] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764288.428395] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764288.634442] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421764288.839527] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764289.043991] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764289.249660] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764289.454766] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764289.660660] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764289.865644] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764290.070481] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764290.276261] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764290.482187] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764290.687160] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764290.892249] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764291.096537] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421764291.301319] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764291.506474] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764291.712336] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764291.917451] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764292.122055] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764292.326716] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764292.531869] 1297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764292.736468] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764292.941067] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.01 ms +[1421764293.145869] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764293.350760] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764293.556054] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764293.762574] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764293.968708] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764294.173640] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764294.378477] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764294.583702] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764294.789604] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421764294.995256] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764295.200434] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764295.405462] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764295.610659] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764295.816010] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764296.020750] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764296.225684] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764296.430526] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764296.636099] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764296.841676] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764297.047536] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764297.252650] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764297.458597] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764297.663492] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764297.868627] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764298.074740] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764298.280019] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764298.484998] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764298.691423] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764298.897122] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764299.103000] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764299.308013] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764299.512920] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764299.718302] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764299.923687] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764300.128447] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764300.336335] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.78 ms +[1421764300.541841] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764300.747165] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764300.953321] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764301.158586] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764301.364110] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764301.569934] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764301.776165] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764301.981604] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764302.186879] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764302.392192] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764302.597961] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764302.803437] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764303.009490] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764303.214741] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764303.420119] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764303.626926] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421764303.832193] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764304.037601] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764304.242807] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764304.448197] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764304.653028] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764304.857927] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764315.266300] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764315.471582] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764315.676642] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764315.882147] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764316.086740] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764316.291789] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764316.498000] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764316.703264] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764316.909508] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764317.114239] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764317.319316] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764317.524870] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764317.730045] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764317.935120] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764318.140092] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764318.345547] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764318.551362] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764318.757127] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764318.962293] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764319.167480] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764319.373124] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421764319.578960] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764319.784766] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764319.989922] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764320.196613] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764320.401918] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764320.607817] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764320.813087] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764321.017983] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764321.223897] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764321.430423] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421764321.635709] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764321.841198] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764322.045883] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764322.251002] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764322.456072] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764322.661293] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764322.867042] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764323.072100] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764323.277215] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764323.483559] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764323.688696] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764323.894133] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764324.100265] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764324.305421] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764324.511890] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764324.717982] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764324.923158] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764325.129623] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764325.338982] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.48 ms +[1421764325.545198] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764325.750727] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421764325.955695] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764326.160975] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764326.367038] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764326.572535] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764326.777951] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764326.983246] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764327.188528] 1417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764327.393661] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764327.598589] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764327.803559] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764328.007998] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764328.213936] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764328.418970] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764328.623955] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764328.829128] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421764329.033860] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764329.238876] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764329.443850] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764329.648909] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764329.853987] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764330.058287] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764330.263114] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764330.468688] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764330.674191] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764330.879687] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764331.084344] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421764331.290424] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764331.496872] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764331.702045] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764331.906841] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764332.111081] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764332.316238] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764332.521826] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764332.727137] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764332.932539] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764333.137927] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764333.343001] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764333.548152] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764333.753639] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764333.959397] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764334.164121] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764334.368831] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764334.574134] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764334.780084] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421764334.985821] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764335.191153] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764335.396050] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764335.601129] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764335.806425] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764336.010913] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764336.215840] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764336.420872] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764336.626977] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764336.832443] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764337.037504] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764337.242799] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764337.447877] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764337.653848] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764337.859459] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764338.064120] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764338.268635] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764338.473592] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764338.679063] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764338.884725] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764339.089437] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764339.294370] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764339.500617] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764339.706836] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764339.912365] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764340.117609] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764340.323903] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764340.529171] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764340.733876] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764340.939190] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764341.144614] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764341.349442] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764341.554482] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764341.760506] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764341.966006] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764342.171582] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764342.376761] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764342.585281] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.64 ms +[1421764342.806338] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421764343.012131] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421764343.218205] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764343.424356] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764343.647019] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421764343.861578] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.91 ms +[1421764344.080639] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421764344.301046] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421764344.521670] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421764344.745111] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421764345.032096] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.9 ms +[1421764345.254781] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421764345.481037] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421764345.706419] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421764345.911543] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764346.145677] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.2 ms +[1421764346.367940] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421764346.588540] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421764346.804110] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421764347.030825] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421764347.256516] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421764347.476915] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421764347.683005] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764347.887863] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764348.092284] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421764348.299148] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.96 ms +[1421764348.509227] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.75 ms +[1421764348.720614] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.43 ms +[1421764348.969525] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.0 ms +[1421764349.185186] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421764349.411691] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421764349.632196] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421764349.856820] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421764350.087444] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.0 ms +[1421764350.315977] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421764350.544062] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421764350.767748] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421764351.046277] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.5 ms +[1421764351.269810] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421764351.499259] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.5 ms +[1421764351.725644] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421764352.012881] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.4 ms +[1421764352.240547] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421764352.447200] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421764352.651850] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764352.856744] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764353.061364] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764353.268931] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.92 ms +[1421764353.481541] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.83 ms +[1421764353.727118] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=41.7 ms +[1421764353.947632] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421764354.168818] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421764354.389749] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421764354.615025] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421764354.839224] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421764355.057413] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421764355.280734] 1186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421764355.506966] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421764355.726119] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421764355.953409] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421764356.180699] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421764356.403052] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421764356.626024] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421764356.855275] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.3 ms +[1421764357.080618] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421764357.309176] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421764357.525710] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421764357.732155] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764357.937199] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764358.143999] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.81 ms +[1421764358.352738] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.93 ms +[1421764358.563979] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.13 ms +[1421764358.784020] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421764358.989164] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764359.210669] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.7 ms +[1421764359.430931] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421764359.648956] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421764359.876520] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421764360.158791] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.3 ms +[1421764360.364176] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764360.569404] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764360.774362] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764360.980507] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421764361.185017] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764361.389829] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764361.595673] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764361.801793] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764362.009528] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.22 ms +[1421764362.222936] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.68 ms +[1421764362.427822] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764362.632572] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764362.837533] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764363.043112] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764363.249664] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421764363.455364] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421764363.660579] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764363.865825] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764364.070344] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764364.276760] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764364.482210] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764364.687655] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421764364.894261] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421764365.098942] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764365.303959] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764365.509441] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764365.715637] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764365.921399] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764366.127600] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764366.332958] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764366.538561] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764366.744538] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764366.949834] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764367.154943] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764367.359882] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764367.564946] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764367.770366] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764367.975309] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764368.181333] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764368.387338] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764368.593774] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764368.799628] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764369.004899] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764369.210050] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764369.415053] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764369.620373] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421764369.825679] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764370.030381] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764370.236296] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764370.441332] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764370.647344] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764370.853373] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.95 ms +[1421764371.059272] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421764371.265051] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764371.470296] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764371.675180] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764371.881427] 1870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764372.087809] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764372.292914] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764372.498134] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764372.706289] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764372.911664] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764373.116224] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764373.322261] 1932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764373.528309] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764373.734619] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764373.939802] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764374.144757] 904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764374.349870] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764374.555377] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764374.761679] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764374.966589] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764375.172035] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764375.377796] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421764375.583279] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764375.789589] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764375.995524] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764376.200503] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764376.405513] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764376.611260] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764376.816739] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764377.021648] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764377.227502] 1984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764377.433630] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764377.639239] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764377.844390] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764378.049936] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764378.255741] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764378.461133] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764378.667674] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764378.872347] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764379.076985] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764379.281739] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764379.487793] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764379.692917] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764379.898652] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764380.104097] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764380.308974] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764380.513979] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764380.719404] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421764380.924648] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764381.129407] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764381.335277] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764381.540359] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764381.745293] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764381.950962] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764382.156113] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764382.361038] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764382.566184] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764382.771672] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764382.977200] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764383.183621] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764383.388748] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764383.594536] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764383.800078] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764384.005421] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764384.210787] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764384.416040] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764384.622381] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764384.827440] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764385.032104] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764385.236879] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764385.442087] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421764385.648470] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764385.853887] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764386.058862] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764386.263911] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764386.469009] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764386.677978] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.94 ms +[1421764386.883519] 837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764387.088469] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764387.293287] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764387.499398] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764387.783609] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.3 ms +[1421764387.988580] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764388.193747] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764388.399832] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764388.605657] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421764388.810947] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764389.015965] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764389.222156] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764389.427351] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764389.640633] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.45 ms +[1421764389.846318] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764390.050911] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764390.256866] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764390.462025] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764390.667616] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764390.872915] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764391.078539] 1612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421764391.285026] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421764391.490426] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764391.695527] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764391.900563] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764392.106233] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.98 ms +[1421764392.312258] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764392.517571] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764392.722628] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764392.927798] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764393.133023] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764393.338159] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764393.543921] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421764393.749843] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764393.955355] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764394.160687] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764394.366732] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764394.572020] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764394.782485] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.06 ms +[1421764394.987930] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764395.193132] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764395.399066] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421764395.604441] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764395.809138] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764396.013827] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764396.218527] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764396.423699] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764396.630486] 1716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764396.835970] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764397.040877] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764397.245926] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764397.451141] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764397.656745] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764397.863307] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764398.069249] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421764398.275200] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764398.481672] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764398.687237] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764398.893965] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764399.098917] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764399.304128] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764399.509726] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421764399.714962] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764399.920108] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764400.125772] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764400.330857] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764400.537570] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764400.743594] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764400.948921] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764401.154448] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764401.359634] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764401.566220] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764401.771622] 161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764401.977193] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764402.183494] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764402.388755] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764402.595155] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764402.800480] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764403.005292] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764403.210899] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421764403.416354] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421764403.622140] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421764403.828741] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764404.034456] 1541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421764404.240398] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764404.445821] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764404.651406] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764404.856601] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764405.062291] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764405.268140] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764405.474778] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764405.681326] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764405.887835] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764406.092658] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764406.298478] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764406.503455] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764406.708819] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764406.913745] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764407.118933] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764407.324182] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764407.529627] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421764407.734635] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764407.941084] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764408.146288] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764408.351323] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764408.556958] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764408.763817] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421764408.970182] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764409.175246] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764409.380883] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764409.586773] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764409.792991] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764409.999229] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764410.204290] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764410.409422] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764410.615458] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764410.820869] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764411.025788] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764411.231719] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764411.436972] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764411.642359] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764411.850521] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.16 ms +[1421764412.055146] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764412.260079] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764412.471627] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.79 ms +[1421764412.677713] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764412.882862] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764413.087302] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764413.292027] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764413.496930] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764413.701902] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764413.908030] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764414.113947] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421764414.319424] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764414.524822] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764414.730072] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764414.935818] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764415.140894] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764415.346046] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764415.550882] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764415.756168] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764415.961135] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764416.166674] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764416.372044] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764416.577035] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764416.782003] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764416.986850] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764417.191671] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764417.396932] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764417.601975] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764417.811398] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.25 ms +[1421764418.017073] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421764418.221779] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421764418.427153] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764418.633827] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764418.839071] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764419.043450] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764419.249205] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764419.455514] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764419.660979] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764419.866651] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764420.072429] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764420.278771] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764420.484981] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764420.691190] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764420.896731] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764421.101707] 1392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764421.306668] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764421.512354] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764421.717865] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764421.923194] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764422.128380] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764422.333442] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764422.538642] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764422.743286] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764422.949523] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764423.154589] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764423.359905] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764423.565643] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764423.770540] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764423.975721] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764424.181034] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764424.386110] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764424.592271] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764424.797350] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764425.003528] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764425.208926] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764425.414021] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764425.620586] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.67 ms +[1421764425.825796] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764426.031255] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764426.236393] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764426.442433] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764426.647824] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764426.853213] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764427.057564] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764427.262474] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764427.467333] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764427.672484] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764427.878077] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764428.083034] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764428.288774] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764428.494764] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421764428.700695] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764428.907163] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764429.113396] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764429.318161] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764429.523595] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764429.731805] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.28 ms +[1421764429.944105] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.30 ms +[1421764430.149619] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764430.354900] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764430.560614] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764430.767021] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764430.972501] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764431.178251] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421764431.383564] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421764431.588744] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764431.793693] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764431.998813] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764432.203830] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764432.409735] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764432.615547] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.93 ms +[1421764432.821835] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764433.027365] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764433.232731] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764433.438547] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764433.644263] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764433.849851] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764434.054703] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764434.259492] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764434.464721] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764434.670096] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764434.876262] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764435.081233] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764435.286692] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764435.492556] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764435.699210] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764435.904859] 1133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764436.109681] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764436.314830] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764436.520356] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764436.726485] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764436.931204] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764437.136326] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764437.342348] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764437.549149] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764437.755629] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764437.961365] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764438.166455] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764438.371667] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764438.576723] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764438.781937] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764438.987062] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764439.192440] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421764439.397396] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764439.602666] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764439.807890] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764440.017144] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.97 ms +[1421764440.222049] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764440.427767] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764440.633167] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764440.838682] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764441.043465] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764441.249633] 1670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764441.454799] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764441.660323] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764441.865557] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764442.070531] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764442.276290] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764442.482308] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.07 ms +[1421764442.687679] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764442.893795] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764443.098688] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764443.304930] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764443.510713] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764443.715970] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764443.920964] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764444.125783] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764444.331052] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764444.536390] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764444.741977] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764444.947553] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764445.152786] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764445.357619] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421764445.562600] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764445.769129] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764445.974090] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764446.179386] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764446.384622] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764446.590685] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421764446.796038] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764447.001441] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764447.207386] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764447.413103] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764447.618117] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764447.823104] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764448.027497] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764448.232191] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764448.436995] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764448.642097] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764448.847673] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764449.052433] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764449.257521] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764449.463138] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764449.668729] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764449.874118] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764450.078505] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764450.283652] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764450.489391] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421764450.694197] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764450.899309] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764451.104044] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764451.309095] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764451.514381] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764451.719902] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764451.925354] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764452.130734] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764452.336726] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764452.542152] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764452.746952] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764452.952349] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764453.157758] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764453.362792] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764453.568828] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764453.774012] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764453.979894] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764454.185692] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421764454.390996] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764454.596833] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764454.802273] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764455.007684] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764455.213560] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764455.418235] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764455.624441] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421764455.830047] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764456.036089] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421764456.242479] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421764456.447352] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764456.652226] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764456.857017] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764457.061892] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764457.267208] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764457.473435] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764457.679949] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764457.886500] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764458.091540] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764458.296157] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764458.500766] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764458.706226] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764458.911675] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421764459.117240] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764459.322366] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764459.527574] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764459.732887] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764459.938260] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764460.143545] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764460.348559] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764460.555366] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764460.768394] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.31 ms +[1421764460.973931] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764461.179296] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764461.384494] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764461.590289] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764461.795416] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764462.000676] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764462.205974] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764462.411083] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764462.617743] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764462.823734] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421764463.028562] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764463.233701] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764463.439199] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764463.645375] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421764463.851489] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764464.056512] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764464.262395] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764464.468595] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764464.674908] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764464.881399] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764465.086352] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764465.291215] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764465.497051] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764465.702977] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764465.909825] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764466.115524] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764466.320901] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764466.526299] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764466.732241] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764466.937150] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764467.142340] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764467.347395] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764467.553849] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764467.759280] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764467.965549] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764468.171030] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764468.376818] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764468.581610] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764468.787463] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764468.992746] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764469.197974] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764469.403812] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764469.609153] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764469.814573] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764470.019173] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764470.227758] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.83 ms +[1421764470.446413] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421764470.663100] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421764470.872075] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.96 ms +[1421764471.077891] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764471.307243] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421764471.513309] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764471.719075] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764471.924492] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764472.130477] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764472.336936] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764472.543451] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764472.748469] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764472.954847] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764473.160457] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764473.365603] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764473.571359] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764473.777819] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764473.982706] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764474.188076] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421764474.393098] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764474.598199] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764474.804672] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421764475.010137] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764475.214872] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764475.419777] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764475.625169] 512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764475.831429] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764476.036193] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764476.289894] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=50.0 ms +[1421764476.495954] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764476.701891] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764476.907371] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764477.112049] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764477.317979] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764477.523300] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764477.728311] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764477.934862] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764478.140375] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764478.345856] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764478.551028] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764478.756399] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764478.962378] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764479.168035] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421764479.373012] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764479.577965] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764479.782668] 145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764479.988075] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764480.193425] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764480.399521] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421764480.604871] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764480.811199] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764481.016415] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764481.222918] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764481.429421] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764481.634878] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764481.840372] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764482.045126] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764482.249875] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764482.455145] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764482.660415] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764482.865241] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764483.069711] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764483.274265] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764483.480473] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764483.686106] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764483.890991] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764484.095601] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764484.313756] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421764484.525884] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.40 ms +[1421764484.731300] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421764484.936470] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764485.141628] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764485.346151] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764485.552366] 1984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421764485.759463] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.97 ms +[1421764485.985079] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421764486.196917] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.14 ms +[1421764486.407484] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.66 ms +[1421764486.625603] 1451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.1 ms +[1421764486.845897] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421764487.125551] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.0 ms +[1421764487.355516] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421764487.560686] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764487.786282] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421764488.069741] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.6 ms +[1421764488.296817] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421764488.528639] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.1 ms +[1421764488.752797] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421764489.042655] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.8 ms +[1421764489.269283] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421764489.540721] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=67.4 ms +[1421764489.759704] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421764489.987108] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421764490.192738] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764490.397629] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764490.606645] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.31 ms +[1421764490.816148] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.46 ms +[1421764491.031392] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421764491.246820] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421764491.453358] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421764491.660268] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.78 ms +[1421764491.866818] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764492.071539] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764492.277234] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764492.481988] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764492.688940] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.24 ms +[1421764492.895031] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764493.100046] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764493.304986] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764493.509993] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764493.715074] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764493.920604] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764494.125892] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764494.331949] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764494.537187] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764494.742545] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764494.947679] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764495.152626] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764495.357867] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764495.563298] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764495.769592] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764495.974908] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764496.180893] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764496.385835] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764496.590878] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764496.796887] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421764497.001788] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764497.206975] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764497.412271] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764497.616954] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764497.823228] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764498.027812] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764498.234273] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764498.439979] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764498.645680] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764498.851324] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764499.056241] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764499.261129] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764499.466234] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764499.672281] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764499.877368] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764500.082097] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764500.287343] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764500.495569] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.94 ms +[1421764500.700977] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764500.906079] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764501.111047] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764501.316131] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764501.521673] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764501.728397] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421764501.934809] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764502.139711] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764502.344573] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764502.549476] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764502.754023] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764502.959196] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764503.164048] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764503.368767] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764503.573752] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764503.778903] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764503.984340] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764504.189669] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764504.406835] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421764504.612025] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764504.818202] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764505.023025] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764505.228330] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764505.433018] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764505.638127] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764505.843248] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764506.048393] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764506.253466] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764506.459613] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764506.664749] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764506.870121] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764507.075684] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421764507.280932] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764507.486507] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764507.691580] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764507.896866] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764508.101991] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764508.308586] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421764508.515604] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421764508.721555] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421764508.927060] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764509.132190] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764509.337170] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764509.542315] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764509.747400] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764509.952866] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764510.158339] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764510.363551] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764510.569051] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764510.774555] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764510.980693] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764511.185887] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764511.390856] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764511.597417] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764511.811540] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.98 ms +[1421764512.031711] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421764512.236757] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764512.450453] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.51 ms +[1421764512.656132] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764512.861683] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764513.066788] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764513.272497] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764513.477691] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764513.683006] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764513.889769] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764514.095762] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764514.302005] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764514.507268] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764514.713541] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421764514.919892] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764515.124536] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764515.330444] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764515.535928] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764515.742484] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764515.947691] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764516.153756] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764516.361417] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.44 ms +[1421764516.567062] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764516.772562] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764516.977687] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764517.183225] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764517.389484] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764517.595251] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764517.802040] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764518.006963] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764518.211989] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764518.417456] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764518.623997] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764518.829336] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764519.033933] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764519.238877] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764519.443827] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764519.648948] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764519.853943] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421764520.058668] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764520.263702] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421764520.470282] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421764520.675901] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764520.881587] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764521.088334] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.12 ms +[1421764521.293447] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764521.498499] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764521.704025] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764521.909535] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764522.114357] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764522.319511] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764522.525152] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764522.731150] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764522.935956] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764523.141010] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764523.346751] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421764523.552833] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764523.757933] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764523.963837] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421764524.169231] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764524.375758] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421764524.581527] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764524.787487] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764524.994119] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764525.199844] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764525.404806] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764525.610882] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764525.815911] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764526.021942] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764526.227292] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764526.435146] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.33 ms +[1421764526.640624] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764526.845909] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764527.051430] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764527.257639] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421764527.462494] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764527.667745] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764527.873132] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764528.078693] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421764528.284849] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764528.491029] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764528.696780] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764528.902265] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764529.108058] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764529.313263] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764529.519598] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764529.724827] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764529.931159] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764530.136494] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764530.341745] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764530.546830] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764530.751590] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764530.957738] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764531.163043] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764531.368640] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764531.573874] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764531.778901] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764531.984240] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764532.190488] 1984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764532.396828] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764532.602210] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764532.807523] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764533.011968] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764533.217178] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764533.422727] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764533.627908] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764533.832946] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764534.037519] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764534.243643] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764534.448810] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764534.654919] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421764534.860324] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764535.065471] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764535.271235] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764535.476820] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421764535.682531] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764535.888004] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764536.092847] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764536.297765] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764536.503390] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764536.708770] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764536.913680] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764537.118259] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764537.323111] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764537.529050] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764537.734079] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764537.939559] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764538.144673] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764538.350205] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764538.555283] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764538.760110] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764538.964898] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764539.170065] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764539.375022] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764539.579884] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764539.785105] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764539.991481] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764540.196381] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421764540.401389] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764540.606817] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764540.812116] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764541.016660] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764541.222977] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764541.428581] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764541.645948] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421764541.851319] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764542.066609] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421764542.271673] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764542.476448] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764542.681330] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764542.886478] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764543.091288] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764543.297440] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764543.502509] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764543.708985] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764543.915186] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764544.120248] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764544.326106] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764544.531161] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764544.736240] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764544.941239] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764545.147295] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764545.353199] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764545.558194] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764545.763332] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764545.969498] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.89 ms +[1421764546.174920] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764546.379747] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764546.585118] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764546.791604] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764546.998578] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421764547.203843] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764547.410313] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764547.615713] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764547.821907] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764548.026951] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764548.233137] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421764548.438298] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764548.644969] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764548.850456] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764549.056368] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764549.265426] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.09 ms +[1421764549.470829] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764549.677162] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764549.882872] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764550.088410] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764550.293500] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764550.498867] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764550.704673] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764550.911329] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764551.117319] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764551.322468] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764551.528834] 1670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421764551.735047] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421764551.940365] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764552.145551] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764552.351603] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764552.569594] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421764552.774542] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764552.995115] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421764553.200608] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764553.406738] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764553.612176] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764553.817621] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764554.022330] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764554.227244] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764554.431935] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764554.636864] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764554.843156] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764555.053007] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.70 ms +[1421764555.258520] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764555.464102] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764555.669469] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764555.876231] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.74 ms +[1421764556.103859] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421764556.309265] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764556.514747] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764556.720362] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764556.925817] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764557.131015] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764557.336000] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764557.541819] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.88 ms +[1421764557.747557] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764557.952817] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764558.157557] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764558.362994] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764558.568408] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421764558.773554] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764558.980299] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421764559.185509] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764559.391910] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764559.597009] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764559.803099] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764560.007912] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764560.214076] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764560.419339] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764560.625226] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421764560.830791] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764561.035492] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764561.240219] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764561.445419] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764561.650961] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764561.857170] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764562.063018] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764562.268977] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421764562.475124] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764562.680973] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764562.887113] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764563.092984] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764563.298315] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764563.503360] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764563.708653] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764563.914818] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764564.120648] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764564.326724] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764564.532145] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764564.738699] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764564.944152] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764565.149156] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764565.354389] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764565.560129] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764565.765841] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764565.971218] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764566.176544] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764566.382686] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764566.587449] 161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764566.792584] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764566.998231] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764567.203234] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764567.408342] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764567.614471] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421764567.819666] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764568.023992] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764568.228652] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764568.448532] 1503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421764568.653803] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421764568.859148] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764569.066273] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.39 ms +[1421764569.275438] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.32 ms +[1421764569.480213] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764569.686146] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764569.891196] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764570.096276] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764570.301375] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764570.505970] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764570.711161] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764570.916196] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764571.120685] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764571.326678] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764571.531489] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764571.736405] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764571.941391] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764572.146497] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764572.351333] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764572.557323] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764572.763354] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764572.968265] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764573.173333] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764573.378721] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764573.584385] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764573.789474] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764573.994412] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764574.200425] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764574.405350] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764574.610427] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764574.815536] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764575.020365] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764575.226485] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421764575.431247] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764575.635912] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764575.842142] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764576.046745] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764576.252556] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764576.460485] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.39 ms +[1421764576.665774] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764576.871496] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764577.076696] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764577.281697] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764577.487298] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.87 ms +[1421764577.692725] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764577.898874] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.88 ms +[1421764578.104302] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764578.309417] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764578.514080] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764578.718881] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764578.923876] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764579.129839] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764579.335095] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764579.540250] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764579.746506] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764579.951936] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764580.157047] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764580.361893] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764580.567786] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764580.774138] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764580.978958] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764581.183861] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764581.389001] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764581.594197] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764581.799535] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764582.004637] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764582.209731] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764582.415602] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764582.621769] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764582.827221] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764583.032150] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764583.237102] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764583.443572] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421764583.649664] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764583.854791] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764584.059856] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764584.265688] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421764584.472368] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764584.677759] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764584.883506] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764585.088649] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764585.293791] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764585.498831] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764585.705509] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764585.911076] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764586.116352] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764586.322261] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764586.527561] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764586.732849] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764586.937812] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764587.143082] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764587.347760] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764587.553844] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764587.759513] 1049 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764587.965118] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764588.170467] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764588.375722] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764588.580731] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764588.786010] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764588.992545] 1932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421764589.198197] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764589.403135] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764589.608411] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764589.813681] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764590.020260] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764590.225669] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764590.431094] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764590.636458] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764590.842082] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764591.063142] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421764591.268243] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764591.474555] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764591.679727] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764591.885682] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764592.090301] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764592.295438] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764592.500494] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764592.705502] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764592.910752] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764593.116022] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764593.322271] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764593.528067] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764593.734767] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421764593.940194] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764594.146276] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764594.351664] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764594.556296] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764594.762315] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764594.967337] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764595.172419] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764595.377736] 161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764595.583462] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764595.789968] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764595.996400] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764596.201553] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764596.406339] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764596.611307] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764596.817524] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421764597.022558] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764597.227308] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764597.432329] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764597.637502] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764597.843050] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764598.048686] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764598.253789] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764598.459155] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764598.665699] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764598.871361] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764599.076674] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764599.283106] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421764599.488239] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764599.695601] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.31 ms +[1421764599.901604] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764600.106476] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764600.312201] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764600.517234] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764600.722533] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764600.927636] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764601.133163] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764601.338704] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764601.544115] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764601.749797] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764601.956019] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764602.161321] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764602.367311] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764602.572412] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764602.777190] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764602.982484] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764603.187584] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764603.393402] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764603.599451] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764603.804772] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764604.010478] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764604.215487] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764604.420621] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764604.626970] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764604.832405] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764605.037925] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764605.242693] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764605.447669] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764605.653034] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764605.859126] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764606.063615] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764606.269607] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764606.476028] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764606.681975] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764606.887141] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764607.093148] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764607.298614] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421764607.504012] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764607.709622] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421764607.916578] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.69 ms +[1421764608.122022] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764608.328423] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421764608.534624] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421764608.740244] 1175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764608.945776] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764609.151280] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764609.356423] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764609.561793] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764609.767227] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764609.972073] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421764610.177163] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764610.383281] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421764610.588610] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764610.794172] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764610.999587] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764611.205712] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764611.410985] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764611.616956] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764611.822311] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764612.026979] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764612.232156] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764612.437379] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764612.643621] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764612.848564] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764613.053277] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764613.258492] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764613.464015] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764613.669859] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764613.875043] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764614.079917] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764614.285228] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764614.491024] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764614.696460] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764614.902955] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764615.107951] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764615.313237] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764615.518934] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764615.724005] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764615.928902] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764616.134049] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764616.339451] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764616.544653] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421764616.749772] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764616.956042] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764617.162299] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764617.367902] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764617.573154] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764617.778177] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764617.983285] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764618.188212] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421764618.393226] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764618.598046] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764618.804235] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764619.010008] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764619.215069] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764619.420973] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764619.626080] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764619.831629] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764620.037415] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421764620.242185] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764620.448047] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764620.652850] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764620.858103] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764621.062720] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764621.267759] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764621.472654] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764621.677807] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764621.883357] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764622.088131] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764622.292780] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764622.497533] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764622.703347] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421764622.908522] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764623.114397] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764623.318932] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764623.523586] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764623.729285] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764623.934346] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764624.139768] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764624.344810] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764624.550233] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764624.755419] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764624.961586] 1932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764625.166976] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764625.372634] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764625.577743] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764625.783153] 512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764625.988549] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764626.193892] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764626.399162] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764626.604288] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764626.810387] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764627.016231] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764627.221366] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764627.426357] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764627.631514] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764627.837111] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764628.042828] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421764628.247348] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764628.452228] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764628.657615] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764628.863335] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764629.068422] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764629.273961] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764629.480063] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764629.686444] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421764629.891941] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764630.097553] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421764630.302469] 1075 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764630.508276] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764630.713279] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764630.918583] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764631.124187] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421764631.328963] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764631.534018] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764631.739024] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764631.944615] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421764632.149424] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764632.354329] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764632.560526] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764632.766055] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764632.971027] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764633.175971] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764633.381816] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764633.586906] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764633.793090] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764633.998679] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764634.203092] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764634.408055] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764634.613267] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764634.819918] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764635.025029] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764635.229911] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764635.435113] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421764635.639598] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764635.844745] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421764636.048958] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764636.253778] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764636.458514] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764636.663655] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764636.868723] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764637.074400] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764637.280178] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764637.484901] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764637.690503] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.90 ms +[1421764637.895745] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764638.100503] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764638.305525] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764638.511244] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764638.717879] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421764638.923441] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764639.128887] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764639.333719] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764639.539843] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764639.744901] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764639.950165] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421764640.156328] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764640.361900] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764640.567206] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764640.772495] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764640.978596] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764641.183597] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764641.389033] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764641.601815] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.47 ms +[1421764641.807634] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764642.012409] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764642.217143] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764642.423368] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764642.629196] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764642.834404] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764643.039264] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764643.244019] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764643.449022] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764643.654978] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764643.860041] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764644.064685] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764644.269704] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764644.475086] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421764644.680264] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764644.885701] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764645.090716] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764645.295408] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764645.500416] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764645.705579] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764645.910541] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764646.115177] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764646.320059] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764646.526110] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764646.732825] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764646.939215] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764647.144799] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764647.349943] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764647.555029] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764647.761286] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764647.966210] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764648.171506] 847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764648.384897] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.52 ms +[1421764648.589908] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764648.795407] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764649.000446] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764649.206626] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764649.411679] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764649.616870] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764649.821952] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764650.026683] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764650.231506] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764650.436483] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764650.641231] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764650.846343] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764651.051342] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764651.259562] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.28 ms +[1421764651.465654] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764651.671727] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764651.877284] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764652.082450] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764652.287317] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764652.492412] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764652.697834] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764652.902803] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764653.107477] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421764653.312864] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764653.518031] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764653.724408] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421764653.930512] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421764654.140264] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.76 ms +[1421764654.352513] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.50 ms +[1421764654.571031] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421764654.792114] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421764655.012351] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421764655.234565] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421764655.520691] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.7 ms +[1421764655.746394] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421764655.951966] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764656.157585] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764656.362699] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764656.567765] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764656.775759] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.32 ms +[1421764656.985645] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.96 ms +[1421764657.198450] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.60 ms +[1421764657.415127] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421764657.630590] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421764657.896313] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.0 ms +[1421764658.171298] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.2 ms +[1421764658.397377] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421764658.625381] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421764658.850870] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421764659.140430] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=86.0 ms +[1421764659.419817] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.2 ms +[1421764659.643498] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421764659.870786] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421764660.152146] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.5 ms +[1421764660.376288] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421764660.607418] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.1 ms +[1421764660.837557] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.3 ms +[1421764661.043040] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421764661.248897] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764661.455206] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.80 ms +[1421764661.664082] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.95 ms +[1421764661.898341] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.6 ms +[1421764662.102951] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764662.308599] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764662.513228] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764662.718555] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764662.923942] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764663.128777] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764663.333484] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764663.539589] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764663.745176] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764663.950541] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764664.155571] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764664.360627] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764664.566898] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764664.773791] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.96 ms +[1421764664.980049] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764665.186347] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764665.392743] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764665.598244] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764665.804065] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764666.008572] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764666.214442] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764666.419583] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764666.624254] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764666.829165] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764667.033516] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764667.239315] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764667.444430] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764667.649696] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764667.855119] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764668.060319] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764668.266343] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421764668.471781] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421764668.678416] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421764668.883396] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764669.088817] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764669.293456] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764669.498717] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764669.704038] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764669.909350] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764670.114743] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764670.319607] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764670.526797] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.69 ms +[1421764670.731948] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421764670.936913] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764671.141993] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764671.346864] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764671.553044] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764671.758389] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764671.963073] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764672.169143] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764672.374710] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421764672.580937] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764672.787023] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764672.993849] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764673.199529] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764673.404794] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764673.610526] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764673.816705] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764674.021320] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764674.227191] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764674.432232] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764674.637793] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764674.843059] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764675.047842] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764675.253163] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764675.458623] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764675.664108] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764675.869166] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764676.073812] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764676.278993] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764676.484505] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764676.690979] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764676.896746] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764677.101510] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764677.307042] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764677.512595] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764677.717468] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764677.922645] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764678.128035] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764678.332835] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764678.538249] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764678.743768] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764678.949018] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764679.153974] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764679.359066] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764679.564449] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764679.770575] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764679.976865] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764680.182072] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764680.387478] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764680.592946] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764680.798616] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764681.003860] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764681.209656] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421764681.415234] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764681.620586] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764681.826653] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764682.031560] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764682.236583] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764682.441636] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764682.646338] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764682.851870] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764683.057669] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764683.262416] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764683.467727] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764683.673160] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764683.877973] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764684.082666] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764684.287297] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764684.492261] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764684.697390] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764684.903612] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764685.108593] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764685.313316] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764685.518124] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764685.723273] 1148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764685.929565] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764686.134679] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764686.340092] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764686.545622] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764686.750891] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764686.955860] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764687.160848] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764687.366306] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764687.572119] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764687.778055] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764687.984377] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764688.189484] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764688.395561] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764688.601436] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764688.806673] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764689.011588] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764689.217586] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764689.422889] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764689.628418] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764689.833907] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764690.038425] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764690.243171] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764690.448241] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764690.653403] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764690.858270] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764691.062894] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764691.267938] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764691.472701] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764691.677529] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764691.883554] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764692.088227] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764692.292985] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764692.498385] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764692.703694] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764692.909728] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421764693.114277] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764693.319403] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764693.525083] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764693.730403] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764693.935742] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764694.140665] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764694.345478] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764694.550164] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764694.756331] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764694.961612] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764695.166453] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764695.371775] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764695.577040] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764695.781695] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764695.986847] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764696.193253] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421764696.398040] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764696.603860] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764696.808779] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764697.013490] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764697.218631] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421764697.423311] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764697.629643] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764697.834825] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764698.039471] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764698.244280] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764698.449512] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421764698.655811] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421764698.862480] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421764699.068080] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764699.273816] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764699.480101] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764699.684810] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764699.890542] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421764700.096016] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764700.300778] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764700.506071] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764700.712527] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764700.918232] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764701.123443] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764701.328649] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764701.534105] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764701.739853] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421764701.945445] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764702.155889] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.68 ms +[1421764702.365818] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.08 ms +[1421764702.579624] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.39 ms +[1421764702.795172] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421764703.051938] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=52.5 ms +[1421764703.274956] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421764703.501162] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421764703.783064] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421764704.009027] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421764704.231346] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421764704.458088] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421764704.740089] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.2 ms +[1421764705.025683] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.0 ms +[1421764705.253736] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421764705.486836] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.2 ms +[1421764705.692081] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764705.897791] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764706.105437] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.94 ms +[1421764706.323624] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421764706.557865] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.2 ms +[1421764706.769629] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.46 ms +[1421764707.024325] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=50.5 ms +[1421764707.246156] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421764707.523944] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.3 ms +[1421764707.751346] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421764708.034501] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.2 ms +[1421764708.257051] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421764708.462223] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764708.667817] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764708.873623] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764709.078655] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764709.284822] 1870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764709.489785] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764709.695299] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764709.900883] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764710.106986] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764710.311934] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764710.516820] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764710.722941] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421764710.928894] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764711.133990] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764711.340221] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764711.546326] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764711.752944] 1984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764711.958101] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764712.163642] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764712.369478] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764712.574999] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764712.781377] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764712.986484] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764713.191675] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764713.396640] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764713.602918] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764713.809493] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764714.014152] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764714.219915] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764714.425034] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764714.630027] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764714.834851] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764715.039553] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764715.244494] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764715.451025] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764715.656614] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764715.862636] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764716.068305] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421764716.273137] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764716.479306] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764716.686047] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764716.891860] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764717.096586] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764717.301390] 512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764717.506174] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764717.711627] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764717.917738] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764718.122510] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764718.327327] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764718.533967] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764718.739751] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764718.945290] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764719.151390] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764719.356767] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764719.563010] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764719.769029] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764719.974831] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764720.181108] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764720.386518] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764720.592960] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421764720.797966] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764721.003012] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764721.208270] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764721.413172] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764721.618059] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764721.822600] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764722.027219] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764722.233148] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764722.438498] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764722.644264] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764722.849950] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764723.054504] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764723.260473] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764723.466008] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764723.671420] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764723.876641] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764724.081646] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764724.286783] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764724.491777] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764724.697834] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764724.903446] 1021 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764725.108591] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764725.314800] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764725.520015] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764725.725254] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764725.930897] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764726.137384] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764726.343325] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764726.548853] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764726.753992] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764726.959758] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764727.164577] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764727.369657] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764727.575307] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764727.780561] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764727.985635] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764728.190377] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764728.395478] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764728.602134] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764728.807353] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764729.013077] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421764729.219044] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764729.424436] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421764729.630074] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764729.835245] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764730.039686] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764730.244701] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421764730.449462] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764730.654377] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764730.860631] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764731.066293] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764731.271206] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764731.476304] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764731.681196] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764731.886287] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764732.092069] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764732.297955] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764732.504042] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764732.709240] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764732.914645] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421764733.120952] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.79 ms +[1421764733.327086] 1880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764733.532445] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764733.737750] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764733.942861] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764734.148035] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764734.353253] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764734.558645] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764734.764236] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764734.969500] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764735.174644] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764735.379741] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764735.584639] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764735.790624] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764735.995646] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764736.202253] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764736.408398] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764736.613818] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764736.819990] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764737.026106] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764737.231121] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764737.436286] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764737.641970] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764737.847341] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764738.051963] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764738.257894] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764738.463034] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764738.668787] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764738.873747] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764739.078426] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764739.284336] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764739.489147] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764739.694791] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421764739.899795] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764740.104896] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764740.309838] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764740.515929] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764740.722713] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764740.929174] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764741.135054] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421764741.341775] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421764741.547841] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421764741.754247] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764741.959543] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764742.165616] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764742.383039] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421764742.588216] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764742.794609] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421764743.000176] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764743.205159] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764743.410026] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764743.616038] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764743.821186] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764744.025659] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764744.231578] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764744.436975] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764744.642172] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764744.847376] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764745.052452] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764745.258287] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764745.463052] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764745.669504] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764745.874648] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764746.079476] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764746.284752] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764746.490089] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764746.695435] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421764746.900113] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764747.106177] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764747.311725] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764747.516901] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764747.722293] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764747.927680] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764748.133782] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421764748.338926] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764748.543801] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764748.748677] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764748.953778] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764749.160256] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764749.366517] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764749.571935] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764749.777056] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764749.982391] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764750.187811] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764750.393131] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764750.598812] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764750.805483] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421764751.010120] 1156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764751.215060] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764751.420061] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764751.624979] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764751.830564] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764752.036030] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421764752.241022] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764752.447428] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764752.653223] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764752.859791] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421764753.064972] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764753.269861] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764753.474874] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421764753.680049] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764753.886311] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764754.092406] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421764754.297617] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764754.502875] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764754.708396] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764754.913759] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764755.118869] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764755.323786] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764755.528836] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764755.733922] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764755.939351] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764756.144300] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764756.349316] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764756.555689] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421764756.760785] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764756.965952] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764757.170516] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764757.376501] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764757.582433] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764757.787436] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764757.992294] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764758.197956] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764758.403751] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764758.609196] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764758.814839] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764759.019909] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764759.224804] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764759.430445] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764759.635852] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764759.841762] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764760.047173] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421764760.252274] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764760.457219] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764760.663632] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764760.868615] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764761.073652] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764761.279731] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764761.485602] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764761.691501] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764761.896884] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764762.102064] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764762.306777] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764762.512625] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421764762.717938] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764762.923833] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764763.130142] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421764763.335387] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764763.540399] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764763.746730] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764763.952183] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764764.157857] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764764.364561] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764764.570375] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764764.775718] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764764.981167] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764765.187170] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764765.392591] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764765.597560] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764765.803503] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764766.008287] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764766.213463] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764766.420396] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.22 ms +[1421764766.625872] 89 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421764766.834874] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.22 ms +[1421764767.039419] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764767.251990] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.40 ms +[1421764767.470041] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421764767.690434] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421764767.912396] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421764768.133144] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421764768.341368] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.75 ms +[1421764768.546209] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764768.751379] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764768.957772] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421764769.167836] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.18 ms +[1421764769.404657] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.0 ms +[1421764769.618119] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.44 ms +[1421764769.823784] 814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764770.028301] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764770.233400] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764770.438430] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764770.644034] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764770.849481] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764771.053908] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764771.258846] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764771.464749] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764771.669775] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764771.874701] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764772.080201] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764772.286107] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764772.491767] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421764772.697754] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764772.904120] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764773.110286] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764773.314799] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764773.520782] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764773.725642] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764773.930821] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764774.137238] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764774.342399] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764774.547793] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764774.753028] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764774.957962] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764775.164130] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764775.369161] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764775.574126] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764775.780560] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764775.985380] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764776.191314] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421764776.397028] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764776.602839] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764776.808120] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764777.013738] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764777.219671] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764777.425613] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764777.630491] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764777.835753] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764778.041598] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421764778.246472] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764778.452017] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764778.657960] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764778.863450] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764779.082620] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421764779.287962] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764779.493419] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764779.698800] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764779.905029] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764780.109660] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764780.315175] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764780.520550] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764780.726025] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764780.932587] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764781.137609] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764781.342948] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764781.549051] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764781.754530] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764781.959958] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764782.166374] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764782.371717] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764782.578099] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764782.783408] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764782.988619] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764783.193599] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764783.399815] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764783.605276] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764783.810497] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764784.015279] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764784.220535] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764784.426639] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764784.631952] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764784.838522] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764785.043682] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764785.248598] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764785.454642] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764785.660136] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764785.866173] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764786.071454] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764786.276760] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764786.482329] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764786.687641] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764786.893105] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764787.101554] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.09 ms +[1421764787.307626] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421764787.513100] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764787.718090] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764787.922834] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764788.128130] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764788.332963] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764788.538116] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764788.744164] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421764788.949563] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764789.154626] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764789.360034] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764789.565590] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764789.770779] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764789.976097] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421764790.181687] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421764790.386956] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764790.592041] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764790.798596] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764791.004941] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764791.210159] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764791.415370] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764791.620913] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764791.826796] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764792.031608] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764792.236254] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764792.441192] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764792.646502] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764792.853017] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764793.058830] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421764793.264383] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764793.471542] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.72 ms +[1421764793.677784] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421764793.884015] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421764794.089913] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421764794.296421] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764794.502881] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421764794.708000] 89 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764794.913458] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764795.119168] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764795.324671] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764795.530151] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764795.735463] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764795.940708] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764796.145801] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764796.350839] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764796.556016] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764796.762806] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764796.968023] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764797.173171] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764797.378191] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764797.583311] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764797.788891] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764797.994278] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764798.200627] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764798.405789] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764798.610858] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764798.816047] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764799.020888] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764799.227059] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764799.432464] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764799.637766] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764799.842803] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764800.048053] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764800.253230] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764800.459225] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.89 ms +[1421764800.665211] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764800.871569] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764801.076616] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764801.281267] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764801.486005] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764801.691225] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764801.897506] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421764802.102174] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764802.307833] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421764802.513414] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764802.722275] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.85 ms +[1421764802.927387] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764803.132288] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764803.337284] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764803.542236] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764803.747153] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764803.951883] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764804.156804] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764804.362098] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764804.567664] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764804.773248] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764804.978920] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764805.184547] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764805.390655] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764805.596224] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764805.802880] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421764806.007883] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764806.212729] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764806.417705] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764806.623257] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764806.828560] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764807.033290] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764807.238096] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764807.443574] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764807.649212] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764807.854873] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764808.059985] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764808.265002] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764808.470315] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764808.676232] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764808.881658] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764809.086433] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764809.292639] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421764809.498113] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764809.703475] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764809.908693] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764810.114255] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764810.319394] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764810.524603] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764810.729983] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764810.935291] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764811.141167] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764811.346149] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764811.551556] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764811.758005] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421764811.963517] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764812.168558] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764812.374700] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764812.579619] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764812.784956] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764812.990077] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764813.195143] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764813.401097] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.94 ms +[1421764813.611815] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.31 ms +[1421764813.825657] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.76 ms +[1421764814.041295] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.0 ms +[1421764814.300069] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=55.0 ms +[1421764814.522938] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421764814.750547] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421764814.971599] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421764815.198730] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764815.482713] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.0 ms +[1421764815.713770] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.8 ms +[1421764815.943799] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421764816.148927] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764816.354211] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764816.559182] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764816.764229] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764816.982857] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421764817.194024] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.99 ms +[1421764817.410281] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421764817.626721] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421764817.847781] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421764818.075125] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421764818.305210] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.1 ms +[1421764818.528786] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421764818.815022] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.3 ms +[1421764819.098639] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.0 ms +[1421764819.304815] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764819.511057] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421764819.716755] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421764819.944098] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421764820.169961] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421764820.451655] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.8 ms +[1421764820.680581] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421764820.885706] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764821.111794] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421764821.342001] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.2 ms +[1421764821.547680] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764821.753229] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764821.958832] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764822.166997] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.10 ms +[1421764822.378512] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.67 ms +[1421764822.592661] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421764822.809482] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764823.025437] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421764823.246348] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421764823.528269] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421764823.753603] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421764823.981161] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421764824.208158] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421764824.432804] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421764824.661882] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421764824.889042] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421764825.117119] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421764825.343600] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421764825.569027] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421764825.799104] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.4 ms +[1421764826.028629] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.1 ms +[1421764826.233925] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764826.442146] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.47 ms +[1421764826.647890] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764826.856442] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.64 ms +[1421764827.066147] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.42 ms +[1421764827.282426] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421764827.496779] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421764827.713576] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421764827.939399] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421764828.160994] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421764828.389111] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421764828.658966] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=66.2 ms +[1421764828.885865] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421764829.106814] 1410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421764829.312034] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421764829.516466] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764829.722535] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764829.927846] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764830.132942] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764830.338888] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764830.544868] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764830.749972] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764830.955104] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764831.160302] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764831.365219] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764831.570858] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764831.777568] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421764831.983733] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764832.189052] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764832.397271] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.40 ms +[1421764832.608619] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.49 ms +[1421764832.819857] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.38 ms +[1421764833.037924] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421764833.256565] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421764833.461935] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764833.667372] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764833.872314] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764834.084038] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.01 ms +[1421764834.307896] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421764834.545962] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.9 ms +[1421764834.761404] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421764834.976947] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421764835.196775] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421764835.478650] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.2 ms +[1421764835.705407] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421764835.933810] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421764836.222523] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.8 ms +[1421764836.449681] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421764836.669339] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.7 ms +[1421764836.896373] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421764837.125580] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.4 ms +[1421764837.410313] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.5 ms +[1421764837.635013] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421764837.859311] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421764838.063830] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764838.269022] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764838.477979] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.58 ms +[1421764838.700059] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421764838.905466] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764839.148090] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.3 ms +[1421764839.398758] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.6 ms +[1421764839.621076] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421764839.843869] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421764840.068263] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421764840.352756] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.4 ms +[1421764840.580500] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421764840.861190] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.5 ms +[1421764841.088489] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421764841.316458] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421764841.542508] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421764841.769749] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421764842.050043] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.5 ms +[1421764842.270009] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421764842.497748] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421764842.706157] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.51 ms +[1421764842.911855] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764843.119759] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.45 ms +[1421764843.338947] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421764843.553255] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421764843.758820] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764843.964046] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764844.173826] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.81 ms +[1421764844.389655] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421764844.623670] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.3 ms +[1421764844.839872] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421764845.057168] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421764845.263701] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764845.480274] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421764845.730825] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.5 ms +[1421764845.936255] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764846.146532] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.71 ms +[1421764846.361000] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421764846.581977] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421764846.861148] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.1 ms +[1421764847.086372] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421764847.307124] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421764847.532910] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421764847.758263] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421764848.023093] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.8 ms +[1421764848.228513] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764848.433992] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764848.640021] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.03 ms +[1421764848.861156] 1612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421764849.073578] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.78 ms +[1421764849.281265] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.98 ms +[1421764849.501565] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421764849.722490] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421764849.942470] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421764850.167653] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421764850.391491] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421764850.611976] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421764850.891987] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.6 ms +[1421764851.096814] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764851.314512] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421764851.546215] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.4 ms +[1421764851.821190] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.4 ms +[1421764852.051733] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.9 ms +[1421764852.272829] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421764852.556880] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.1 ms +[1421764852.779163] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421764852.985023] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764853.190655] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764853.397678] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.40 ms +[1421764853.619259] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421764853.831476] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.50 ms +[1421764854.050920] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421764854.272133] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421764854.486675] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421764854.754086] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=63.5 ms +[1421764854.974220] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421764855.257857] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.5 ms +[1421764855.551414] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=89.3 ms +[1421764855.776656] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421764855.997372] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421764856.221876] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421764856.513974] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=87.3 ms +[1421764856.742589] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421764857.030407] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.7 ms +[1421764857.236173] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764857.443126] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.92 ms +[1421764857.649275] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764857.854610] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764858.059610] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764858.265283] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764858.470353] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764858.675264] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764858.887264] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.08 ms +[1421764859.091838] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764859.296865] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764859.501933] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764859.707756] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764859.912932] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764860.118376] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764860.323535] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764860.528283] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764860.733735] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421764860.938854] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764861.144278] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764861.349028] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764861.554296] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764861.761054] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764861.968014] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421764862.173478] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764862.378367] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764862.584242] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764862.789214] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764862.994773] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421764863.200311] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764863.406442] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764863.611987] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764863.817168] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764864.022648] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764864.227716] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764864.432856] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764864.638350] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764864.843896] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764865.049757] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764865.255342] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764865.460457] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764865.665727] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764865.871182] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764866.075890] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764866.281000] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764866.487117] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764866.692530] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764866.898875] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421764867.104015] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764867.308955] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764867.514027] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764867.719960] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764867.926108] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764868.131323] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764868.336543] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764868.544576] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764868.749757] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764868.955210] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764869.161722] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764869.367196] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764869.573532] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764869.778448] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764869.983577] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764870.188772] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764870.394063] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764870.599352] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764870.804650] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764871.010432] 1566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764871.216394] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764871.422253] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421764871.628063] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764871.833334] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764872.037959] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764872.243114] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764872.448682] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764872.654047] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764872.859349] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764873.065007] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764873.270135] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764873.475499] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764873.680902] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764873.887364] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421764874.092457] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764874.298195] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764874.504257] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421764874.709431] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764874.914585] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764875.119182] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764875.329164] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.85 ms +[1421764875.540732] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.45 ms +[1421764875.781056] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.2 ms +[1421764876.019962] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.6 ms +[1421764876.278445] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=54.5 ms +[1421764876.502451] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421764876.728676] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421764876.954189] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421764877.236397] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.2 ms +[1421764877.524814] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.3 ms +[1421764877.753252] 1261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421764877.981252] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421764878.213346] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.8 ms +[1421764878.446070] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.4 ms +[1421764878.671354] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421764878.948494] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.2 ms +[1421764879.153475] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764879.358501] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764879.563822] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764879.771827] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.11 ms +[1421764879.985484] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.52 ms +[1421764880.196263] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.75 ms +[1421764880.415359] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421764880.639175] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421764880.860224] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421764881.085338] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421764881.367366] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.3 ms +[1421764881.654214] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.6 ms +[1421764881.930980] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.2 ms +[1421764882.152431] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421764882.376210] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421764882.598128] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421764882.820247] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421764883.101311] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.7 ms +[1421764883.376836] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.5 ms +[1421764883.668520] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=87.7 ms +[1421764883.892880] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421764884.098180] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764884.303230] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764884.510470] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.12 ms +[1421764884.727348] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421764884.960970] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.1 ms +[1421764885.172366] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764885.392692] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421764885.610399] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421764885.833893] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421764886.096387] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.0 ms +[1421764886.320988] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421764886.603204] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.2 ms +[1421764886.830400] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421764887.054641] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421764887.340505] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.0 ms +[1421764887.572318] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.3 ms +[1421764887.790557] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421764888.070552] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.6 ms +[1421764888.293661] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421764888.517314] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421764888.733391] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.2 ms +[1421764888.939185] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.92 ms +[1421764889.144474] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764889.353133] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.73 ms +[1421764889.583402] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.2 ms +[1421764889.797118] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.65 ms +[1421764890.016530] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421764890.236660] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421764890.451898] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421764890.712029] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=55.9 ms +[1421764890.937793] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421764891.165956] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421764891.392809] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421764891.671476] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.7 ms +[1421764891.876688] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421764892.159733] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.4 ms +[1421764892.392977] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.3 ms +[1421764892.598391] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764892.803165] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764893.007919] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764893.213108] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764893.418236] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764893.624371] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764893.830087] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764894.034868] 1410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764894.242758] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.15 ms +[1421764894.473445] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.7 ms +[1421764894.678176] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764894.882918] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764895.088987] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421764895.297317] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.67 ms +[1421764895.529202] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.8 ms +[1421764895.742513] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.08 ms +[1421764896.001113] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=54.4 ms +[1421764896.273041] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=67.8 ms +[1421764896.496093] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421764896.717762] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421764896.944277] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421764897.171772] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421764897.400056] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421764897.605519] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764897.811777] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764898.016323] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764898.221333] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764898.426582] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764898.632942] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764898.839765] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421764899.045575] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764899.250891] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764899.456101] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764899.661762] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764899.867170] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764900.072160] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764900.277348] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764900.482919] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764900.688558] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764900.894364] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764901.099451] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764901.320930] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421764901.548308] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421764901.835101] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.6 ms +[1421764902.059300] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421764902.285033] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421764902.568723] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.4 ms +[1421764902.790825] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421764902.996052] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764903.200996] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764903.405936] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764903.623652] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421764903.829377] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764904.035268] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764904.240816] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764904.445953] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764904.652161] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421764904.856979] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764905.061894] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764905.267063] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764905.472184] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764905.677685] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764905.883116] 814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764906.087978] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764906.292866] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764906.498544] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764906.703745] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764906.908508] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764907.113572] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764907.318949] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764907.524608] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764907.729896] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764907.936265] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764908.141451] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764908.346594] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764908.551869] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764908.757508] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764908.963175] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764909.169729] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764909.375107] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764909.581103] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764909.786337] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764909.991376] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764910.196410] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764910.402324] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764910.607740] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764910.813608] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764911.019049] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421764911.224081] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764911.429137] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764911.635821] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421764911.841684] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421764912.046351] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764912.251209] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764912.456315] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764912.661861] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764912.867203] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764913.072507] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764913.277482] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764913.482209] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764913.688600] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764913.894975] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764914.100164] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421764914.304759] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764914.509905] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764914.715703] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764914.921428] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764915.126467] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764915.331571] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764915.536311] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764915.741716] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764915.947289] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764916.152571] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764916.358663] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421764916.563942] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764916.768940] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764916.974211] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764917.180657] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764917.385488] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764917.591870] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764917.797159] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764918.002623] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764918.209140] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764918.414684] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764918.620732] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764918.826255] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764919.031726] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764919.236630] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764919.441612] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764919.647522] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764919.852841] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764920.057640] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764920.262636] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764920.469235] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764920.675501] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764920.880798] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764921.085649] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764921.290882] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764921.496798] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764921.702112] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764921.907653] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764922.112654] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764922.318061] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421764922.524651] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421764922.729939] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764922.934815] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764923.140072] 1072 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764923.345255] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764923.551257] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764923.756814] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764923.961837] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764924.166810] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764924.372104] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764924.577371] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764924.783566] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764924.989213] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764925.194663] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764925.400581] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764925.606682] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764925.812696] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764926.018371] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764926.223188] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764926.427911] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764926.632658] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764926.838607] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764927.043020] 296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764927.247973] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764927.453237] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764927.658190] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764927.864796] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421764928.069854] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764928.274754] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764928.481043] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764928.686015] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764928.892223] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764929.097293] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421764929.302330] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764929.507693] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764929.713041] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764929.918226] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764930.123047] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764930.329165] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764930.535553] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421764930.741860] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764930.947244] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764931.152801] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764931.357722] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764931.562987] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764931.769151] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764931.974296] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764932.179114] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764932.385074] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764932.590287] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764932.795169] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764933.000067] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764933.204966] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764933.410219] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764933.615396] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764933.820625] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764934.025659] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764934.231915] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764934.437760] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764934.643648] 1913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764934.849028] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764935.054921] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764935.261138] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764935.467242] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764935.673551] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764935.880418] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764936.085281] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764936.291626] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764936.497134] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764936.702737] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764936.908073] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764937.112587] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764937.317918] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421764937.522829] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764937.727863] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764937.933677] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764938.139083] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764938.344194] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764938.549458] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764938.755170] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764938.960980] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421764939.166362] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764939.371549] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764939.577131] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764939.783455] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764939.989766] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764940.195256] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764940.400631] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764940.606589] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421764940.812783] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421764941.017793] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764941.223816] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764941.429014] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764941.634027] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764941.839201] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764942.044802] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764942.251013] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764942.456762] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764942.662154] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764942.867480] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764943.073848] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764943.279175] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764943.484393] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764943.690448] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764943.895979] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764944.101003] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764944.306002] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764944.511155] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764944.717727] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764944.923726] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764945.128680] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764945.334025] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764945.540495] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764945.745507] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764945.950730] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764946.157249] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421764946.363651] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421764946.568595] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764946.773508] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764946.978463] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764947.184596] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764947.390016] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764947.595161] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764947.800711] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764948.005889] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764948.211986] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764948.417668] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764948.623459] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764948.829130] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764949.034337] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764949.240895] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764949.446133] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764949.652400] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764949.857442] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764950.062933] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764950.267977] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764950.472990] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764950.690514] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421764950.901850] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.20 ms +[1421764951.117219] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.7 ms +[1421764951.331756] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421764951.552250] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421764951.772475] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421764951.998229] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421764952.279443] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.1 ms +[1421764952.505204] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421764952.731980] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421764952.959025] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421764953.188937] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421764953.411562] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421764953.636231] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421764953.841441] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764954.046191] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764954.251357] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764954.456721] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764954.665755] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.99 ms +[1421764954.900865] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.0 ms +[1421764955.117318] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421764955.336967] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421764955.557930] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421764955.779563] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421764956.003815] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421764956.230793] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421764956.454500] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421764956.680834] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421764956.905906] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421764957.129821] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421764957.356651] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421764957.579922] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421764957.808092] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421764958.038715] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.8 ms +[1421764958.317795] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.3 ms +[1421764958.593195] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.2 ms +[1421764958.798764] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764959.003528] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764959.210150] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.90 ms +[1421764959.427076] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421764959.638262] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.83 ms +[1421764959.852030] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.61 ms +[1421764960.068132] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421764960.336136] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=64.2 ms +[1421764960.564751] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421764960.790160] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421764961.017776] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421764961.244210] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421764961.463878] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421764961.684316] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421764961.889708] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764962.094837] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764962.299970] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764962.506270] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764962.712242] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764962.917769] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764963.122683] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764963.327551] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764963.532650] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764963.737446] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764963.942676] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764964.147776] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764964.353142] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764964.558155] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764964.763776] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764964.970255] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764965.175718] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764965.381085] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764965.591181] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.43 ms +[1421764965.800299] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.73 ms +[1421764966.012230] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.05 ms +[1421764966.227668] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421764966.447121] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421764966.667528] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421764966.895328] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421764967.100040] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764967.306040] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764967.511360] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764967.718932] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.52 ms +[1421764967.927205] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.98 ms +[1421764968.139267] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.94 ms +[1421764968.353947] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421764968.559899] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764968.764804] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764968.970175] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421764969.175330] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764969.381599] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421764969.586961] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764969.792034] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764969.997208] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764970.202739] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764970.409272] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421764970.614654] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764970.820468] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421764971.025099] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764971.230595] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.97 ms +[1421764971.435945] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764971.642463] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421764971.848005] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764972.052692] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764972.258325] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421764972.463659] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421764972.668853] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764972.874004] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764973.078693] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764973.284203] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421764973.489889] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764973.696312] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764973.915935] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421764974.120871] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764974.325969] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764974.531538] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764974.736787] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764974.943621] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421764975.150163] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421764975.355351] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764975.560314] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421764975.765688] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764975.971748] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764976.176799] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764976.382849] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764976.588227] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764976.794866] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764977.000443] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764977.205774] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764977.411160] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764977.616997] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764977.821834] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764978.027706] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764978.232947] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764978.437957] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764978.643203] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764978.848722] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764979.053758] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764979.258896] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764979.465095] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764979.670826] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764979.876051] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764980.081095] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764980.286498] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764980.491862] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764980.697750] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764980.903039] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764981.107999] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764981.312937] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764981.517865] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764981.723498] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764981.929887] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764982.135843] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764982.340836] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764982.546587] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421764982.751974] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764982.958315] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764983.163336] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764983.368764] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764983.574381] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764983.781051] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764983.986635] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764984.192291] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764984.398798] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764984.604252] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764984.809348] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764985.013984] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764985.219084] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764985.424063] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764985.629435] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764985.835149] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764986.040174] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764986.245027] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764986.450765] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764986.656932] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764986.861836] 130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764987.066925] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764987.271838] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764987.477768] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764987.682499] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764987.887960] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764988.092793] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764988.298075] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764988.503488] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764988.708771] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764988.915318] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764989.121832] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421764989.328161] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764989.534753] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421764989.740066] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764989.944577] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764990.149194] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764990.354626] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764990.561288] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764990.766686] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764990.972981] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764991.178999] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764991.385586] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421764991.591125] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764991.796711] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764992.001712] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764992.207708] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764992.412585] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764992.617457] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764992.822608] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764993.027510] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764993.232896] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764993.438487] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421764993.643758] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764993.848814] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764994.054850] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764994.259759] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764994.465080] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764994.669952] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764994.874889] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764995.079733] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764995.284805] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764995.489951] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764995.695083] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764995.901221] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421764996.107504] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764996.313880] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764996.520070] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764996.725083] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764996.931276] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764997.136105] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764997.341451] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764997.548216] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764997.753776] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764997.958778] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764998.163762] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764998.368810] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764998.574794] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421764998.780471] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421764998.985790] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764999.191973] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764999.396995] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764999.601890] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764999.807242] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765000.011524] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765000.216281] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765000.421275] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765000.627246] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765000.832495] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765001.037210] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765001.243655] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.72 ms +[1421765001.449131] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765001.654650] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765001.860019] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765002.064830] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765002.270042] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765002.475472] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765002.680615] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765002.885797] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765003.091112] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765003.295991] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765003.500909] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765003.706906] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765003.911736] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765004.118054] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765004.323497] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765004.529899] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765004.735733] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765004.941850] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765005.146783] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765005.352222] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765005.557963] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765005.763539] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765005.968988] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765006.174335] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765006.379685] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421765006.584918] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765006.789965] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765006.995100] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765007.200210] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765007.405277] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765007.610297] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765007.816354] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765008.021664] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765008.227194] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765008.433209] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765008.639176] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765008.844273] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765009.048777] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765009.254023] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765009.460608] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765009.665703] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.00 ms +[1421765009.872520] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765010.077625] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765010.284065] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765010.489591] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765010.695201] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765010.900390] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765011.105932] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765011.311584] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765011.517127] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421765011.722067] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765011.927077] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765012.131956] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765012.337086] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765012.543059] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765012.747856] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765012.953262] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765013.158577] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765013.363805] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765013.568733] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765013.773603] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765013.979084] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765014.184249] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765014.389101] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765014.594162] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765014.799452] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765015.005380] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421765015.212341] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.16 ms +[1421765015.423584] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.48 ms +[1421765015.638505] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421765015.851393] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.14 ms +[1421765016.112385] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=57.1 ms +[1421765016.335397] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421765016.560041] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421765016.786674] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421765017.018522] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.8 ms +[1421765017.239707] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421765017.462806] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421765017.688978] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421765017.916457] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421765018.121134] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765018.325993] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765018.530768] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765018.741077] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.71 ms +[1421765018.953248] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.25 ms +[1421765019.168253] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421765019.408631] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.4 ms +[1421765019.629240] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421765019.834168] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765020.085671] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.1 ms +[1421765020.308083] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421765020.532147] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421765020.818109] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.2 ms +[1421765021.044642] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421765021.251056] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765021.473482] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421765021.757875] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.0 ms +[1421765022.043150] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.3 ms +[1421765022.272775] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421765022.498048] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421765022.780454] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.6 ms +[1421765022.985816] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765023.191166] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765023.396995] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765023.603522] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765023.810526] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.95 ms +[1421765024.020477] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.45 ms +[1421765024.234713] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421765024.451663] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421765024.707401] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.9 ms +[1421765024.927292] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421765025.148351] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421765025.433003] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.0 ms +[1421765025.656801] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421765025.863280] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765026.069315] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765026.274110] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765026.479123] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765026.685121] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765026.889848] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765027.095407] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421765027.300310] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765027.506837] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765027.712464] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765027.918174] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765028.123083] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765028.329531] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421765028.535397] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765028.741830] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765028.948071] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421765029.153115] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765029.358017] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765029.563466] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765029.768683] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765029.975090] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421765030.180630] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765030.385940] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765030.590901] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765030.796261] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765031.002398] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765031.208882] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421765031.417002] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.16 ms +[1421765031.627894] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.69 ms +[1421765031.839201] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.28 ms +[1421765032.054063] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421765032.317195] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.2 ms +[1421765032.596695] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.3 ms +[1421765032.824056] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421765033.049642] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421765033.255040] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765033.461817] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.74 ms +[1421765033.666973] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765033.873870] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.22 ms +[1421765034.085072] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.76 ms +[1421765034.296410] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.95 ms +[1421765034.512976] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421765034.736922] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421765035.015861] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.3 ms +[1421765035.237925] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421765035.466922] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421765035.697010] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421765035.921475] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421765036.146495] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421765036.351296] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421765036.572238] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421765036.804270] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.7 ms +[1421765037.035460] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.1 ms +[1421765037.259677] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421765037.483674] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421765037.709625] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421765037.937191] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421765038.142603] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765038.349533] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.16 ms +[1421765038.557150] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.38 ms +[1421765038.767631] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.15 ms +[1421765038.973697] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765039.188370] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421765039.405634] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421765039.625978] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421765039.900061] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.1 ms +[1421765040.124121] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421765040.349103] 814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421765040.579582] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.5 ms +[1421765040.799705] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421765041.024180] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421765041.250695] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421765041.477283] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421765041.704832] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421765041.989191] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.1 ms +[1421765042.276762] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.4 ms +[1421765042.503097] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421765042.729863] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421765042.935082] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765043.139920] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765043.346214] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421765043.570870] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421765043.784424] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.89 ms +[1421765043.989853] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765044.195476] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765044.400512] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765044.605677] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765044.811439] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765045.017404] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765045.222473] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765045.428609] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765045.633772] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765045.839058] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765046.044099] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765046.249016] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765046.454213] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765046.659410] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765046.865244] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765047.070013] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765047.275143] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765047.480397] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765047.685676] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765047.892341] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765048.097422] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765048.302314] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765048.508531] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421765048.714000] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765048.918939] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765049.123921] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765049.330303] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421765049.535112] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765049.740342] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765049.945867] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765050.150940] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765050.356534] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765050.563525] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421765050.769038] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765050.975394] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765051.181175] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765051.386156] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765051.592331] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421765051.797612] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765052.003834] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765052.209091] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765052.414442] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765052.620870] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765052.826177] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765053.030789] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765053.236504] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421765053.441683] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765053.647947] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765053.853252] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765054.057832] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765054.262733] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765054.468568] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765054.674365] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765054.880491] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765055.086004] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765055.291180] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765055.496723] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765055.701884] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765055.907147] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765056.112223] 904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765056.317345] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765056.522506] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765056.727688] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765056.932865] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765057.137963] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765057.343281] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765057.548415] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421765057.754804] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765057.960331] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765058.165822] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765058.371215] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765058.576814] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765058.782112] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765058.988104] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765059.194374] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421765059.399820] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421765059.606538] 1482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765059.811490] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765060.016932] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765060.221843] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765060.426765] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765060.631807] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765060.838452] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765061.043256] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765061.248478] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765061.453564] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765061.659024] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421765061.864153] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765062.070263] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421765062.275188] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765062.481137] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765062.687159] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765062.892669] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765063.097780] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765063.303105] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765063.508888] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765063.714640] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765063.921435] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421765064.127021] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765064.331846] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765064.536987] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765064.742103] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765064.948659] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765065.155130] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765065.361209] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765065.566579] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765065.771704] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765065.977679] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765066.182653] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765066.389134] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421765066.595052] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765066.800913] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765067.007331] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421765067.212404] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765067.417758] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765067.622907] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765067.828240] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765068.033480] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765068.238829] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765068.444502] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765068.649923] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765068.856284] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421765069.061041] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765069.266256] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765069.471848] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765069.677847] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421765069.883224] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765070.088101] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765070.293876] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765070.498910] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765070.703685] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765070.908404] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765071.113757] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765071.320168] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421765071.526649] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765071.732129] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765071.937903] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765072.143446] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765072.348916] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765072.554120] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765072.759228] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765072.964464] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765073.170488] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765073.375505] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765073.581488] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765073.786219] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765073.990950] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765074.195719] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765074.400874] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765074.606461] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765074.812937] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765075.017754] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765075.222562] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765075.428703] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765075.634827] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421765075.840195] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765076.044977] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765076.250115] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765076.455060] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765076.660209] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765076.866398] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765077.070816] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765077.277071] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421765077.482791] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765077.688440] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765077.893901] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765078.098947] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765078.303883] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765078.509146] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765078.714458] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765078.920764] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421765079.126020] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765079.332251] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421765079.537768] 1063 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765079.742745] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765079.947562] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765080.152606] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765080.357981] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765080.563177] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765080.768541] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765080.975115] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421765081.179997] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765081.385209] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765081.590933] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765081.796233] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765082.001283] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765082.206282] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765082.412483] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421765082.617821] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765082.822915] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765083.028496] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765083.233520] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765083.438912] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765083.645590] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765083.851788] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765084.056441] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765084.261678] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765084.466761] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765084.672012] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765084.877207] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765085.082281] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765085.288573] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765085.494358] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765085.699692] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421765085.905155] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765086.110425] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765086.315580] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765086.520395] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765086.725635] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765086.932090] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765087.136952] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765087.342581] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765087.547960] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765087.753374] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765087.958777] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765088.163868] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765088.368930] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765088.575011] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765088.780213] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765088.986295] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765089.192481] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765089.398788] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765089.604809] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765089.811331] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765090.020145] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765090.225200] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421765090.430368] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765090.636152] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765090.841931] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765091.047431] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765091.254175] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.99 ms +[1421765091.459466] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421765091.666055] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421765091.872084] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421765092.077019] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765092.281793] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.02 ms +[1421765092.488216] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765092.694061] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765092.899507] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765093.103854] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765093.308890] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765093.514235] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765093.719330] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765093.925001] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765094.131547] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421765094.336712] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765094.542079] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765094.747827] 1913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765094.954035] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765095.159978] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765095.365177] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765095.571610] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421765095.777362] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765095.984734] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421765096.190574] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765096.396670] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421765096.602637] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765096.808901] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765097.014125] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765097.219334] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765097.424664] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765097.629822] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765097.836131] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765098.040843] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765098.246832] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765098.452167] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765098.657705] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765098.864394] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421765099.070370] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765099.275636] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765099.481284] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765099.687480] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765099.893093] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765100.098499] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765100.303448] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765100.509642] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765100.715272] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765100.920361] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765101.125322] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765101.329998] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765101.536103] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765101.742026] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765101.948578] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765102.154467] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765102.360783] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765102.567454] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765102.774015] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765102.979016] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765103.184495] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421765103.390434] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765103.595455] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765103.802175] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765104.007933] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421765104.213163] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765104.418386] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765104.623617] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765104.829134] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765105.037429] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765105.243326] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765105.448621] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765105.653629] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765105.858686] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765106.063293] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.03 ms +[1421765106.267797] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.03 ms +[1421765106.473676] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765106.678934] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765106.884573] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765107.090528] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765107.295453] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765107.501559] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765107.707623] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765107.913291] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765108.118369] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765108.323239] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765108.528940] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765108.735347] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765108.943735] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.16 ms +[1421765109.155097] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.99 ms +[1421765109.369835] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421765109.586505] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421765109.848364] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=58.1 ms +[1421765110.074499] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421765110.301842] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421765110.528904] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421765110.805984] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.0 ms +[1421765111.090923] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.4 ms +[1421765111.313777] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421765111.543358] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421765111.763485] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421765111.987714] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421765112.192717] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765112.397467] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765112.602006] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765112.811314] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.46 ms +[1421765113.023395] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.27 ms +[1421765113.236962] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.56 ms +[1421765113.459248] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421765113.678869] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421765113.960149] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.4 ms +[1421765114.244876] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.8 ms +[1421765114.470862] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421765114.697018] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421765114.980649] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.7 ms +[1421765115.185692] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765115.414506] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421765115.638830] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421765115.862638] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421765116.084434] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421765116.308371] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421765116.594090] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.7 ms +[1421765116.800648] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421765117.005864] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765117.211515] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765117.425694] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421765117.656258] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.6 ms +[1421765117.869690] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.47 ms +[1421765118.074132] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765118.278810] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765118.483554] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765118.688171] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765118.893235] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765119.098391] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765119.303611] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765119.510035] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765119.716645] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421765119.922153] 1072 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765120.126974] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765120.332156] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765120.537533] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765120.743683] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765120.948284] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765121.153145] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765121.358229] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765121.563484] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765121.768874] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765121.974043] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765122.180623] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421765122.386956] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421765122.592407] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765122.798080] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765123.003985] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765123.208933] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765123.415143] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765123.621676] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765123.827113] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765124.032099] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765124.237161] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421765124.441739] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765124.647130] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765124.852499] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765125.057451] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765125.262332] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765125.467582] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765125.673040] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765125.878760] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421765126.084416] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765126.289524] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765126.496045] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421765126.702154] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765126.907345] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765127.112600] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421765127.317999] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421765127.523386] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765127.730169] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.67 ms +[1421765127.935178] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765128.141141] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765128.347069] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765128.551859] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421765128.756919] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765128.961922] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765129.166734] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765129.371407] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765129.576504] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765129.781103] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765129.986483] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765130.192110] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765130.397654] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765130.604041] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765130.809604] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765131.014729] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765131.220518] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765131.425537] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765131.631453] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765131.836647] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765132.041784] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765132.247503] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765132.453410] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421765132.659447] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765132.865527] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421765133.071048] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765133.275940] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765133.481088] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765133.686589] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765133.893209] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421765134.098591] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765134.303821] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765134.509011] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765134.715139] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765134.920493] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765135.125539] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765135.331788] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765135.537166] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765135.743307] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765135.948803] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765136.155570] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421765136.360230] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765136.566183] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765136.771880] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765136.977634] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765137.182589] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765137.388989] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421765137.594591] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765137.800484] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421765138.005787] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765138.211693] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765138.417712] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421765138.624273] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765138.830561] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765139.034838] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765139.239561] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765139.444776] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765139.650407] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765139.856422] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765140.061795] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.94 ms +[1421765140.266841] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765140.472110] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765140.677517] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765140.883055] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765141.087933] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765141.292539] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765141.497133] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765141.703046] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765141.908224] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765142.113256] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765142.318023] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765142.522796] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765142.727691] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765142.932450] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765143.138592] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765143.344578] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765143.549893] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765143.755487] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765143.961892] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765144.166935] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765144.372904] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765144.577916] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765144.783016] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765144.988089] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765145.192784] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765145.405237] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.53 ms +[1421765145.611812] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765145.818191] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765146.023145] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765146.228939] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765146.433499] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765146.638346] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765146.843368] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765147.048906] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765147.255044] 1529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421765147.460038] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765147.665226] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765147.870623] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765148.076053] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765148.281494] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765148.487918] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765148.693978] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765148.898614] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765149.104064] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765149.309454] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765149.515067] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765149.720151] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765149.925323] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765150.130819] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765150.336519] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765150.542069] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765150.748525] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765150.954016] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765151.159379] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765151.364454] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765151.569301] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765151.774667] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765151.980840] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765152.185949] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765152.391406] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765152.596859] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765152.802631] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765153.007303] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765153.212150] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765153.417255] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765153.622422] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765153.827065] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765154.031996] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765154.236892] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765154.442959] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765154.649616] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421765154.855326] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421765155.059932] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765155.265376] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421765155.470785] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765155.676041] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765155.882243] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765156.087189] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765156.293129] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765156.498091] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765156.704561] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421765156.910035] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765157.115287] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765157.320816] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765157.525989] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765157.731212] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765157.937042] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765158.142636] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765158.348745] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765158.553753] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765158.759283] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765158.965504] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765159.171018] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765159.377125] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765159.582614] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765159.788032] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765159.993240] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765160.198735] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765160.404437] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421765160.609681] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765160.815388] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421765161.021969] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765161.228025] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765161.434172] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765161.639690] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765161.846271] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765162.051648] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765162.257299] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765162.463476] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765162.669988] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765162.875862] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765163.080887] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765163.286271] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765163.491838] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765163.697225] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765163.902591] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765164.107258] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765164.311904] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765164.516784] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765164.721877] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765164.928123] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765165.133255] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765165.338491] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765165.543635] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765165.748742] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765165.954026] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765166.159048] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765166.365368] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765166.570580] 847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765166.776620] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765166.981903] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765167.187904] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421765167.393122] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765167.598406] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765167.804954] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765168.009936] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765168.214836] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765168.420498] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765168.626200] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765168.831650] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765169.036721] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765169.243046] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421765169.448699] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765169.653973] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765169.860137] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765170.064990] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765170.269896] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765170.475040] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421765170.682254] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.94 ms +[1421765170.889969] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.82 ms +[1421765171.102260] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.74 ms +[1421765171.318393] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421765171.533187] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421765171.801258] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=64.4 ms +[1421765172.027772] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421765172.303979] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.9 ms +[1421765172.526127] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421765172.815142] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.2 ms +[1421765173.034225] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421765173.257591] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421765173.486159] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421765173.713475] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421765173.920105] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765174.125704] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765174.330346] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765174.537824] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.71 ms +[1421765174.748223] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.17 ms +[1421765174.961682] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.31 ms +[1421765175.175598] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.99 ms +[1421765175.397047] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421765175.620233] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421765175.842980] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421765176.061562] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421765176.286171] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421765176.569614] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.4 ms +[1421765176.797580] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421765177.025590] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421765177.250536] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421765177.536710] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.2 ms +[1421765177.815035] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.5 ms +[1421765178.095344] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.9 ms +[1421765178.320726] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421765178.547950] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421765178.753152] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765178.959366] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765179.165514] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765179.370629] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765179.580427] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.69 ms +[1421765179.793596] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.10 ms +[1421765180.009472] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421765180.226371] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421765180.446168] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421765180.726498] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.2 ms +[1421765180.952042] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421765181.236083] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.2 ms +[1421765181.455715] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421765181.692246] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.5 ms +[1421765181.924364] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.8 ms +[1421765182.147126] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421765182.431219] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.0 ms +[1421765182.661783] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.2 ms +[1421765182.932641] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=66.6 ms +[1421765183.159959] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421765183.383718] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421765183.588783] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765183.793806] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765183.998957] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765184.205455] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421765184.413026] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.59 ms +[1421765184.645972] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.5 ms +[1421765184.893560] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.6 ms +[1421765185.108257] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421765185.328386] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421765185.553397] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421765185.780655] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421765186.005535] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421765186.229746] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421765186.510980] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.1 ms +[1421765186.799408] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.3 ms +[1421765187.024423] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421765187.253870] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.5 ms +[1421765187.532021] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.0 ms +[1421765187.754278] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421765188.034443] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.0 ms +[1421765188.240765] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765188.445874] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765188.651036] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421765188.856108] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765189.060875] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765189.266254] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765189.471437] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765189.676603] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765189.882615] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765190.087496] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765190.293565] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765190.499565] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765190.705039] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765190.911065] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421765191.116710] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765191.322292] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765191.527404] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765191.732974] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765191.938122] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765192.145428] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.57 ms +[1421765192.355611] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.40 ms +[1421765192.595318] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.4 ms +[1421765192.811245] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421765193.031181] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421765193.253923] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421765193.480396] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421765193.697878] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421765193.978230] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.3 ms +[1421765194.205622] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421765194.436288] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.6 ms +[1421765194.642604] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765194.923674] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.7 ms +[1421765195.150238] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421765195.375688] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421765195.665886] 1955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=86.1 ms +[1421765195.892182] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421765196.180819] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.0 ms +[1421765196.407756] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421765196.614161] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765196.821433] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.13 ms +[1421765197.035296] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.1 ms +[1421765197.245135] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.99 ms +[1421765197.462274] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421765197.681909] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.7 ms +[1421765197.938653] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=52.4 ms +[1421765198.204023] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=61.2 ms +[1421765198.429277] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421765198.708655] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.4 ms +[1421765198.933408] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421765199.154734] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421765199.429661] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.0 ms +[1421765199.655857] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421765199.886369] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.3 ms +[1421765200.174712] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.5 ms +[1421765200.399374] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421765200.617343] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765200.844980] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421765201.071090] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421765201.276027] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765201.481581] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765201.688742] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.27 ms +[1421765201.909111] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421765202.122431] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.62 ms +[1421765202.334557] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.20 ms +[1421765202.554157] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421765202.817048] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=58.9 ms +[1421765203.022030] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765203.228178] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765203.433404] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765203.639819] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765203.845255] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765204.049902] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765204.254955] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765204.460390] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765204.665390] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765204.871661] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765205.076940] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765205.282953] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765205.488076] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765205.693242] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765205.899064] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421765206.103893] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765206.313411] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.72 ms +[1421765206.518959] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765206.724703] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765206.930616] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765207.135720] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765207.340693] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765207.545837] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765207.751358] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765207.957111] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765208.162890] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765208.368031] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765208.573365] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765208.779181] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765208.984170] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421765209.189530] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765209.394879] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765209.600166] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765209.805658] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765210.011561] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765210.216624] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765210.422152] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765210.627334] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421765210.832538] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765211.037442] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765211.242322] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765211.448693] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421765211.654198] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765211.859720] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765212.064571] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765212.271242] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421765212.476798] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765222.885723] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765223.090340] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765223.295344] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765223.501511] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765223.707403] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421765223.912389] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765224.117296] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765224.322196] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765224.527440] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765224.732342] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765224.938036] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765225.144593] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765225.366554] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421765225.578308] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.81 ms +[1421765225.794311] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.9 ms +[1421765226.013802] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421765226.287331] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.5 ms +[1421765226.511856] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421765226.737019] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421765227.023526] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.2 ms +[1421765227.307829] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.3 ms +[1421765227.534290] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421765227.798692] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.4 ms +[1421765228.004104] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765228.210062] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765228.416468] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421765228.626149] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.71 ms +[1421765228.836834] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.55 ms +[1421765229.048463] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.35 ms +[1421765229.302808] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=50.4 ms +[1421765229.521579] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421765229.803409] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.5 ms +[1421765230.026049] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421765230.308192] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.4 ms +[1421765230.592447] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.2 ms +[1421765230.817944] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421765231.043618] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421765231.329880] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.9 ms +[1421765231.558837] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.2 ms +[1421765231.783163] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421765232.010108] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421765232.296141] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.4 ms +[1421765232.582645] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.4 ms +[1421765232.788092] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765232.994610] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421765233.203490] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.61 ms +[1421765233.412413] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.32 ms +[1421765233.647743] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.6 ms +[1421765233.863465] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421765234.068372] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765234.289968] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421765234.514825] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421765234.736709] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421765234.963474] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421765235.195216] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.3 ms +[1421765235.416904] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.7 ms +[1421765235.643799] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421765235.870985] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421765236.095533] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421765236.305293] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.66 ms +[1421765236.583210] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.0 ms +[1421765236.805158] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421765237.085893] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.3 ms +[1421765237.352973] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=63.4 ms +[1421765237.558824] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765237.764526] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765237.971124] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.88 ms +[1421765238.231080] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.3 ms +[1421765238.445221] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.2 ms +[1421765238.684045] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.7 ms +[1421765238.937976] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=49.6 ms +[1421765239.156463] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421765239.382566] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421765239.607325] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421765239.895836] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.5 ms +[1421765240.124390] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421765240.354028] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421765240.581866] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421765240.871025] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.1 ms +[1421765241.095280] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421765241.323464] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421765241.549296] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421765241.830999] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.7 ms +[1421765242.035489] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421765242.241312] 1612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765242.447382] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765242.654756] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.38 ms +[1421765242.866554] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.97 ms +[1421765243.109919] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.9 ms +[1421765243.323075] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.11 ms +[1421765243.584319] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.9 ms +[1421765243.808233] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421765244.029650] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421765244.291320] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=57.8 ms +[1421765244.528651] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.1 ms +[1421765244.734901] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765244.989086] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=50.0 ms +[1421765245.255333] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.2 ms +[1421765245.478529] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421765245.702628] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421765245.931565] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421765246.214163] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.3 ms +[1421765246.440014] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421765246.674189] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.8 ms +[1421765246.879440] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765247.084429] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765247.290247] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765247.496926] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.94 ms +[1421765247.707385] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.76 ms +[1421765247.919304] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.00 ms +[1421765248.134316] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421765248.353174] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421765248.605371] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.3 ms +[1421765248.827839] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421765249.077389] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.0 ms +[1421765249.307295] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421765249.533194] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421765249.759772] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421765249.982679] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421765250.208231] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421765250.433871] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421765250.658939] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421765250.885321] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421765251.113904] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421765251.399688] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.9 ms +[1421765251.622206] 1392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421765251.827578] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765252.037995] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.92 ms +[1421765252.243552] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765252.451686] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.17 ms +[1421765252.669674] 1417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421765252.885881] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.0 ms +[1421765253.106968] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421765253.326273] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421765253.547851] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421765253.765575] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421765253.994488] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421765254.274575] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.2 ms +[1421765254.500429] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421765254.714963] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421765254.941771] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421765255.164508] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421765255.389680] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421765255.677140] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.2 ms +[1421765255.898875] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421765256.120854] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421765256.338445] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421765256.543694] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765256.749154] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765256.954516] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765257.162408] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.72 ms +[1421765257.373836] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.26 ms +[1421765257.613377] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.6 ms +[1421765257.825242] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765258.089254] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.3 ms +[1421765258.367172] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.2 ms +[1421765258.595098] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421765258.879778] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.6 ms +[1421765259.104366] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421765259.381120] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.7 ms +[1421765259.587047] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765259.809579] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421765260.097394] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.7 ms +[1421765260.317924] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421765260.542636] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421765260.828016] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.4 ms +[1421765261.052787] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421765261.259989] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.66 ms +[1421765261.465852] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765261.670579] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765261.878240] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.82 ms +[1421765262.089074] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.09 ms +[1421765262.326386] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.5 ms +[1421765262.544208] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.1 ms +[1421765262.760295] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421765262.978044] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421765263.205753] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421765263.435202] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421765263.661330] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421765263.890664] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.3 ms +[1421765264.116736] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421765264.321845] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765264.528135] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765264.733847] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765264.939610] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765265.145198] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765265.350520] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765265.556161] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765265.762837] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765265.968285] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421765266.173285] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765266.378867] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765266.589209] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.02 ms +[1421765266.813634] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421765267.047299] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.1 ms +[1421765267.296521] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.2 ms +[1421765267.514820] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421765267.727613] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.74 ms +[1421765267.933596] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765268.138793] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765268.345130] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421765268.554142] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.16 ms +[1421765268.786060] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.1 ms +[1421765268.998614] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.52 ms +[1421765269.245539] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.0 ms +[1421765269.468864] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421765269.694131] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421765269.978457] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.3 ms +[1421765270.206430] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421765270.490572] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.1 ms +[1421765270.717367] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421765270.938098] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421765271.162087] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421765271.414257] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.6 ms +[1421765271.640711] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421765271.870888] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421765272.159421] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.7 ms +[1421765272.389139] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.5 ms +[1421765272.594427] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765272.800717] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765273.007535] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.91 ms +[1421765273.225875] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421765273.435776] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.99 ms +[1421765273.651130] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.7 ms +[1421765273.869866] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421765274.092588] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421765274.369139] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.6 ms +[1421765274.651548] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.4 ms +[1421765274.935772] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.2 ms +[1421765275.163654] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421765275.445802] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.3 ms +[1421765275.671375] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421765275.897086] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421765276.180648] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.6 ms +[1421765276.406246] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421765276.689549] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.3 ms +[1421765276.978870] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.3 ms +[1421765277.185892] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.87 ms +[1421765277.390781] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765277.596149] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765277.811253] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421765278.035478] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421765278.248534] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.14 ms +[1421765278.464640] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.9 ms +[1421765278.683920] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421765278.952227] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=64.2 ms +[1421765279.174504] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421765279.459467] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.1 ms +[1421765279.679480] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421765279.966931] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.2 ms +[1421765280.172476] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765280.378562] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765280.584095] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765280.789562] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765280.995944] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765281.201815] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765281.407895] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765281.613353] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765281.840630] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421765282.115131] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.3 ms +[1421765282.346244] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.4 ms +[1421765282.570431] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421765282.790663] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421765283.015897] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421765283.298672] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.7 ms +[1421765283.503754] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765283.709566] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421765283.915173] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765284.149266] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.3 ms +[1421765284.414550] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=61.6 ms +[1421765284.625996] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.44 ms +[1421765284.841005] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421765285.103962] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.6 ms +[1421765285.325024] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421765285.548722] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421765285.773534] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421765286.000751] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421765286.288311] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.5 ms +[1421765286.501105] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.92 ms +[1421765286.720123] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421765287.008039] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.1 ms +[1421765287.233877] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421765287.573624] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=135 ms +[1421765287.801435] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421765288.086596] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.8 ms +[1421765288.292352] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421765288.497222] 1175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765288.704352] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.56 ms +[1421765288.925543] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421765289.139198] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.2 ms +[1421765289.355489] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421765289.571911] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421765289.837963] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.3 ms +[1421765290.110319] 1888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=68.7 ms +[1421765290.393419] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.3 ms +[1421765290.617177] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421765290.832138] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421765291.068252] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.2 ms +[1421765291.274977] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421765291.500495] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421765291.708627] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.15 ms +[1421765291.915150] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765292.120556] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765292.329237] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.63 ms +[1421765292.538554] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.60 ms +[1421765292.750989] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.88 ms +[1421765292.966531] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.9 ms +[1421765293.226800] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.2 ms +[1421765293.463123] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.4 ms +[1421765293.668362] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765293.873633] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765294.078947] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421765294.287520] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.78 ms +[1421765294.499530] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.89 ms +[1421765294.712334] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.83 ms +[1421765294.980883] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=64.7 ms +[1421765295.203548] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421765295.425788] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421765295.632173] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765295.837140] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765296.042236] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765296.248892] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765296.454137] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765296.659133] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765296.864838] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765297.149612] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.4 ms +[1421765297.354456] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765297.559540] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765297.764388] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765297.970540] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765298.177144] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421765298.398559] 1880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421765298.611690] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.00 ms +[1421765298.829467] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421765299.046431] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421765299.262394] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.2 ms +[1421765299.490027] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421765299.716142] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421765299.935876] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421765300.160374] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421765300.389165] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421765300.594765] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765300.800199] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765301.005576] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421765301.214600] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.07 ms +[1421765301.426641] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.26 ms +[1421765301.643454] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421765301.861443] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421765302.080301] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421765302.303250] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421765302.531968] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421765302.756552] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421765303.041249] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.8 ms +[1421765303.319852] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.8 ms +[1421765303.531041] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.18 ms +[1421765303.737175] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421765303.942102] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765304.147680] 904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421765304.352878] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765304.558375] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421765304.763531] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765304.969600] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765305.174105] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765305.380306] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765305.586050] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765305.791059] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765305.997471] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765306.202439] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765306.407421] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765306.612522] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765306.817785] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765307.022648] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765307.227246] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765307.433571] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421765307.638825] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765307.844491] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765308.050489] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421765308.255232] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765308.460209] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765308.665517] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765308.870538] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765309.075120] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765309.280511] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765309.485999] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765309.690962] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765309.895889] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765310.100324] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765310.305580] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765310.511038] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765310.717323] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765310.922753] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765311.127909] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765311.334106] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765311.539750] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765311.745124] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765311.950293] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765312.155392] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765312.360251] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765312.565388] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421765312.770337] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765312.975397] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765313.181683] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421765313.387907] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765313.593200] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765313.798153] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765314.003231] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765314.209342] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765314.415427] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765314.621286] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765314.827330] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765315.032397] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765315.237487] 1156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765315.442167] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765315.647085] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765315.853733] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765316.058612] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765316.263857] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765316.469405] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765316.674721] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765316.879531] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765317.085015] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765317.290351] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765317.495615] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765317.700328] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765317.905624] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765318.117653] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.79 ms +[1421765318.324343] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421765318.529599] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765318.734453] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765318.939266] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765319.145338] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421765319.350409] 814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765319.563541] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.35 ms +[1421765319.768827] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765319.974342] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765320.180959] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765320.386261] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765320.591100] 1451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765320.795804] 89 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765321.001761] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765321.207035] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765321.412180] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765321.617561] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765321.823081] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765322.027979] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765322.233259] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765322.438931] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765322.644981] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765322.851034] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765323.056443] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765323.261402] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765323.466766] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765323.672090] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765323.878287] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765324.083312] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765324.288041] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765324.493310] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765324.698510] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765324.903681] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765325.108154] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765325.312936] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765325.518941] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765325.723466] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765325.929034] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765326.135467] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765326.342055] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765326.547704] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765326.753165] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765326.958741] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765327.164367] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765327.369918] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765327.575672] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765327.782108] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765327.987869] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765328.193458] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765328.399588] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765328.604750] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765328.810058] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765329.015796] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765329.220666] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765329.427142] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421765329.633032] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765329.838949] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765330.044880] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765330.249905] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765330.456664] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765330.661669] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765330.866695] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765331.072971] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765331.278140] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765331.483168] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421765331.688368] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765331.893918] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765332.100019] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421765332.306203] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765332.512702] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765332.718906] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765332.925702] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421765333.130857] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765333.335677] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765333.540736] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765333.745889] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765333.950925] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765334.156118] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765334.361363] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765334.567527] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765334.772676] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765334.977752] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421765335.183977] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765335.389201] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765335.594674] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765335.800084] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765336.005033] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765336.210271] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765336.415812] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765336.621171] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765336.827627] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421765337.032556] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765337.237615] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765337.443026] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765337.648559] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765337.854349] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765338.059412] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765338.264969] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765338.471188] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765338.676531] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765338.883386] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765339.088588] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765339.293586] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765339.499955] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421765339.705493] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765339.911241] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421765340.116574] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765340.321524] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765340.527463] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765340.732702] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765340.957654] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421765341.163857] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421765341.369165] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765341.574368] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765341.780676] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421765341.986011] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765342.192488] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765342.398608] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765342.604674] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765342.810058] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765343.015074] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765343.220109] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765343.426129] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765343.631738] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765343.837279] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765344.042452] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765344.247590] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765344.453003] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765344.658642] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765344.863880] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765345.069827] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765345.274672] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765345.479655] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765345.684650] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765345.889773] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765346.094742] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765346.299943] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765346.505593] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765346.712645] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421765346.918870] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765347.125095] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765347.330696] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421765347.536138] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765347.741427] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765347.947459] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765348.152863] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765348.358129] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765348.563403] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765348.769656] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765348.976008] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765349.182928] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421765349.387944] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765349.594504] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421765349.800059] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765350.005041] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765350.209937] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765350.415282] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765350.620890] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765350.827096] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765351.036353] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.93 ms +[1421765351.247547] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.21 ms +[1421765351.453786] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765351.672462] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421765351.931577] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=54.5 ms +[1421765352.138015] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765352.343379] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765352.548776] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765352.755022] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765352.963975] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.25 ms +[1421765353.173712] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.69 ms +[1421765353.385841] 89 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.28 ms +[1421765353.599350] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.42 ms +[1421765353.858954] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=55.4 ms +[1421765354.081888] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421765354.307611] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421765354.532432] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421765354.757730] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421765354.982679] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421765355.188700] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765355.393914] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765355.599879] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765355.805256] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765356.009953] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765356.214809] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765356.419970] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765356.625985] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765356.830863] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765357.035473] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765357.240288] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765357.445981] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765357.651713] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.99 ms +[1421765357.873897] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421765358.109376] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.0 ms +[1421765358.325176] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421765358.585298] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.3 ms +[1421765358.808756] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421765359.088328] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.3 ms +[1421765359.293719] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765359.499554] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421765359.707602] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.91 ms +[1421765359.917655] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.38 ms +[1421765360.131684] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421765360.343029] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.48 ms +[1421765360.563588] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421765360.787548] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421765361.070644] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.6 ms +[1421765361.343685] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.0 ms +[1421765361.564464] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421765361.793450] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.0 ms +[1421765362.018903] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421765362.223902] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765362.451801] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421765362.674423] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421765362.952125] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.3 ms +[1421765363.178550] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421765363.405041] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421765363.686732] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.7 ms +[1421765363.891881] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765364.096885] 1451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765364.302208] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765364.509392] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.08 ms +[1421765364.719985] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.60 ms +[1421765364.934519] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421765365.152325] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421765365.408754] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=52.8 ms +[1421765365.631889] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421765365.856143] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421765366.080976] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421765366.362874] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.2 ms +[1421765366.642815] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.1 ms +[1421765366.871304] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421765367.097988] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421765367.325686] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421765367.610144] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.2 ms +[1421765367.815508] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765368.020421] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765368.262897] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.5 ms +[1421765368.531828] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=65.0 ms +[1421765368.752909] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421765368.958131] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765369.163085] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765369.370829] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.56 ms +[1421765369.582972] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.71 ms +[1421765369.820209] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.0 ms +[1421765370.035645] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.0 ms +[1421765370.255812] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421765370.481459] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421765370.748620] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.9 ms +[1421765370.978930] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.1 ms +[1421765371.206141] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421765371.430687] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765371.635691] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765371.840469] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765372.045331] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765372.251119] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765372.457365] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765372.662427] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765372.867434] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765373.073183] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765373.278959] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765373.484980] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765373.689871] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765373.895086] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765374.100120] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765374.305188] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765374.512916] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.53 ms +[1421765374.724090] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.87 ms +[1421765374.963390] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.4 ms +[1421765375.210192] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.6 ms +[1421765375.428034] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421765375.706678] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.5 ms +[1421765375.911987] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765376.116869] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765376.322962] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765376.530743] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.97 ms +[1421765376.756011] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421765376.969812] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.99 ms +[1421765377.186523] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421765377.407858] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421765377.612814] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421765377.817695] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765378.022107] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765378.227199] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765378.432492] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765378.637093] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765378.842120] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765379.047691] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765379.253000] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765379.458929] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765379.664336] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765379.869595] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765380.075260] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765380.280255] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765380.485755] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765380.691291] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765380.897878] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765381.103040] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765381.308151] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765381.513655] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765381.718848] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765381.924271] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765382.128985] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765382.334000] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765382.538698] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765382.744335] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765382.950526] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765383.155934] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765383.360780] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765383.565684] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765383.770550] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765383.976126] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765384.181402] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765384.387620] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765384.593225] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765384.798971] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765385.004978] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765385.210336] 1261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765385.416464] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421765385.621438] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765385.826910] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765386.031758] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765386.236808] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765386.443088] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765386.649084] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765386.854814] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421765387.060037] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765387.265083] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765387.470625] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765387.676294] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421765387.881738] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765388.086673] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765388.291468] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765388.497977] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765388.704103] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765388.909543] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765389.115046] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421765389.320268] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765389.527256] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421765389.733402] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765389.939662] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765390.145910] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765390.351328] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765390.557403] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765390.762900] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765390.968208] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765391.173028] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765391.378185] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765391.584248] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765391.789378] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765391.995492] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765392.200818] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765392.406229] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765392.611720] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765392.817274] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765393.021968] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765393.228655] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421765393.435141] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421765393.641687] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765393.847031] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765394.051775] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765394.256775] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765394.461976] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765394.667407] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765394.873104] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765395.078007] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765395.282702] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765395.488549] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421765395.693977] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765395.900623] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765396.105377] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765396.310601] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765396.515880] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765396.721590] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765396.927244] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421765397.133766] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765397.339141] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765397.544584] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765397.750211] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421765397.956010] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421765398.162124] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765398.367766] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765398.572993] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765398.779943] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421765398.985959] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765399.191345] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765399.396770] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765399.603241] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765399.808636] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765400.013281] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765400.218582] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765400.423616] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765400.629017] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765400.835204] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765401.040589] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765401.247096] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765401.453272] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765401.659775] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765401.865439] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765402.070996] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421765402.276690] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765402.481809] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765402.687440] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765402.892769] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765403.097599] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421765403.302504] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765403.507523] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765403.713640] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765403.919962] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765404.125135] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765404.330731] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765404.536701] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421765404.741892] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765404.946907] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765405.151652] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765405.356627] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765405.561693] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765405.766445] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765405.971609] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765406.176617] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765406.381673] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765406.588367] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765406.793186] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765406.998739] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765407.204642] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.93 ms +[1421765407.427508] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421765407.641320] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.59 ms +[1421765407.884888] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.5 ms +[1421765408.144700] 1522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=55.8 ms +[1421765408.421460] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.7 ms +[1421765408.706033] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.5 ms +[1421765408.927060] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421765409.159038] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.7 ms +[1421765409.390001] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.1 ms +[1421765409.674252] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.3 ms +[1421765409.880647] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765410.085323] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765410.330931] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=41.7 ms +[1421765410.536537] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765410.742170] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765410.948474] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421765411.159667] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.31 ms +[1421765411.396850] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.3 ms +[1421765411.645568] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.8 ms +[1421765411.864317] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421765412.090876] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421765412.316800] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421765412.541338] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421765412.766643] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421765413.050235] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.0 ms +[1421765413.279182] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421765413.484339] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765413.759122] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.9 ms +[1421765413.981292] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421765414.265896] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.7 ms +[1421765414.491633] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421765414.776378] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.0 ms +[1421765415.005989] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.1 ms +[1421765415.211251] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765415.417099] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765415.621955] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765415.841924] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421765416.047070] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421765416.252047] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765416.456913] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765416.663082] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765416.868327] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765417.073833] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765417.279877] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421765417.485216] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765417.690559] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765417.895766] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765418.101108] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765418.306255] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765418.513033] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765418.719182] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765418.925735] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765419.131235] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765419.336480] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765419.541924] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765419.747055] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765419.953302] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765420.159408] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765420.364321] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765420.569225] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765420.773843] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765420.979029] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765421.184321] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765421.390447] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765421.595018] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765421.799713] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765422.004071] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765422.209318] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765422.414504] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765422.619665] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765422.825765] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421765423.032104] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421765423.236998] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765423.441980] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765423.647294] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765423.852688] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765424.057500] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765424.262396] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765424.467553] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765424.673303] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765424.879272] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765425.084276] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765425.290339] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421765425.495843] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765425.700884] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765425.906098] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421765426.111498] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765426.316207] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765426.521095] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765426.726165] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765426.931496] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765427.136627] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765427.341936] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765427.547559] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765427.753014] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765427.958661] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765428.164076] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765428.369435] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765428.575420] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421765428.782248] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.72 ms +[1421765428.988448] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765429.193916] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765429.399027] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765429.604592] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765429.810177] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765430.014486] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765430.219665] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765430.425107] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765430.630156] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765430.835153] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765431.041153] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765431.246433] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765431.451772] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765431.656827] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765431.862138] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765432.067787] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765432.272571] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765432.477459] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765432.682193] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421765432.888217] 1716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421765433.093910] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421765433.298785] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765433.504531] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765433.709204] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765433.914666] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765434.119753] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765434.324456] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765434.529217] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765434.733952] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765434.939104] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765435.144453] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765435.349762] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765435.554945] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765435.761233] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765435.967082] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765436.173499] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765436.378592] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765436.584616] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421765436.789796] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765436.994482] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765437.199413] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765437.404407] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765437.609308] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765437.814261] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765438.019929] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421765438.224518] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765438.429807] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765438.636134] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765438.841404] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765439.047300] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765439.254079] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421765439.460063] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421765439.666679] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421765439.872738] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765440.151695] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.1 ms +[1421765440.356517] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.02 ms +[1421765440.562431] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765440.767850] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765440.972693] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765441.178729] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765441.383875] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765441.589993] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765441.795313] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765442.000559] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765442.206764] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765442.411928] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765442.618629] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765442.823961] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765443.028567] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765443.233655] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765443.438726] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765443.644942] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765443.850665] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765444.056429] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.07 ms +[1421765444.261546] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765444.466829] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765444.672410] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765444.906513] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.8 ms +[1421765445.123483] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421765445.341030] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421765445.563267] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421765445.786077] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421765446.007139] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421765446.240938] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.1 ms +[1421765446.464675] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421765446.692060] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421765446.920085] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421765447.164509] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=40.8 ms +[1421765447.392698] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765447.622853] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.3 ms +[1421765447.911788] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.0 ms +[1421765448.192091] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.6 ms +[1421765448.397400] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765448.603610] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421765448.808546] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765449.013851] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421765449.234598] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421765449.446382] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.65 ms +[1421765449.684013] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.4 ms +[1421765449.900058] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.7 ms +[1421765450.119519] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421765450.347461] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421765450.571574] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421765450.789258] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421765451.005601] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421765451.240631] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.1 ms +[1421765451.445171] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765451.650240] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765451.855334] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765462.091149] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421765462.318656] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421765462.524333] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765462.730804] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421765462.936285] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765463.141180] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765463.350073] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.25 ms +[1421765463.562361] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.00 ms +[1421765463.802747] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.2 ms +[1421765464.051862] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.1 ms +[1421765464.270594] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421765464.548175] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.6 ms +[1421765464.821508] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.8 ms +[1421765465.027247] 1716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765465.232437] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765465.439296] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421765465.645314] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.88 ms +[1421765465.855694] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.28 ms +[1421765466.069681] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.67 ms +[1421765466.312810] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.4 ms +[1421765466.570794] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=53.8 ms +[1421765466.791836] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421765467.016915] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421765467.242728] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421765467.464995] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421765467.686273] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421765467.891845] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765468.171297] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.5 ms +[1421765468.399754] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421765468.681200] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.2 ms +[1421765468.908135] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421765469.132872] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421765469.359597] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421765469.587573] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421765469.793143] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765469.998474] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765470.203938] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765470.415001] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.89 ms +[1421765470.631842] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421765470.877595] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.1 ms +[1421765471.097301] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421765471.360435] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.4 ms +[1421765471.638047] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.5 ms +[1421765471.917635] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.0 ms +[1421765472.140950] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421765472.346233] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765472.554626] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.67 ms +[1421765472.760971] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421765472.971681] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.54 ms +[1421765473.177732] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765473.384000] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765473.590616] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765473.796354] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421765474.001474] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765474.207278] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421765474.415168] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.19 ms +[1421765474.643865] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421765474.857432] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.30 ms +[1421765475.075420] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421765475.296547] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421765475.520945] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421765475.744992] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421765475.956491] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.37 ms +[1421765476.161947] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765476.366870] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765476.573513] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.92 ms +[1421765476.784475] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.88 ms +[1421765477.020589] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.0 ms +[1421765477.235711] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421765477.495547] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=55.8 ms +[1421765477.770332] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.6 ms +[1421765478.053990] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.6 ms +[1421765478.284805] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.7 ms +[1421765478.508196] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421765478.713722] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765478.919396] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765479.125758] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765479.331472] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765479.536976] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765479.742820] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421765479.959829] 1529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421765480.171979] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.14 ms +[1421765480.411795] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.8 ms +[1421765480.666118] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=49.8 ms +[1421765480.887481] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421765481.111471] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421765481.393376] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.5 ms +[1421765481.599188] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765481.805635] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765482.011817] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765482.219654] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.39 ms +[1421765482.447892] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421765482.661880] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.97 ms +[1421765482.877466] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421765483.094173] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421765483.316833] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421765483.598694] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.8 ms +[1421765483.823914] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421765484.042845] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421765484.247862] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765484.472091] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421765484.678882] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421765484.900738] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421765485.129269] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421765485.413167] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.0 ms +[1421765485.639958] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421765485.870021] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421765486.095847] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421765486.323534] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421765486.548996] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421765486.754813] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765486.960118] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765487.167373] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.68 ms +[1421765487.396636] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421765487.612042] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421765487.826685] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421765488.047202] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421765488.265383] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421765488.488868] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421765488.714010] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421765488.938997] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421765489.166287] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421765489.449842] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.5 ms +[1421765489.655055] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765489.878479] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421765490.108393] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.4 ms +[1421765490.328893] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421765490.557638] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421765490.782246] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421765491.009987] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421765491.236664] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421765491.453937] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421765491.659225] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765491.864709] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765492.070288] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765492.278298] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.03 ms +[1421765492.483568] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765492.696011] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.08 ms +[1421765492.901468] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765493.115865] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421765493.371000] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.5 ms +[1421765493.641478] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=66.4 ms +[1421765493.865652] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421765494.090287] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421765494.314381] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421765494.593992] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.5 ms +[1421765494.816301] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421765495.036431] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421765495.263636] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421765495.549030] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.2 ms +[1421765495.841282] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=88.1 ms +[1421765496.064069] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421765496.270945] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.97 ms +[1421765496.475919] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765496.681202] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765496.888294] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.36 ms +[1421765497.113136] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421765497.329655] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421765497.550132] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421765497.765761] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.4 ms +[1421765497.986333] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421765498.208343] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421765498.490577] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.3 ms +[1421765498.779807] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.1 ms +[1421765499.064156] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.2 ms +[1421765499.313196] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.0 ms +[1421765499.518752] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765499.736246] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421765500.005548] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=65.0 ms +[1421765500.227013] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421765500.506761] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.1 ms +[1421765500.797141] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=86.1 ms +[1421765501.002468] 1330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765501.207749] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765501.412964] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765501.618537] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765501.841575] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421765502.052372] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.39 ms +[1421765502.265425] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.38 ms +[1421765502.519361] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=49.9 ms +[1421765502.743524] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421765503.004361] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.7 ms +[1421765503.230317] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421765503.453477] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421765503.726582] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=68.8 ms +[1421765504.016376] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.7 ms +[1421765504.296222] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.8 ms +[1421765504.521669] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421765504.743123] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421765505.028794] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.8 ms +[1421765505.257673] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421765505.487584] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421765505.715374] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421765505.924406] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.74 ms +[1421765506.129148] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765506.334955] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765506.540221] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765506.747771] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.72 ms +[1421765506.956358] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.59 ms +[1421765507.184483] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421765507.426640] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.4 ms +[1421765507.640323] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.84 ms +[1421765507.861311] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421765508.087898] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421765508.309242] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421765508.587535] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.6 ms +[1421765508.811048] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421765509.030144] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421765509.254384] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421765509.481948] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421765509.705147] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421765509.929862] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421765510.149506] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421765510.432752] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.2 ms +[1421765510.716567] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.0 ms +[1421765510.921942] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765511.127504] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765511.338082] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.71 ms +[1421765511.549597] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.21 ms +[1421765511.761157] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.13 ms +[1421765512.001490] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.2 ms +[1421765512.264108] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=58.3 ms +[1421765512.541691] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.5 ms +[1421765512.828461] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.4 ms +[1421765513.050584] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421765513.280125] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421765513.499218] 1063 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421765513.725375] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421765513.959765] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.4 ms +[1421765514.179576] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421765514.400385] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421765514.624149] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421765514.850348] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421765515.074401] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421765515.279846] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765515.561956] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.1 ms +[1421765515.767849] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421765515.973709] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421765516.179153] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765516.386333] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.46 ms +[1421765516.596627] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.43 ms +[1421765516.813801] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421765517.032968] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421765517.294188] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=57.5 ms +[1421765517.515093] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421765517.742036] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421765518.031707] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.7 ms +[1421765518.256724] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421765518.486463] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421765518.716688] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421765518.948332] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.3 ms +[1421765519.174042] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421765519.394557] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421765519.620696] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421765519.843929] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421765520.071382] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421765520.294947] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421765520.519188] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421765520.725066] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765520.930234] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765521.138662] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.75 ms +[1421765521.351230] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.35 ms +[1421765521.562503] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.93 ms +[1421765521.780663] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421765522.038835] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=54.3 ms +[1421765522.312385] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.7 ms +[1421765522.536610] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421765522.762833] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421765523.044698] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421765523.264167] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421765523.490329] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421765523.696082] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765523.923392] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421765524.141859] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421765524.364534] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421765524.593538] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421765524.878124] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.6 ms +[1421765525.162137] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.1 ms +[1421765525.388613] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421765525.593833] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765525.799651] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765526.005021] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765526.211852] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.09 ms +[1421765526.423198] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.31 ms +[1421765526.628638] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765526.834068] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765527.038874] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765527.247142] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.24 ms +[1421765527.456381] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.62 ms +[1421765527.674360] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421765527.891613] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421765528.114379] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421765528.336302] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421765528.566884] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.4 ms +[1421765528.794782] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421765529.019194] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421765529.225823] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.78 ms +[1421765529.454072] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421765529.673988] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421765529.888253] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.94 ms +[1421765530.093403] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765530.298509] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765530.503941] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765530.709233] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765530.914994] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421765531.135598] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421765531.347901] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.27 ms +[1421765531.559657] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.56 ms +[1421765531.779784] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421765531.985110] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765532.191196] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765532.396382] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765532.602684] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765532.828650] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421765533.042976] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421765533.282295] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.5 ms +[1421765533.500211] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.1 ms +[1421765533.769387] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=65.2 ms +[1421765533.996177] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421765534.225245] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421765534.446084] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421765534.670592] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421765534.893871] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421765535.118991] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421765535.409189] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=86.0 ms +[1421765535.632012] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421765535.860280] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421765536.084253] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421765536.314819] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.8 ms +[1421765536.519774] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765536.725320] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765536.932811] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.26 ms +[1421765537.144022] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.48 ms +[1421765537.356228] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.51 ms +[1421765537.571345] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421765537.791226] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.7 ms +[1421765538.017456] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421765538.243557] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421765538.523529] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.8 ms +[1421765538.812843] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.1 ms +[1421765539.017562] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765539.222631] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765539.427902] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765539.633318] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765539.838725] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765540.043848] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765540.249366] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765540.454652] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765540.661708] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.88 ms +[1421765540.888849] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421765541.124867] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.0 ms +[1421765541.343317] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421765541.562166] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421765541.782091] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765541.987166] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765542.206493] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421765542.431309] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421765542.636568] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765542.843777] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.64 ms +[1421765543.057199] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.79 ms +[1421765543.283854] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421765543.501734] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421765543.718847] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421765543.938887] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421765544.212960] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.6 ms +[1421765544.494003] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.1 ms +[1421765544.716391] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421765544.943348] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421765545.220793] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.5 ms +[1421765545.442296] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421765545.666098] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421765545.871529] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765546.077201] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765546.282284] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765546.488018] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421765546.693172] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765546.898384] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765547.103423] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765547.309168] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765547.514069] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765547.723752] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.54 ms +[1421765547.958231] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.1 ms +[1421765548.176244] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421765548.393993] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421765548.655029] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=57.0 ms +[1421765548.884790] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421765549.090032] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765549.295472] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765549.500939] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421765549.706666] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765549.912538] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765550.117907] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765550.323416] 1297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765550.528938] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765550.734510] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765550.940283] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765551.145073] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765551.350506] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765551.556045] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765551.761147] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765551.966504] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765552.171574] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765552.376635] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765552.582951] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421765552.788537] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765552.994221] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765553.199610] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765553.405047] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765553.610509] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765553.816915] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765554.021836] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765554.227802] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421765554.433585] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765554.639555] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765554.845424] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765555.050394] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765555.255224] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765555.461582] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765555.666879] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765555.872418] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765556.078114] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765556.283007] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421765556.487881] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765556.692815] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765556.898329] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765557.103015] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765557.308048] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765557.513273] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765557.718827] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765557.923578] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765558.128690] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765558.333787] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765558.539325] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765558.744942] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765558.950721] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765559.155576] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765559.361028] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421765559.566367] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765559.774768] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.01 ms +[1421765559.984604] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.94 ms +[1421765560.197878] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.99 ms +[1421765560.444553] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.5 ms +[1421765560.663809] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421765560.934898] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=66.9 ms +[1421765561.148492] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.62 ms +[1421765561.353581] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765561.558895] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765561.764689] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765561.970486] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765562.176712] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765562.381710] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765562.586888] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765562.791792] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765562.998301] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421765563.203823] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765563.409288] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765563.614502] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765563.819495] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765564.025285] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765564.230355] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765564.435714] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765564.641074] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765564.846290] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765565.051209] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765565.256289] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765565.461527] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765565.667350] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765565.872499] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765566.078530] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421765566.283712] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765566.489153] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765566.695434] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765566.901538] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421765567.106808] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765567.311658] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765567.516464] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765567.721660] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765567.927269] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765568.133623] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765568.339289] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765568.544466] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765568.749779] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765568.956568] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765569.161861] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765569.367624] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.85 ms +[1421765569.573842] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421765569.779735] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765569.988399] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765570.199357] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.10 ms +[1421765570.441760] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.3 ms +[1421765570.660523] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421765570.881141] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421765571.102593] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421765571.307617] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765571.513747] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421765571.720165] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765571.925352] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765572.130483] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765572.336395] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765572.541597] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765572.746662] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421765572.951756] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765573.156971] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765573.361935] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765573.567581] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421765573.774209] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421765573.988535] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421765574.194529] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765574.400207] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421765574.605520] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765574.812740] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.57 ms +[1421765575.031555] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421765575.238985] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.78 ms +[1421765575.443863] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765575.648752] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765575.853181] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765576.063788] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.20 ms +[1421765576.270778] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.11 ms +[1421765576.480818] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.15 ms +[1421765576.718027] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.8 ms +[1421765576.923402] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765577.128381] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765577.333391] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765577.543411] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.01 ms +[1421765577.753867] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.05 ms +[1421765577.965097] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.45 ms +[1421765578.179082] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.59 ms +[1421765578.392683] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.83 ms +[1421765578.598565] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765578.803226] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765579.020804] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421765579.226343] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765579.432055] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765579.637020] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765579.843683] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.84 ms +[1421765580.050169] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421765580.255536] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765580.461396] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765580.666407] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765580.871368] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765581.076423] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765581.281183] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765581.486244] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765581.691065] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765581.896249] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765582.102232] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765582.307075] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765582.512128] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765582.716882] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765582.922603] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765583.127551] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765583.332851] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765583.537409] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765583.746658] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.82 ms +[1421765583.954687] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765584.160940] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765584.366898] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765584.572534] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765584.777878] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765584.984220] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765585.189690] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765585.394679] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765585.599469] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765585.804555] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765586.009688] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765586.214150] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765586.420235] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765586.625591] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765586.830817] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765587.035585] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765587.240264] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765587.445260] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765587.650389] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765587.855462] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765588.059889] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765588.266020] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765588.471513] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765588.676020] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765588.881143] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765589.086059] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765589.291021] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765589.496346] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765589.701533] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765589.907136] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765590.113469] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765590.319254] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765590.524988] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765590.730218] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765590.935201] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765591.140766] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765591.346042] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765591.550995] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765591.757074] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765591.963629] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765592.168656] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765592.375121] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421765592.580604] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765592.786727] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765592.992991] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765593.198342] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765593.403820] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765593.609100] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765593.815433] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421765594.020640] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765594.225683] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765594.430898] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765594.637284] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765594.842368] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765595.048235] 1897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765595.253590] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765595.458898] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765595.663987] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765595.870114] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765596.074759] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765596.279736] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765596.484787] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765596.690295] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765596.895147] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765597.100969] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765597.306941] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765597.512346] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765597.718024] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765597.924333] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765598.129714] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765598.335910] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765598.541075] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765598.746122] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765598.952488] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765599.157869] 1026 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765599.362975] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765599.568655] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421765599.774306] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765599.979598] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765600.185549] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765600.390907] 814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765600.596252] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765600.802917] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765601.007637] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765601.212868] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765601.418254] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765601.623407] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765601.829368] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765602.034627] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765602.239839] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765602.445440] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421765602.650687] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765602.855876] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765603.061624] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765603.266593] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765603.472658] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765603.677627] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765603.883725] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765604.088874] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765604.295133] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765604.501033] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421765604.706654] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765604.911972] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765605.116776] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765605.321579] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765605.526833] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765605.733211] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765605.938695] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765606.143627] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765606.348825] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765606.553863] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765606.759043] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765606.964786] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421765607.170878] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421765607.376797] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421765607.583027] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421765607.788230] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765607.993798] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765608.200336] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765608.405554] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765608.610614] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765608.816122] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765609.022218] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765609.227030] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765609.433237] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421765609.638540] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765609.843824] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421765610.050324] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421765610.255781] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765610.461668] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765610.666845] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765610.872169] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765611.078203] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421765611.283339] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765611.488381] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765611.694422] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765611.900658] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765612.105559] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765612.310869] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765612.516022] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765612.721026] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765612.926237] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765613.131658] 1186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765613.337165] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765613.543923] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765613.749632] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765613.956122] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765614.162466] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765614.368432] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765614.574368] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765614.779787] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765614.984896] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765615.189661] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765615.394496] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765615.599660] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765615.804772] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765616.009356] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765616.215299] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765616.420622] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765616.626086] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765616.832107] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421765617.037935] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765617.243652] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421765617.448978] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765617.654096] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765617.860354] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421765618.066168] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765618.271367] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765618.477197] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765618.683583] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765618.888551] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765619.093271] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765619.298419] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765619.503845] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765619.709408] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765619.915025] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765620.121374] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765620.326989] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765620.533636] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765620.740203] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765620.945556] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765621.151095] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765621.357571] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765621.564597] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421765621.770456] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765621.976106] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765622.182317] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765622.388489] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765622.594704] 1529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765622.800818] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421765623.006893] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765623.212001] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765623.418525] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765623.623824] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765623.828994] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765624.034067] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765624.239059] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765624.445525] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765624.651070] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765624.857371] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421765625.062195] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765625.267164] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765625.472763] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765625.677809] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765625.882939] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765626.087888] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765626.293715] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765626.498554] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765626.704582] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765626.909578] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765627.114497] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765627.319744] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765627.525230] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765627.730654] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765627.937004] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765628.143263] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765628.349407] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765628.554709] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765628.760193] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765628.966794] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765629.172440] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765629.377849] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765629.583428] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765629.788820] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765629.994733] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765630.200107] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765630.405026] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765630.610446] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765630.816371] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765631.021337] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765631.227290] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765631.432892] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765631.638326] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765631.843915] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765632.048602] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421765632.253888] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765632.459190] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765632.665122] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765632.871582] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765633.076492] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765633.281634] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765633.486796] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765633.692100] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765633.898638] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421765634.103520] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765634.309927] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765634.515344] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765634.721236] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765634.927182] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765635.132089] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765635.337230] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765635.542368] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765635.747493] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765635.952887] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765636.158188] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765636.364374] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765636.569780] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765636.775219] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765636.980890] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421765637.186054] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765637.392199] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765637.598001] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765637.803507] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765638.009730] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765638.215051] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765638.421268] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765638.626661] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765638.831864] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765639.036790] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765639.241790] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765639.447231] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765639.652482] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765639.858574] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421765640.063416] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765640.268492] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765640.474263] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765640.679638] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421765640.885806] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.92 ms +[1421765641.091151] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765641.296330] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765641.501520] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765641.707836] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765641.913283] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421765642.118565] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765642.323784] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765642.529186] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765642.735915] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421765642.941508] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765643.146862] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765643.352422] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765643.557639] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765643.762877] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765643.968383] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765644.173750] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765644.379104] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765644.584846] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765644.790420] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421765644.995296] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765645.200704] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765645.405876] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765645.611259] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421765645.816921] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765646.021797] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765646.228186] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765646.433632] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765646.639175] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765646.845629] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765647.050462] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421765647.255407] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765647.460472] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765647.665154] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765647.870295] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765648.075480] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765648.280646] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765648.486223] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765648.691757] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765648.897454] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765649.102284] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765649.307604] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765649.514669] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421765649.721264] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765649.927303] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765650.132424] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765650.338633] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765650.544144] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765650.749711] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765650.955412] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765651.160625] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765651.365674] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765651.571080] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765651.777270] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421765651.982223] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765652.188024] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765652.394075] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765652.599472] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765652.806141] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765653.011145] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765653.217514] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765653.422883] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765653.628256] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765653.834771] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765654.040691] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765654.245578] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765654.450930] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765654.657629] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421765654.863008] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765655.067927] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765655.273821] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421765655.479240] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765655.685002] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765655.890586] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765656.095705] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765656.301007] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765656.506634] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421765656.712553] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765656.918957] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765657.124722] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421765657.329548] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765657.534515] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765657.739637] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765657.945316] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765658.150729] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765658.356628] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765658.561940] 1063 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765658.767509] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765658.973013] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765659.178424] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765659.383558] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765659.588998] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765659.795602] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421765660.000865] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765660.206347] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765660.411653] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765660.617622] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765660.822738] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765661.027271] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765661.233154] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765661.438487] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765661.644100] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765661.850693] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765662.055507] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765662.260900] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765662.467442] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421765662.672685] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765662.878337] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765663.083261] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765663.288487] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765663.494073] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765663.700630] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765663.906141] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765664.110850] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765664.317419] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421765664.523049] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765664.728580] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765664.934323] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765665.140380] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765665.346965] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421765665.552828] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765665.758927] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765665.964894] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765666.170349] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765666.375913] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765666.581799] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765666.787592] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765666.993184] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765667.198615] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765667.404264] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765667.610772] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765667.817233] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421765668.022222] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421765668.227628] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421765668.432928] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765668.638329] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765668.843659] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765669.048625] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765669.253615] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765669.459872] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765669.665085] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765669.870564] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765670.075824] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765670.282036] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765670.486999] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765670.691784] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765670.896998] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765671.102628] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765671.308419] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765671.513711] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765671.720055] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765671.926243] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765672.131116] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765672.336018] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765672.542160] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765672.748746] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765672.954147] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765673.159805] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765673.364519] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765673.570912] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421765673.776195] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765673.981665] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765674.186991] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765674.392445] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765674.598029] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765674.804667] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765675.009669] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765675.215546] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765675.420568] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765675.625819] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765675.831348] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765676.036445] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765676.242353] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765676.447607] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765676.652784] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765676.859297] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765677.065184] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421765677.271240] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765677.476350] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765677.681389] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765677.887351] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765678.093185] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765678.298548] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765678.504441] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765678.710910] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765678.916265] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421765679.121662] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765679.327848] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765679.533901] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421765679.739550] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765679.945144] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765680.150863] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765680.356817] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765680.562363] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765680.767396] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765680.972371] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765681.177639] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765681.382572] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765681.587592] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765681.793582] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765682.009785] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421765682.220859] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.17 ms +[1421765682.439385] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421765682.695139] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.8 ms +[1421765682.917576] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421765683.143002] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421765683.425388] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421765683.630717] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765683.836010] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765684.042353] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765684.248980] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421765684.455445] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765684.661142] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765684.867289] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765685.072726] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765685.278523] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765685.484071] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765685.689721] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765685.894974] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765686.100735] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765686.311930] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.65 ms +[1421765686.551819] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.1 ms +[1421765686.766859] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421765686.989605] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421765687.211740] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421765687.495830] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.9 ms +[1421765687.722797] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421765688.003827] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.3 ms +[1421765688.222646] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421765688.450171] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421765688.675901] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421765688.893118] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421765689.171440] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.7 ms +[1421765689.401779] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.2 ms +[1421765689.618508] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421765689.849236] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.8 ms +[1421765690.070263] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421765690.275475] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765690.481022] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765690.688393] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.89 ms +[1421765690.898387] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.57 ms +[1421765691.109661] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.43 ms +[1421765691.324847] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421765691.544852] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421765691.764144] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421765691.987292] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421765692.214566] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421765692.496690] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421765692.719869] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421765692.943423] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421765693.149126] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765693.354437] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765693.560316] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765693.765456] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765693.971128] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765694.176814] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765694.382001] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765694.587114] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765694.792909] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765695.000137] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.81 ms +[1421765695.205691] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765695.415322] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.16 ms +[1421765695.623877] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.45 ms +[1421765695.855469] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.0 ms +[1421765696.071170] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.7 ms +[1421765696.289122] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421765696.495555] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421765696.700908] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765696.906928] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765697.112477] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765697.318031] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765697.523177] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765697.728275] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765697.933112] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765698.139187] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765698.345014] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421765698.551260] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421765698.757056] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765698.962198] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765699.167548] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765699.373026] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765699.579778] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421765699.784899] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765699.990364] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765700.195525] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765700.400898] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765700.606565] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765700.813151] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765701.017932] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765701.223027] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765701.429174] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765701.635607] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421765701.841858] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421765702.047037] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765702.251740] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765702.457877] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765702.663752] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765702.868719] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765703.073462] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421765703.278426] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765703.484076] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765703.690522] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765703.895440] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765704.101075] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765704.306137] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765704.511471] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765704.720979] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765704.927395] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765705.133727] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765705.339067] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765705.545349] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765705.749996] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421765705.955389] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421765706.160318] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765706.365031] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765706.570318] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765706.775785] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765706.982120] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765707.187668] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765707.393634] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765707.598806] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765707.803946] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765708.009598] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765708.214755] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765708.420179] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765708.625598] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765708.830890] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765709.035797] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765709.241813] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765709.447664] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765709.653129] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765709.858394] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765710.063211] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765710.268494] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765710.473948] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765710.679785] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765710.885653] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765711.090711] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765711.295815] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765711.501193] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765711.706685] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765711.913052] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765712.118528] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765712.323800] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765712.529124] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765712.734360] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765712.940595] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765713.145740] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765713.350942] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765713.556047] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765713.761554] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765713.967200] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765714.173006] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765714.378612] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765714.585150] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765714.790190] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765714.996787] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765715.203220] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765715.408487] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765715.614875] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421765715.820268] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765716.026049] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765716.230858] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765716.436380] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765716.641956] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765716.847676] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765717.052378] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765717.258281] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421765717.463584] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765717.669223] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765717.874755] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765718.079363] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765718.285133] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765718.490400] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765718.695810] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765718.901241] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765719.106081] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765719.311042] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765719.516462] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765719.721634] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765719.927971] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421765720.133432] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765720.338601] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765720.543324] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765720.748425] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765720.954607] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765721.159452] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765721.364945] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765721.571203] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765721.776105] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765721.981519] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765722.186327] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765722.391481] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765722.597789] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765722.802544] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765723.007268] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765723.212599] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765723.418972] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765723.624329] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765723.829932] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765724.034797] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765724.240383] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765724.446395] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765724.652604] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765724.859423] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765725.065761] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765725.270781] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765725.476732] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421765725.682113] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421765725.887558] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765726.095943] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.55 ms +[1421765726.300907] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765726.507084] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765726.712500] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765726.917723] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765727.123039] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765727.327975] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765727.533344] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765727.738867] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765727.945507] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421765728.151870] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421765728.357530] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.94 ms +[1421765728.562867] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765728.767940] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765728.973111] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765729.178673] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765729.383965] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765729.589908] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765729.795691] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765730.001669] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421765730.207082] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765730.412431] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765730.617823] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765730.823360] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765731.028299] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765731.234143] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421765731.439303] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765731.644950] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765731.850719] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765732.056735] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765732.261621] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765732.466519] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765732.671905] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765732.878609] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765733.083704] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765733.288486] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765733.493620] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765733.700263] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765733.906223] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765734.110939] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765734.317027] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765734.522223] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765734.727399] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765734.932140] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765735.136478] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421765735.341512] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765735.546762] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765735.752084] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765735.958007] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765736.163654] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765736.369903] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765736.575688] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765736.781440] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765736.987981] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765737.193273] 1175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765737.398280] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765737.603811] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765737.808812] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765738.013828] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765738.219638] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765738.426653] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.78 ms +[1421765738.634253] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.12 ms +[1421765738.839243] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765739.044101] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765739.250253] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765739.455607] 130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765739.660724] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765739.865784] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765740.071459] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765740.277666] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765740.482675] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765740.688594] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765740.894602] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765741.098942] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765741.305079] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765741.510683] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421765741.716334] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765741.921035] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765742.125995] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765742.331327] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765742.537119] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765742.742640] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765742.948986] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765743.153606] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765743.358505] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765743.563539] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765743.768637] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765743.974750] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765744.179914] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765744.384624] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765744.590366] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765744.796688] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765745.001738] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765745.207970] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765745.414038] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765745.619759] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765745.825235] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765746.030035] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765746.235050] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765746.440335] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765746.646218] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765746.851746] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765747.057141] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421765747.262366] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765747.468365] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765747.673469] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765747.879564] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765748.084411] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765748.294455] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.28 ms +[1421765748.499983] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765748.705027] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765748.910423] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765749.115223] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765749.321780] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765749.528404] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765749.733369] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765749.938373] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765750.143617] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765750.349222] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765750.554622] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765750.759926] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765750.966175] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765751.171795] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765751.377038] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765751.582180] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765751.787470] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765751.993121] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765752.198388] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765752.404318] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765752.610325] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765752.817310] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421765753.023230] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.03 ms +[1421765753.228989] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765753.434733] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765753.639966] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765753.846395] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421765754.051641] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765754.257440] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421765754.463749] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765754.669153] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765754.877168] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.06 ms +[1421765755.083012] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765755.289500] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421765755.494964] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765755.701530] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421765755.907325] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765756.112138] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765756.317235] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765756.522482] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765756.727921] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765756.933019] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765757.138245] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765757.344642] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765757.550106] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765757.756778] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765757.962071] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765758.168040] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421765758.374543] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765758.580069] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765758.785246] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765758.990241] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765759.195220] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765759.401651] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765759.606977] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765759.813098] 1156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765760.021904] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.42 ms +[1421765760.227187] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765760.431997] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765760.638103] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765760.847966] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.99 ms +[1421765761.062517] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421765761.279455] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421765761.495737] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.2 ms +[1421765761.759635] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.9 ms +[1421765762.033563] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.1 ms +[1421765762.262886] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.3 ms +[1421765762.492456] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421765762.722182] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421765763.008892] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.7 ms +[1421765763.232284] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421765763.519190] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.9 ms +[1421765763.746002] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421765764.024425] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.4 ms +[1421765764.306011] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.7 ms +[1421765764.530979] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421765764.736475] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765764.943016] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421765765.151249] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.93 ms +[1421765765.361160] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.87 ms +[1421765765.572177] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.78 ms +[1421765765.786392] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421765766.008050] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421765766.272406] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.5 ms +[1421765766.500116] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421765766.732019] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.4 ms +[1421765766.960738] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421765767.196888] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.2 ms +[1421765767.426385] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.4 ms +[1421765767.654723] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421765767.882073] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421765768.107859] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765768.391178] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.4 ms +[1421765768.677239] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.6 ms +[1421765768.905795] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421765769.180157] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.6 ms +[1421765769.385183] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765769.590480] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765769.802967] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.26 ms +[1421765770.012942] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.23 ms +[1421765770.226969] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.3 ms +[1421765770.471803] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=40.9 ms +[1421765770.688382] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421765770.913320] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421765771.136206] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765771.362376] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421765771.586603] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421765771.811864] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421765772.043064] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.5 ms +[1421765772.260384] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421765772.486060] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421765772.776860] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=86.5 ms +[1421765773.001620] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421765773.231000] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.3 ms +[1421765773.456649] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421765773.680062] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421765773.886468] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765774.091549] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765774.296823] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765774.502585] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765774.710179] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.61 ms +[1421765774.938624] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421765775.173034] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.5 ms +[1421765775.389291] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.0 ms +[1421765775.608760] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421765775.834846] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421765776.053124] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421765776.335113] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421765776.621616] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.6 ms +[1421765776.843689] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421765777.074034] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.6 ms +[1421765777.289155] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421765777.518449] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421765777.745757] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421765777.977322] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.2 ms +[1421765778.211183] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.3 ms +[1421765778.499950] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.6 ms +[1421765778.721378] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421765778.927064] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765779.132226] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765779.338832] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421765779.548944] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.62 ms +[1421765779.762682] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.77 ms +[1421765779.968276] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765780.173427] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765780.378932] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765780.585262] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765780.790743] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765780.996356] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765781.201209] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765781.407334] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765781.614037] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765781.819396] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765782.024021] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765782.228904] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765782.433975] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765782.639325] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765782.845621] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765783.050498] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765783.255376] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765783.460698] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765783.667150] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765783.872830] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765784.077584] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421765784.282778] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765784.488507] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765784.694396] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765784.900184] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765785.105331] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765785.314944] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.86 ms +[1421765785.521431] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765785.727106] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765785.933932] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765786.139956] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765786.345722] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765786.552687] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421765786.759750] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421765786.965563] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765787.171847] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765787.377196] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765787.582427] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765787.787919] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765787.994812] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421765788.201599] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421765788.406803] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765788.613834] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421765788.819817] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421765789.024975] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765789.230253] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765789.436504] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421765789.642048] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765789.847257] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765790.052249] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765790.257498] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765790.463616] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765790.668914] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765790.875181] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.94 ms +[1421765791.080606] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765791.286734] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765791.491522] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765791.699075] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.68 ms +[1421765791.904395] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765792.109087] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765792.316507] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.57 ms +[1421765792.523407] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421765792.730350] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765792.935916] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765793.141958] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.98 ms +[1421765793.347121] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765793.552583] 1021 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765793.757770] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765793.963510] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765794.169529] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765794.374815] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765794.581802] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421765794.787310] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765794.992651] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765795.197903] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765795.403019] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765795.608340] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765795.813850] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765796.018793] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765796.223723] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765796.428737] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765796.633535] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765796.839741] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765797.044605] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765797.249895] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765797.455246] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765797.660334] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765797.865451] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765798.071142] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765798.276314] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421765798.481696] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765798.687002] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765798.892104] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765799.097434] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765799.302072] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765799.507373] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765799.713272] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421765799.918392] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765800.124684] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421765800.329898] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765800.535795] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765800.741738] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765800.948310] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421765801.153817] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765801.358871] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765801.565175] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765801.770807] 1410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765801.975705] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765802.181989] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765802.388037] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765802.594604] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765802.800247] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765803.005337] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765803.210516] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765803.415649] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765803.620734] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765803.826863] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765804.031752] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765804.237115] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765804.443474] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765804.648984] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765804.855212] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765805.060585] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765805.267302] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421765805.472681] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765805.677852] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765805.883342] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765806.089248] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765806.294116] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765806.500299] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765806.706370] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765806.911707] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765807.116315] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765807.321454] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765807.528253] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.82 ms +[1421765807.733940] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765807.938774] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765808.143673] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765808.349112] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765808.554875] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765808.760377] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765808.966116] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765809.171024] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765809.376198] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765809.582491] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421765809.787856] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765809.993176] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765810.198687] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765810.403574] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765810.609619] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765810.814898] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765811.023407] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.58 ms +[1421765811.230321] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.07 ms +[1421765811.435977] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765811.642499] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421765811.847569] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765812.053325] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765812.258510] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765812.463502] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765812.670450] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421765812.876126] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765813.080936] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765813.286287] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765813.491697] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765813.697758] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765813.903449] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765814.109569] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421765814.316035] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765814.521715] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765814.727116] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765814.933202] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765815.140369] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765815.346623] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765815.552982] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421765815.758891] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765815.964930] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765816.171409] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765816.376570] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765816.582027] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765816.787780] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421765816.992743] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765817.201102] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765817.406224] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765817.611476] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765817.817278] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765818.022016] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765818.228173] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765818.433105] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765818.638205] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765818.843935] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765819.049227] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765819.254508] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421765819.459936] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765819.665854] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765819.871697] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765820.077744] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765820.284262] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421765820.489786] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765820.695576] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421765820.900636] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765821.105366] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765821.310653] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765821.515988] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765821.721016] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765821.926791] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765822.133078] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421765822.339428] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421765822.545618] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421765822.751520] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765822.956537] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765823.161844] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765823.367538] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765823.573168] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765823.778928] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765823.984331] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765824.189935] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421765824.396783] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.85 ms +[1421765824.604245] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.13 ms +[1421765824.817262] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.70 ms +[1421765825.033203] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421765825.287587] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=50.9 ms +[1421765825.558522] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=67.1 ms +[1421765825.778577] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421765826.060086] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.8 ms +[1421765826.292245] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.4 ms +[1421765826.516072] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421765826.743695] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421765826.970618] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421765827.189581] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421765827.418891] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.4 ms +[1421765827.636946] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.1 ms +[1421765827.842109] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765828.046613] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765828.252481] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.98 ms +[1421765828.467153] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421765828.676253] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.30 ms +[1421765828.886360] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.19 ms +[1421765829.127685] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=37.5 ms +[1421765829.346374] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421765829.568120] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421765829.845653] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.2 ms +[1421765830.073347] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421765830.342479] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=65.3 ms +[1421765830.571275] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421765830.797313] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421765831.023757] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421765831.247500] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421765831.472538] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421765831.694123] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421765831.977659] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.0 ms +[1421765832.259932] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421765832.466177] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765832.671417] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765832.876913] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765833.084913] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.27 ms +[1421765833.298303] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.34 ms +[1421765833.516448] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421765833.731695] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421765833.954328] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421765834.177804] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421765834.399624] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421765834.622242] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421765834.843097] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421765835.125945] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.7 ms +[1421765835.353876] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421765835.577780] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421765835.783357] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765835.988509] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765836.193609] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765836.399811] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765836.619105] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421765836.832901] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.61 ms +[1421765837.047399] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421765837.302596] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.1 ms +[1421765837.526295] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421765837.749261] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421765837.954439] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765838.160782] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765838.366039] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765838.574174] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765838.799231] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421765839.011126] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.98 ms +[1421765839.229035] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421765839.445969] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421765839.668966] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421765839.897002] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421765840.121448] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421765840.410130] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.0 ms +[1421765840.634972] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421765840.840075] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765841.061272] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421765841.279158] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421765841.563541] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.8 ms +[1421765841.792513] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421765842.018048] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421765842.240725] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765842.469126] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421765842.698988] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421765842.904330] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765843.108985] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765843.314435] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765843.528216] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.94 ms +[1421765843.737571] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.88 ms +[1421765843.952799] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421765844.165194] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.22 ms +[1421765844.385418] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421765844.605817] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421765844.831192] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421765845.052932] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421765845.277150] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421765845.503291] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421765845.787982] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.3 ms +[1421765846.012053] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421765846.236243] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421765846.520351] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.1 ms +[1421765846.743839] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421765846.973535] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.3 ms +[1421765847.200548] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421765847.414232] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.33 ms +[1421765847.619627] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765847.824514] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765848.029246] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765848.237790] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.65 ms +[1421765848.451669] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.36 ms +[1421765848.668350] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.2 ms +[1421765848.927932] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=55.3 ms +[1421765849.204717] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.9 ms +[1421765849.430881] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421765849.662790] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.6 ms +[1421765849.885673] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421765850.111394] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421765850.337374] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421765850.562988] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421765850.848323] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.0 ms +[1421765851.132839] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.5 ms +[1421765851.338082] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765851.542865] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765851.749402] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765851.955942] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765852.161355] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765852.366382] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765852.571556] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765852.777935] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765852.983691] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765853.189189] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765853.394458] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765853.600898] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765853.806717] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765854.012412] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765854.218866] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421765854.427001] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.75 ms +[1421765854.638276] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.53 ms +[1421765854.874521] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.9 ms +[1421765855.080454] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765855.286656] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765855.491926] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765855.699195] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.06 ms +[1421765855.908936] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.43 ms +[1421765856.143819] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.0 ms +[1421765856.363356] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421765856.624186] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.5 ms +[1421765856.849155] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421765857.131787] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.8 ms +[1421765857.358445] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421765857.575249] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421765857.797777] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421765858.003861] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421765858.231688] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421765858.457786] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421765858.687403] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.4 ms +[1421765858.917585] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421765859.134621] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421765859.359828] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421765859.584526] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421765859.790011] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765859.995583] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421765860.200738] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765860.409717] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.17 ms +[1421765860.621383] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.37 ms +[1421765860.826762] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765861.031570] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765861.237740] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765861.442944] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765861.649586] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421765861.855613] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421765862.061330] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421765862.266752] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765862.472128] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765862.677483] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765862.882723] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765863.087474] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765863.293698] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765863.500104] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765863.706374] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765863.912717] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765864.118234] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765864.323662] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765864.529825] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765864.735467] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765864.940849] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765865.145720] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765865.352054] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765865.557150] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765865.762306] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765865.967553] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765866.172836] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765866.378265] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765866.584365] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765866.789974] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765866.995227] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765867.200759] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765867.406239] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765867.612413] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765867.818070] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765868.022656] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765868.228666] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421765868.433498] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765868.639079] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765868.845676] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765869.050695] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765869.255657] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765869.461100] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765869.667795] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421765869.873902] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421765870.078654] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765870.283593] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765870.488960] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765870.694371] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765870.899788] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765871.104510] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765871.309280] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765871.514244] 555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765871.720477] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765871.925969] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765872.130987] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765872.336279] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765872.541845] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765872.748487] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421765872.955188] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765873.161028] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765873.366350] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765873.571773] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765873.777302] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765873.982944] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765874.188476] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765874.393839] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765874.600967] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421765874.808569] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421765875.013106] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765875.218588] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765875.424848] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765875.630579] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765875.836403] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765876.042400] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421765876.247629] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765876.453167] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765876.659807] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421765876.865549] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765877.071385] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765877.276790] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765877.482230] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765877.687933] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765877.894292] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765878.099459] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765878.304861] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765878.510806] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765878.717151] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765878.922384] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765879.128809] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765879.334377] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765879.539682] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765879.746629] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421765879.952516] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421765880.157651] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765880.362742] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765880.568925] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765880.774616] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765880.980010] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765881.185390] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765881.392335] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421765881.598824] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765881.804324] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765882.009231] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765882.214511] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765882.420275] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765882.626603] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765882.832831] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421765883.037761] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765883.243017] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765883.448827] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765883.654818] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765883.860539] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765884.066956] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421765884.272880] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765884.478454] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765884.684150] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765884.889672] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765885.094569] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765885.299521] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421765885.504573] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765885.710253] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765885.915825] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765886.120960] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765886.325911] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765886.531036] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765886.736590] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421765886.942710] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421765887.147870] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765887.353833] 1417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421765887.560298] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765887.765720] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765887.971527] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765888.176994] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765888.383112] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765888.588706] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765888.793500] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765888.998831] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765889.204515] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765889.409751] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765889.614868] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765889.820295] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421765890.025184] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765890.230347] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765890.435513] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765890.640744] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765890.846121] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765891.050813] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765891.255798] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765891.461248] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765891.666753] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765891.873285] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765892.078190] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765892.283510] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765892.489903] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765892.696170] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421765892.902749] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765893.108210] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765893.313413] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765893.519479] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765893.726249] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765893.931461] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765894.136587] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765894.341758] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765894.547409] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765894.753373] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765894.958884] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765895.164318] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765895.369602] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765895.574973] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765895.780336] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765895.986717] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421765896.192540] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765896.397743] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765896.604332] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421765896.809738] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765897.015846] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765897.220953] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765897.426165] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765897.631746] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765897.837872] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765898.042960] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765898.249679] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.06 ms +[1421765898.454943] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765898.660406] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765898.865562] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765899.070718] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765899.275633] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765899.480810] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765899.686475] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765899.892424] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765900.097397] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765900.302483] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765900.508060] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765900.714949] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765900.919968] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765901.125656] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421765901.331084] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765901.537379] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765901.743169] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765901.950046] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765902.155556] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765902.361148] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765902.567648] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765902.773653] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765902.979191] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765903.185519] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765903.391780] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765903.597367] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765903.802976] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765904.008226] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765904.213637] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765904.418992] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765904.625194] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765904.830326] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765905.034947] 30 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765905.240418] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765905.446019] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765905.651723] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765905.857392] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765906.062328] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765906.268048] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765906.474672] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765906.680509] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765906.886103] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421765907.091150] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765907.297280] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421765907.502674] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765907.708528] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765907.914103] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765908.120051] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765908.325340] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765908.531344] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765908.736911] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765908.942171] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765909.147166] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765909.352100] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765909.557343] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765909.764174] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421765909.969822] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421765910.176032] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765910.381696] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765910.587685] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765910.792998] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765910.998416] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765911.204919] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421765911.410199] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421765911.615797] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421765911.820874] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765912.025649] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765912.230476] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765912.435478] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765912.641101] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765912.846411] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765913.050987] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765913.256220] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765913.462271] 1482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765913.668600] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765913.873894] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765914.080019] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765914.285410] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765914.491162] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765914.697138] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765914.903777] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765915.109164] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765915.314900] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765915.521511] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765915.727442] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765915.932969] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765916.138489] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765916.343853] 1148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765916.550343] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421765916.755351] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765916.961833] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765917.167136] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765917.373299] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765917.578864] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765917.784248] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765917.989924] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765918.195391] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765918.401004] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765918.606824] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765918.813559] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765919.018200] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765919.223458] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765919.428948] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765919.634595] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765919.839576] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765920.045655] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765920.251797] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765920.458488] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421765920.664859] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765920.870105] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765921.075001] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765921.280107] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765921.485173] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765921.691586] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765921.898085] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765922.102728] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765922.308389] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765922.514653] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421765922.719898] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765922.924944] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765923.130465] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765923.336085] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765923.542623] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765923.748625] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765923.953859] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765924.159114] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765924.364799] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765924.570497] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765924.775666] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765924.982080] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421765925.187513] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765925.394159] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765925.600764] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765925.806580] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765926.011622] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765926.216800] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765926.424988] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.70 ms +[1421765926.634736] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.68 ms +[1421765926.849557] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421765927.054248] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765927.259407] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765927.464773] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765927.671294] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765927.877752] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765928.083225] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765928.288054] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765928.494577] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765928.700715] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765928.906110] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765929.112540] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765929.318703] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765929.523531] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765929.728898] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765929.935421] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421765930.141979] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765930.347130] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765930.553750] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765930.759480] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765930.965213] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765931.170471] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765931.376584] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765931.581869] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765931.788484] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765931.994418] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765932.199476] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765932.404418] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765932.609631] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765932.814503] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765933.018913] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765933.223712] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765933.428527] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765933.634090] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765933.839082] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765934.043667] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765934.249582] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765934.454813] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765934.660073] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765934.865646] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765935.070661] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765935.276811] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765935.483000] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765935.688619] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765935.894646] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765936.100275] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765936.306975] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.67 ms +[1421765936.512762] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765936.718444] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765936.923777] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765937.129033] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765937.334211] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765937.539792] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765937.745519] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765937.951460] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765938.157837] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765938.362926] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765938.568384] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765938.774452] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765938.980055] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765939.186073] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765939.391276] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765939.598346] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421765939.805421] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421765940.010356] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765940.216692] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765940.423086] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765940.628720] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765940.833999] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765941.038835] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765941.244846] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765941.450140] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765941.655733] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765941.860777] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765942.066819] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765942.272061] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765942.477313] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765942.683090] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765942.889807] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765943.094742] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765943.300143] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765943.506585] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421765943.711983] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765943.916812] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765944.122756] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765944.328126] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765944.535428] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421765944.740835] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765944.946183] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765945.152292] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765945.357103] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765945.561813] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765945.768169] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765945.973595] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765946.178507] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765946.383679] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765946.589575] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765946.796435] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765947.003909] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.15 ms +[1421765947.261615] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=53.7 ms +[1421765947.466816] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765947.672251] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765947.877834] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765948.084102] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.87 ms +[1421765948.290228] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765948.495679] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765948.701434] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765948.906534] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765949.111433] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765949.316695] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765949.522089] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765949.726607] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765949.932153] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765950.137515] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765950.343001] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765950.548488] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765950.754030] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765950.959410] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765951.168652] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.98 ms +[1421765951.373709] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765951.578809] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765951.783620] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765951.989820] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765952.195176] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765952.400857] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765952.606455] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765952.812878] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765953.018013] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765953.224093] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765953.429244] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765953.635467] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765953.840340] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765954.044966] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765954.250160] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765954.455556] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765954.661939] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765954.867989] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421765955.072682] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765955.277654] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765955.484293] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421765955.689714] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765955.894869] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765956.100884] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765956.306046] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765956.511177] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765956.715961] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765956.921193] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765957.126433] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765957.332071] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765957.537277] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765957.742227] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765957.947976] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765958.153388] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765958.358552] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765958.564177] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765958.769810] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765958.975493] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765959.181998] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765959.387120] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765959.592220] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765959.799050] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421765960.005579] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421765960.211098] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765960.416532] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765960.622005] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765960.827027] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765961.031563] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765961.236742] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765961.443069] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765961.649214] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765961.854686] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765962.059496] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765962.264792] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765962.471203] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765962.676573] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765962.882296] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765963.087962] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765963.293391] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765963.499895] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765963.705050] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765963.910351] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765964.115310] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765964.321656] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765964.529314] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.19 ms +[1421765964.734926] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765964.941134] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765965.147189] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.90 ms +[1421765965.352474] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765965.557980] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765965.763556] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765965.969150] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765966.174505] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765966.379997] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421765966.585572] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765966.791176] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765966.996916] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421765967.202993] 1566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421765967.409195] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765967.615670] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765967.820963] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765968.025642] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765968.230872] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765968.437166] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421765968.643236] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765968.848997] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765969.053672] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765969.258898] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765969.464185] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765969.669745] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765969.875634] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421765970.080905] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765970.285834] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765970.491114] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421765970.697088] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421765970.902826] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765971.107474] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765971.312710] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765971.518898] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765971.724607] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421765971.930030] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765972.135264] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765972.340385] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765972.547024] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421765972.775152] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421765973.014207] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.0 ms +[1421765973.232935] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421765973.496683] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.9 ms +[1421765973.720567] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421765973.948352] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421765974.236103] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.6 ms +[1421765974.457316] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421765974.694046] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.0 ms +[1421765974.928997] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.9 ms +[1421765975.135146] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765975.340061] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421765975.547473] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.57 ms +[1421765975.755450] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.99 ms +[1421765975.967630] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.58 ms +[1421765976.211493] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.6 ms +[1421765976.464905] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=49.3 ms +[1421765976.683820] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421765976.903604] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421765977.124499] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421765977.410168] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.8 ms +[1421765977.634286] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421765977.852948] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421765978.081621] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421765978.311314] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421765978.533820] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421765978.762009] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421765979.042929] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.7 ms +[1421765979.270299] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421765979.475543] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765979.681772] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421765979.887565] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765980.093206] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765980.298525] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765980.503958] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765980.710398] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765980.916679] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765981.122686] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765981.328960] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421765981.537786] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.02 ms +[1421765981.743444] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765981.949871] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765982.155326] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765982.374447] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421765982.586056] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.67 ms +[1421765982.829667] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.0 ms +[1421765983.048699] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421765983.272257] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421765983.509907] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.4 ms +[1421765983.715247] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765983.920907] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765984.126640] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765984.332259] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765984.538056] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765984.744655] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421765984.951384] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765985.156786] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765985.361953] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765985.568657] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765985.774636] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765985.980471] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765986.185697] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765986.390891] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765986.596597] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765986.802257] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765987.007666] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421765987.213034] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765987.418080] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765987.623686] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765987.829227] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765988.034182] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765988.239202] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421765988.445895] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765988.651538] 1392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421765988.856726] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765989.062778] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421765989.268785] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765989.474888] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421765989.680060] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765989.886647] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421765990.091549] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765990.296841] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765990.502283] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765990.707638] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765990.912982] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765991.117802] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765991.324117] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765991.530324] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765991.736620] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421765991.941910] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765992.148218] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765992.354227] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765992.559859] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765992.765555] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765992.970668] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765993.177039] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421765993.383503] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765993.588283] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765993.793598] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765993.999226] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765994.204688] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765994.409756] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765994.616399] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765994.821804] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765995.026953] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765995.232113] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765995.437797] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765995.643591] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765995.849404] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765996.054500] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765996.259852] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765996.465392] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421765996.672560] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421765996.878083] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765997.083011] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765997.288693] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765997.495129] 1503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421765997.700403] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765997.905286] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765998.111275] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765998.317457] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765998.523126] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765998.729010] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765998.934758] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765999.141401] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765999.348407] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421765999.553961] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765999.760354] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421765999.968793] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.30 ms +[1421766000.201125] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.9 ms +[1421766000.416333] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421766000.633641] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421766000.902030] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=64.3 ms +[1421766001.129805] 841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421766001.359370] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421766001.587262] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421766001.809391] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421766002.030808] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421766002.237442] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766002.442831] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766002.649584] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766002.854869] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766003.059755] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766003.266759] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.01 ms +[1421766003.490740] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421766003.706019] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421766003.924813] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421766004.143393] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.1 ms +[1421766004.367858] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421766004.593180] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421766004.818605] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421766005.037094] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421766005.242368] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766005.448281] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421766005.653673] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766005.859297] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766006.065228] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421766006.270304] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766006.475495] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766006.681664] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766006.886631] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766007.092116] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766007.297396] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421766007.503110] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766007.708475] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766007.927112] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421766008.138234] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.16 ms +[1421766008.376855] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.9 ms +[1421766008.597755] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421766008.865627] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=63.7 ms +[1421766009.089948] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421766009.315851] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421766009.543700] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421766009.749573] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421766009.955242] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766010.162810] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.15 ms +[1421766010.372847] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.81 ms +[1421766010.587304] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.3 ms +[1421766010.830949] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.4 ms +[1421766011.052353] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421766011.273086] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421766011.495958] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421766011.722601] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421766011.949160] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421766012.154699] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766012.379458] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421766012.600402] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421766012.809396] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.60 ms +[1421766013.034210] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421766013.267272] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.9 ms +[1421766013.485465] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421766013.718622] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.3 ms +[1421766013.948093] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421766014.173871] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421766014.379145] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766014.584648] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766014.792802] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.77 ms +[1421766015.010506] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421766015.223785] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.64 ms +[1421766015.466517] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.1 ms +[1421766015.686062] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421766015.893580] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.21 ms +[1421766016.099493] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766016.304425] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766016.509669] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766016.715988] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421766016.921699] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766017.127740] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766017.333253] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766017.538931] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766017.744189] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766017.950479] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766018.157037] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766018.362203] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766018.568736] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421766018.774024] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766018.980375] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766019.187104] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766019.392279] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766019.597390] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766019.802881] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766020.008050] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766020.214016] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766020.420391] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766020.626644] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766020.832044] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766021.037246] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766021.242179] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766021.448397] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766021.654707] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421766021.860114] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766022.064960] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766022.271256] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766022.477634] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766022.682931] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766022.888565] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766023.093252] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766023.299325] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766023.506167] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766023.711735] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766023.916947] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766024.122257] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766024.327756] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766024.532881] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766024.738509] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766024.944750] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766025.150143] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766025.355347] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766025.560806] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766025.766175] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766025.971649] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766026.176767] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766026.383271] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766026.588792] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766026.795404] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421766027.000756] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766027.206099] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766027.412427] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766027.617356] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766027.823659] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766028.029728] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766028.235459] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766028.442426] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421766028.648163] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766028.853497] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766029.058454] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421766029.263976] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766029.469353] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766029.675919] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766029.882810] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766030.088410] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421766030.293482] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766030.499815] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421766030.705341] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766030.910115] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766031.114839] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766031.320254] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421766031.525594] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766031.731096] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766031.935990] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766032.141212] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766032.346575] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766032.552362] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766032.758140] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766032.964656] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766033.170028] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766033.375374] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766033.580858] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766033.787224] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766033.992123] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766034.197305] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766034.402600] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766034.609296] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766034.815164] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766035.020596] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766035.225724] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766035.431793] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766035.636819] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766035.842132] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766036.047328] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766036.252427] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766036.457707] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766036.662846] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766036.868021] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766037.073716] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766037.279422] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766037.484879] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766037.691217] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766037.896517] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766038.102706] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766038.308054] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766038.513436] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766038.718164] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766038.924658] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766039.131103] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766039.336712] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766039.542103] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766049.951693] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421766050.157555] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766050.362524] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766050.568443] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766050.774565] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766050.980017] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766051.185450] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766051.391765] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766051.598170] 1503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766051.803387] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766052.008349] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766052.213346] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766052.419797] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766052.625092] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766052.830609] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766053.035770] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766053.241769] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766053.447431] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421766053.653136] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766053.858818] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766054.064112] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766054.270239] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766054.475843] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766054.680990] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421766054.887260] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766055.092599] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766055.297690] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766055.502987] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766055.709523] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766055.916003] 1955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766056.121301] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766056.326613] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766056.532393] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766056.738492] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421766056.944408] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421766057.149537] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766057.355915] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766057.561301] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766057.766359] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766057.971931] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766058.177289] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766058.382849] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766058.587881] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766058.793404] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766058.998729] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766059.204130] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766059.409009] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766059.614200] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766059.819590] 30 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766060.025242] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766060.230609] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766060.436243] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766060.643193] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.79 ms +[1421766060.848846] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766061.054068] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766061.259008] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766061.557165] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=94.0 ms +[1421766062.037901] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=276 ms +[1421766062.243590] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766062.448714] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766062.653841] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766062.865151] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.15 ms +[1421766063.077564] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.72 ms +[1421766063.286582] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.21 ms +[1421766063.492209] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766063.702217] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.38 ms +[1421766063.960433] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=53.8 ms +[1421766064.166208] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766064.371735] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766064.577450] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766064.789557] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.80 ms +[1421766064.994957] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766065.200690] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766065.405963] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766065.611792] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421766065.818530] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421766066.023548] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766066.228802] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766066.434067] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766066.639325] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766066.845021] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766067.050011] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766067.255127] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766067.460732] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766067.666674] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421766067.872135] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766068.077038] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766068.282312] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766068.487139] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766068.691768] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766068.896615] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766069.101347] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766069.307509] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766069.513863] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766069.719313] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766069.924966] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.85 ms +[1421766070.130761] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421766070.335809] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766070.540743] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766070.745896] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766070.952104] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766071.157507] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766071.362875] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766071.568648] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766071.775422] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766071.981387] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766072.186990] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766072.392819] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766072.598055] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766072.804991] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766073.009742] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766073.214446] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766073.419722] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766073.625818] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766073.831052] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766074.035924] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766074.240954] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421766074.446207] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766074.664053] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421766074.869551] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766075.074552] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766075.280061] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421766075.486635] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766075.692047] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766075.897661] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766076.102606] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766076.307578] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766076.513464] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766076.719101] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766076.924942] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766077.130746] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421766077.336628] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766077.541937] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766077.748295] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766077.954512] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766078.161327] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766078.366772] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766078.572392] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766078.777991] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766078.983690] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766079.189181] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766079.394630] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766079.600717] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766079.806685] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766080.012056] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766080.218417] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766080.423805] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766080.629196] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766080.834648] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766081.039258] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766081.245149] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766081.450353] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766081.656687] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766081.862294] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421766082.066808] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766082.271794] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766082.477256] 1156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766082.682503] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766082.887740] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766083.092347] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766083.298588] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766083.504443] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766083.709915] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766083.916191] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766084.122420] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421766084.328317] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766084.534382] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766084.740981] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766084.947315] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766085.152938] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766085.358172] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766085.563991] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421766085.770665] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766085.976680] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766086.182906] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766086.388981] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766086.594512] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766086.799359] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766087.004308] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766087.210062] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766087.418173] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766087.624602] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766087.831059] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421766088.036630] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421766088.242088] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766088.447574] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766088.653967] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766088.859468] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421766089.064880] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421766089.270416] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766089.475915] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766089.682114] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766089.888184] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766090.093386] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766090.298436] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766090.504350] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421766090.710045] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766090.915478] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766091.120112] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766091.326229] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766091.531734] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766091.736855] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766091.942543] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.07 ms +[1421766092.148151] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421766092.353500] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421766092.558794] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766092.763896] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766092.968676] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766093.174135] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766093.378885] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766093.584276] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421766093.789476] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766093.995914] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766094.201198] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766094.406639] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766094.612692] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766094.819355] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421766095.025406] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766095.230398] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766095.436546] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421766095.642474] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766095.847793] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766096.053397] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766096.258094] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421766096.463726] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766096.670742] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766096.877257] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421766097.082406] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766097.288600] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766097.493670] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766097.699031] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766097.904321] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766098.110328] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766098.315686] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421766098.520900] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766098.726487] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766098.932569] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766099.137704] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766099.342826] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766099.547960] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766099.754150] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421766099.960145] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766100.165809] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766100.372455] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766100.578295] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766100.783764] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766100.989032] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766101.194585] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766101.399761] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766101.605052] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766101.810690] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766102.016085] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421766102.222249] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766102.428765] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766102.634936] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766102.841834] 1880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421766103.048164] 1888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766103.253502] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766103.459806] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766103.665041] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766103.870558] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766104.075536] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766104.280471] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766104.485888] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766104.691384] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766104.898024] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766105.102549] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766105.307348] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766105.512716] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766105.718524] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766105.924034] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766106.129368] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766106.334387] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766106.540144] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.88 ms +[1421766106.746638] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766106.952730] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766107.158764] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766107.364916] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766107.570215] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766107.776430] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766107.982224] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766108.187793] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766108.393303] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766108.599223] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766108.804635] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766109.009044] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766109.213967] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766109.420314] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766109.625194] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766109.831116] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421766110.035452] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766110.240552] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766110.445540] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766110.651376] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766110.857269] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421766111.062038] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766111.266684] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766111.471758] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766111.677211] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766111.883362] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766112.087878] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766112.293885] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766112.500075] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766112.705221] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766112.910274] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766113.114957] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766113.320137] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766113.526362] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766113.732859] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421766113.942637] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.47 ms +[1421766114.173673] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.9 ms +[1421766114.391578] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421766114.611701] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421766114.817742] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766115.023376] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766115.228422] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766115.447706] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.2 ms +[1421766115.659463] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.70 ms +[1421766115.905952] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.7 ms +[1421766116.123159] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421766116.395943] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=68.7 ms +[1421766116.621795] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421766116.909238] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.8 ms +[1421766117.140607] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.4 ms +[1421766117.367814] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421766117.589361] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421766117.795074] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766118.079146] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.9 ms +[1421766118.306313] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421766118.524255] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421766118.744416] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421766119.023982] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.4 ms +[1421766119.311077] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.2 ms +[1421766119.515981] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766119.720570] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766119.927283] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.99 ms +[1421766120.151427] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421766120.356492] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766120.561481] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766120.766615] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766120.972005] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766121.177723] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766121.384034] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766121.589778] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766121.796071] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766122.001367] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766122.206569] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766122.412642] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766122.619013] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766122.825784] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766123.030953] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766123.236896] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766123.441903] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766123.647076] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766123.851908] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766124.056662] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766124.262414] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421766124.467769] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766124.674626] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421766124.879775] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766125.084478] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766125.289069] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766125.494156] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766125.699657] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766125.904913] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766126.109599] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766126.315956] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421766126.521761] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421766126.727484] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766126.932945] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766127.138882] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766127.343540] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766127.549286] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766127.755691] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766127.960951] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766128.166511] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.87 ms +[1421766128.375264] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.84 ms +[1421766128.581466] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766128.787132] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766128.992118] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766129.197851] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421766129.402658] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766129.607564] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421766129.812968] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766130.018515] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766130.223785] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766130.428997] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766130.634333] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766130.840956] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421766131.046054] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766131.251649] 1330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766131.457278] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766131.662825] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766131.868362] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766132.074430] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421766132.279956] 1072 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766132.485726] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766132.692680] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766132.898295] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766133.104073] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421766133.309098] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766133.514676] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766133.719966] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766133.925155] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766134.130394] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766134.335747] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766134.541614] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766134.746639] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766134.952031] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421766135.158623] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766135.363643] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766135.568671] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766135.773974] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766135.979868] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766136.184984] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766136.390240] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766136.595326] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766136.800833] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421766137.006439] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766137.212140] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766137.418687] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766137.624244] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766137.830360] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766138.035776] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766138.240781] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766138.447076] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766138.651944] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766138.857380] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766139.063814] 1612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421766139.268767] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766139.473811] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766139.679436] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766139.885019] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766140.089792] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766140.295161] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766140.500968] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766140.705890] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766140.910938] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766141.116925] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766141.322074] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.01 ms +[1421766141.528018] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421766141.733660] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766141.940516] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766142.145705] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766142.350879] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766142.556696] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766142.762655] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766142.968997] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421766143.174618] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766143.380797] 1888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766143.586030] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766143.792248] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421766143.997986] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766144.204540] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766144.410838] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766144.616250] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766144.821538] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766145.026464] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766145.231818] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766145.437350] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766145.643773] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766145.850800] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766146.056363] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766146.261933] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766146.467639] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766146.673177] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766146.879677] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766147.084341] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766147.289340] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766147.494782] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766147.700551] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766147.906565] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421766148.111905] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766148.317955] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766148.524303] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766148.729663] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766148.935420] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766149.141639] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766149.347112] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766149.552565] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766149.757634] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766149.964104] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421766150.170527] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766150.376778] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766150.583214] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766150.789379] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766150.995911] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766151.202652] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766151.407557] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766151.612663] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766151.817836] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766152.022720] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766152.229119] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766152.436128] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421766152.642196] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766152.849566] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.77 ms +[1421766153.055382] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766153.261859] 1720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421766153.468361] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766153.673779] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766153.879324] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766154.084486] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766154.289658] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766154.495960] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766154.701432] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766154.907046] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766155.112375] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766155.318573] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766155.525182] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421766155.731921] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421766155.937759] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766156.143161] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766156.348563] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766156.554287] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766156.760028] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766156.965278] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766157.170421] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766157.376095] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766157.581102] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766157.786436] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766157.991269] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766158.196159] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766158.401555] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766158.608093] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766158.813641] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766159.019013] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766159.224268] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766159.430201] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766159.635485] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766159.841900] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766160.046437] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766160.251597] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766160.458162] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766160.664578] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766160.870776] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766161.075280] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766161.279893] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766161.485179] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766161.691656] 1716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766161.897483] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766162.102370] 161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766162.307800] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766162.513469] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766162.719916] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766162.926958] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766163.132705] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766163.338144] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766163.544852] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766163.750711] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766163.956946] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766164.162749] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766164.367876] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766164.572829] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766164.778056] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766164.983326] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766165.188252] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766165.394308] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421766165.600562] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766165.805627] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766166.010546] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766166.215501] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766166.420488] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766166.626063] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766166.832088] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421766167.037706] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766167.243126] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766167.449201] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766167.654797] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766167.861749] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.99 ms +[1421766168.072108] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.57 ms +[1421766168.285031] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.28 ms +[1421766168.500417] 1392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421766168.721938] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421766168.992180] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=66.1 ms +[1421766169.220819] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421766169.446600] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421766169.730142] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.9 ms +[1421766169.957181] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421766170.182315] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421766170.408263] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421766170.690282] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.4 ms +[1421766170.918261] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421766171.140178] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421766171.345554] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766171.550973] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766171.765578] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421766171.976304] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.21 ms +[1421766172.211394] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.0 ms +[1421766172.427835] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421766172.690750] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=58.6 ms +[1421766172.915391] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421766173.141694] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766173.427947] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.1 ms +[1421766173.711037] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.9 ms +[1421766173.937951] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421766174.162293] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421766174.390077] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421766174.615455] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421766174.839409] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421766175.066202] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421766175.294486] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421766175.522208] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421766175.745656] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421766175.952019] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421766176.157524] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766176.366002] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.14 ms +[1421766176.594514] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421766176.807091] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.12 ms +[1421766177.024180] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421766177.242018] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421766177.511058] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=64.8 ms +[1421766177.791572] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.0 ms +[1421766178.013469] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421766178.238228] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421766178.463564] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421766178.689554] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421766178.894846] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766179.121315] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421766179.404787] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.4 ms +[1421766179.633619] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421766179.864764] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.1 ms +[1421766180.088629] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421766180.294099] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766180.499396] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766180.704795] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766180.910666] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766181.115660] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766181.321841] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421766181.527231] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766181.732236] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766181.937782] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766182.146511] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.63 ms +[1421766182.357524] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.94 ms +[1421766182.572945] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421766182.789498] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421766183.009300] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421766183.236302] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421766183.521667] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.2 ms +[1421766183.745342] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421766184.019300] 1880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.0 ms +[1421766184.225352] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766184.430294] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766184.635712] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766184.841305] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766185.046878] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766185.252436] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766185.458816] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766185.664003] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766185.869298] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766186.075067] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766186.280042] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766186.485569] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766186.691160] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766186.897404] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766187.102344] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766187.309040] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421766187.514995] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766187.720908] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421766187.926773] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766188.132548] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766188.338239] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766188.543985] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766188.761244] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421766188.973137] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.76 ms +[1421766189.214974] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.0 ms +[1421766189.431658] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421766189.650695] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421766189.872384] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.7 ms +[1421766190.077019] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766190.282148] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766190.488157] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766190.697255] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.29 ms +[1421766190.909125] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.90 ms +[1421766191.124219] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421766191.339379] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421766191.562163] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421766191.844064] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.6 ms +[1421766192.064633] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421766192.349490] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.5 ms +[1421766192.573266] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421766192.797866] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421766193.027566] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.4 ms +[1421766193.249029] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421766193.475423] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421766193.695291] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421766193.928464] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.7 ms +[1421766194.152863] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421766194.434587] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.7 ms +[1421766194.640393] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766194.847055] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421766195.052959] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766195.260588] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.90 ms +[1421766195.472343] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.93 ms +[1421766195.696207] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421766195.907821] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.35 ms +[1421766196.125224] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421766196.391635] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.4 ms +[1421766196.668516] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.5 ms +[1421766196.957691] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.9 ms +[1421766197.240388] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.5 ms +[1421766197.469687] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.2 ms +[1421766197.695690] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421766197.917160] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421766198.146223] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421766198.351867] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766198.557568] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766198.762573] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766198.968281] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766199.173337] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766199.379474] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766199.585187] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766199.792460] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.10 ms +[1421766200.019269] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421766200.234618] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421766200.441124] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766200.646521] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766200.851976] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766201.057727] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766201.263151] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766201.468525] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766201.674842] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766201.881014] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766202.085995] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766202.291207] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766202.497593] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766202.703620] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421766202.909509] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421766203.114817] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766203.320943] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766203.526257] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766203.731656] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766203.936886] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766204.142495] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766204.347679] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766204.552691] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766204.757609] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766204.964318] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421766205.169684] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766205.375128] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766205.580802] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766205.786494] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766205.991570] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766206.197924] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766206.404137] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766206.609792] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766206.815334] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766207.021548] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766207.226342] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766207.432751] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766207.638161] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766207.844835] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766208.049219] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766208.254424] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766208.459423] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766208.664054] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766208.869436] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766209.074502] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766209.279822] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766209.485249] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766209.690694] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766209.896488] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766210.101445] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766210.307040] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766210.512704] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766210.718610] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766210.925720] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766211.132274] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766211.338116] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766211.543925] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766211.749511] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766211.955362] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766212.161622] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766212.368249] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421766212.575041] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421766212.780454] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766212.987638] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.95 ms +[1421766213.193895] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421766213.399036] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421766213.604257] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766213.810851] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421766214.016258] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421766214.221573] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766214.426967] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766214.632022] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766214.836942] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766215.042598] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766215.248864] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766215.454746] 1529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766215.659688] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766215.864829] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766216.070500] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766216.276712] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766216.483123] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766216.689126] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766216.894364] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766217.099235] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766217.304646] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766217.511116] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766217.716478] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766217.921687] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766218.128133] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766218.334384] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766218.541054] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766218.747661] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766218.953125] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766219.158541] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766219.363898] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766219.569466] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766219.783102] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.16 ms +[1421766219.988960] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421766220.193902] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766220.399643] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766220.604604] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766220.810704] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766221.016519] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766221.221697] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766221.426999] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766221.632585] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766221.838079] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766222.043321] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766222.248542] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766222.454052] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766222.659757] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766222.865006] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766223.069985] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766223.274822] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766223.479879] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766223.684811] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766223.890176] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766224.094799] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766224.300422] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766224.506082] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766224.711881] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766224.917163] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766225.122375] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766225.327672] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766225.534256] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766225.739587] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766225.944794] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766226.150121] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766226.356378] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766226.561664] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766226.767086] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766226.973470] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766227.179107] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766227.384807] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766227.590589] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766227.795929] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766228.001082] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766228.207370] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766228.412735] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766228.618351] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766239.027333] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766239.232381] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766239.437842] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766239.643446] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766239.850005] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421766240.054533] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766240.259643] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766240.466175] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766240.672372] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766240.877951] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766241.083126] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766241.288754] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766241.494140] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766241.699412] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766241.904849] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766242.110736] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766242.315984] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766242.522462] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766242.728153] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766242.933565] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766243.139133] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766243.344641] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766243.551201] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766243.757542] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766243.962857] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766244.167629] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766244.397994] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.1 ms +[1421766244.603395] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766244.809946] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766245.014456] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766245.219471] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766245.424903] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766245.631382] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766245.836721] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766246.041743] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766246.246918] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766246.452921] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766246.657809] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766246.863545] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766247.069644] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766247.275802] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766247.481500] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766247.688502] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766247.894286] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421766248.098801] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766248.304594] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766248.510957] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421766248.716942] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766248.923991] 1716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421766249.129654] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766249.336148] 1541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766249.541542] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766249.746852] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766249.951977] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766250.156927] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766250.372276] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421766250.577831] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766250.783128] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766250.988386] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766251.198040] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.45 ms +[1421766251.403413] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766251.608793] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766251.815514] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766252.021646] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766252.226806] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766252.431608] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766252.636618] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766252.841987] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766253.047428] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766253.252612] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766253.458407] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766253.664963] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766253.870072] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766254.075007] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766254.281204] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766254.488085] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766254.694885] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421766254.900661] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766255.105664] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766255.311183] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766255.516707] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766255.722468] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766255.928044] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766256.132974] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766256.337660] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766256.542713] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766256.747700] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766256.953930] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766257.159293] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766257.364823] 1410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421766257.570267] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766257.775544] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766257.980518] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766258.185261] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766258.390290] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766258.595052] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421766258.799764] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766259.004227] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766259.210686] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766259.417371] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766259.622708] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766259.828965] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421766260.034007] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766260.239102] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766260.444383] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766260.649782] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766260.855179] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766261.059794] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766261.265030] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766261.470167] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766261.679638] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766261.885357] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766262.090305] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766262.295416] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766262.501818] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766262.707745] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766262.913521] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766263.118170] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766263.323115] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766263.528759] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766263.734604] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766263.940124] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766264.145227] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766264.350427] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766264.555803] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766264.761951] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421766264.968879] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421766265.177538] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.58 ms +[1421766265.388108] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.73 ms +[1421766265.602555] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.3 ms +[1421766265.816796] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.77 ms +[1421766266.036115] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421766266.258171] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421766266.539551] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.7 ms +[1421766266.755950] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421766267.037164] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.9 ms +[1421766267.320153] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.2 ms +[1421766267.609360] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.6 ms +[1421766267.831375] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421766268.055980] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421766268.283955] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421766268.508336] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421766268.738385] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421766268.964340] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421766269.169557] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766269.376130] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766269.581881] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766269.787364] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766269.996172] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.91 ms +[1421766270.210538] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.99 ms +[1421766270.415715] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766270.621171] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766270.826253] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766271.031420] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766271.236964] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421766271.442477] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766271.647704] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766271.853240] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766272.058390] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766272.264575] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766272.471208] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766272.676617] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766272.882171] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766273.087203] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766273.292925] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421766273.498368] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766273.704094] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766273.910286] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766274.116820] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421766274.322241] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766274.528911] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766274.735133] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766274.940013] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766275.145220] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766275.350405] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766275.556720] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766275.761841] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766275.967647] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421766276.172568] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766276.377958] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766276.583419] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766276.788113] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766276.993515] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766277.200284] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766277.406679] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766277.612252] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766277.817941] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766278.022815] 296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766278.227813] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766278.434313] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766278.639765] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766278.845219] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766279.050056] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766279.255510] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766279.460709] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766279.666667] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766279.872680] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421766280.077614] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766280.282565] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766280.487926] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766280.692905] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766280.898183] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766281.103576] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766281.309108] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766281.514166] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766281.719315] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766281.925223] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766282.130452] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766282.335958] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766282.540896] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766282.745748] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766282.950692] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766283.156006] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766283.361084] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766283.566435] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766283.771493] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766283.976749] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766284.181766] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766284.387091] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766284.592346] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766284.797189] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766285.003075] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766285.209471] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766285.415977] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766285.622652] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766285.828375] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766286.034478] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766286.239885] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766286.446119] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766286.652588] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766286.858151] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766287.064100] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766287.269331] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766287.475349] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766287.680331] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766287.886535] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766288.091076] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766288.296185] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766288.501116] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766288.707528] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766288.912763] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766289.117467] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766289.322771] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766289.527874] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766289.732919] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766289.938126] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766290.143227] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766290.348635] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766290.554687] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766290.760340] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766290.967086] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766291.172428] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766291.377548] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766291.582762] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766291.789120] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766291.995342] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766292.200727] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766292.405932] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766292.611072] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766292.816625] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766293.021595] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766293.226883] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766293.433356] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421766293.639457] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766293.845964] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766294.051102] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766294.257134] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766294.462260] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766294.667638] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766294.873309] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766295.078357] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766295.283545] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766295.489225] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766295.696246] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766295.902023] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766296.107101] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766296.312624] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766296.518153] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766296.723301] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766296.928785] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766297.134332] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766297.339372] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766297.544423] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766297.749515] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766297.955396] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766298.161224] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766298.367052] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421766298.572989] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766298.778805] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766298.984136] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766299.189351] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766299.394900] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421766299.601594] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766299.806536] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766300.011526] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421766300.216926] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766300.422302] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766300.628768] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421766300.834495] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766301.039494] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766301.245413] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766301.451113] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766301.657903] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766301.863954] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421766302.070160] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766302.274709] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766302.480097] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766302.684570] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766302.889940] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766303.095230] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766303.300229] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766303.505508] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766303.710690] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766303.915583] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766304.120321] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766304.329863] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766304.535680] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766304.741356] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421766304.948175] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766305.153856] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766305.359166] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766305.564517] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766305.770316] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766305.976016] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766306.182769] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421766306.388038] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766306.593282] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766306.798363] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766307.004608] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766307.210845] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766307.416628] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766307.621629] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766307.826500] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766308.031327] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766308.236315] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766308.441798] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421766308.647930] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421766308.854025] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421766309.059015] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766309.264021] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766309.469854] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766309.675320] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766309.881500] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766310.086571] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766310.292128] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766310.497533] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766310.703903] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766310.910230] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766311.115231] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766311.320347] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766311.525645] 1392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766311.731627] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766311.936989] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766312.141594] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766312.347070] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766312.552826] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766312.758707] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766312.964298] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766313.169475] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766313.375938] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766313.581690] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766313.788563] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766313.994525] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766314.199112] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766314.405421] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766314.610831] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766314.816080] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766315.022157] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766315.227292] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766315.433043] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766315.638363] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766315.844072] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766316.050573] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.69 ms +[1421766316.255530] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766316.461155] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766316.667359] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766316.873864] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766317.079962] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766317.285957] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766317.491150] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766317.697145] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766317.902526] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766318.107232] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766318.312574] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766318.518255] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766318.724077] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766318.930480] 1410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766319.135859] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766319.342059] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766319.547511] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766319.753300] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766319.958974] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766320.164632] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766320.370203] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766320.575672] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766320.780873] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766320.986073] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766321.191863] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766321.398452] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766321.605404] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766321.811339] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766322.016358] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766322.221008] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766322.427388] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766322.632832] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766322.838142] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766323.044134] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766323.249149] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421766323.454256] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766323.660089] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766323.866855] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766324.071922] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766324.277134] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766324.482674] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766324.688154] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766324.893488] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766325.098668] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766325.304825] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766325.511050] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766325.717714] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766325.923184] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766326.128466] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766326.333418] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766326.538385] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766326.744094] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766326.950281] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766327.155663] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766327.360764] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766327.566469] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766327.773453] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421766327.980017] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766328.185286] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766328.390899] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766328.596418] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766328.801941] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766329.006774] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766329.211633] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766329.417932] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766329.623506] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766329.828818] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766330.033760] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766330.238831] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766330.445404] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766330.650736] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766330.856212] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766331.061986] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766331.267899] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421766331.473946] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766331.679621] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766331.885946] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766332.091766] 1541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421766332.298900] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.25 ms +[1421766332.504289] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766332.709237] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766332.914938] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766333.119926] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766333.326627] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766333.532507] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766333.737921] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766333.944680] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.12 ms +[1421766334.151441] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766334.356704] 1021 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766334.561717] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766334.770837] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.03 ms +[1421766334.977249] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766335.183161] 1392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766335.388329] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766335.594197] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766335.800141] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766336.006151] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766336.211245] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766336.416441] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766336.622891] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766336.829409] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766337.034017] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766337.239315] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766337.444802] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766337.649915] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766337.855423] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766338.061317] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766338.266684] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766338.472194] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766338.677519] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766338.883147] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766339.089338] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766339.294628] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766339.499849] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766339.705565] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421766339.911842] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766340.117176] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766340.322205] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766340.528796] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766340.733858] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766340.939966] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421766341.145220] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766341.350173] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766341.555432] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766341.760592] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766341.993208] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.5 ms +[1421766342.199710] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421766342.405085] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766342.610544] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766342.815413] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766343.020360] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766343.225322] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766343.430190] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766343.635189] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766343.840367] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766344.045446] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766344.250552] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766344.455654] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766344.662167] 1670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766344.867309] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766345.072130] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766345.277168] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766345.482324] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766345.688450] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766345.893601] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766346.098628] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766346.304039] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766346.509400] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766346.714817] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766346.921677] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766347.127100] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766347.332100] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766347.538615] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766347.745476] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766347.951494] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421766348.157375] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766348.363524] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766348.569263] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766348.774903] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766348.980022] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766349.186096] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766349.391230] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766349.596436] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766349.802176] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766350.007045] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766350.212705] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766350.418593] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766350.624037] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766350.829000] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766351.034046] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766351.239735] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766351.445781] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766351.651674] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766351.856626] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766352.061277] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766352.266135] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766352.472287] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766352.678319] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766352.883396] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766353.089635] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766353.294615] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766353.500026] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766353.706429] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766353.911355] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766354.116337] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766354.322106] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766354.527773] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766354.733723] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766354.939251] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766355.144696] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766355.350713] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766355.555761] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766355.760963] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766355.966160] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766356.172291] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766356.377659] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766356.583154] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766356.789555] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766356.995008] 814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766357.201649] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766357.406654] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766357.611607] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766357.817419] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421766358.023431] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766358.228497] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766358.434722] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421766358.640318] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.87 ms +[1421766358.845220] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766359.050115] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766359.255371] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766359.461233] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766359.668137] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766359.874329] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766360.079223] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766360.288385] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.12 ms +[1421766360.499503] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.75 ms +[1421766360.713772] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.91 ms +[1421766360.964080] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.2 ms +[1421766361.185756] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421766361.409916] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421766361.630017] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421766361.862315] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.3 ms +[1421766362.087622] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421766362.308814] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421766362.534768] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421766362.764793] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421766362.992563] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421766363.218291] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421766363.440279] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421766363.645661] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766363.851275] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766364.057468] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766364.264192] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766364.469783] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766364.674770] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766364.881386] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766365.087446] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766365.293959] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421766365.504687] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.42 ms +[1421766365.720471] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421766365.940122] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.2 ms +[1421766366.205993] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=61.5 ms +[1421766366.427143] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421766366.652846] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421766366.875595] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421766367.103129] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421766367.331921] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421766367.555457] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421766367.783006] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421766368.008705] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421766368.231204] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421766368.458250] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421766368.688123] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421766368.915777] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421766369.137660] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421766369.344100] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766369.549498] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766369.755483] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766369.961191] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766370.166418] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766370.371945] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421766370.577622] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766370.782747] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766370.988093] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766371.193137] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766371.398725] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766371.605221] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766371.810926] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766372.016243] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766372.221407] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766372.426823] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766372.632108] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766372.837686] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766373.042416] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766373.247883] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766373.454078] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766373.659911] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766373.865525] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766374.071504] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766374.276605] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766374.481851] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766374.687314] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766374.894038] 1955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766375.098810] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766375.304347] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766375.511398] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766375.717357] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766375.923746] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766376.129224] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766376.335248] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421766376.541514] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766376.746705] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766376.951810] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766377.158012] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766377.363559] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766377.568982] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766377.774601] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766377.980871] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766378.186733] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766378.392381] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766378.597494] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766378.803101] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766379.007763] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766379.213712] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766379.419205] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766379.624515] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766379.829981] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766380.035176] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421766380.240471] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766380.445781] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766380.651267] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766380.857054] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421766381.062190] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421766381.268095] 1897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766381.473474] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766381.680058] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766381.885459] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766382.090290] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766382.295489] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766382.500826] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766382.707161] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766382.912534] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766383.118094] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766383.323617] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766383.529254] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766383.734797] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766383.940227] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766384.145132] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766384.351677] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766384.557333] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766384.763816] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766384.969412] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766385.174717] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766385.384285] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.58 ms +[1421766385.596638] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766385.815335] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421766386.069561] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=49.9 ms +[1421766386.291702] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421766386.512794] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421766386.737974] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421766387.021979] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.8 ms +[1421766387.248856] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421766387.532386] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.7 ms +[1421766387.756344] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421766387.982311] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421766388.207099] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421766388.437689] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.2 ms +[1421766388.662154] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421766388.889733] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421766389.115700] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421766389.322175] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766389.527695] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766389.733594] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421766389.941246] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.26 ms +[1421766390.146490] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766390.351823] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766390.558125] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421766390.771853] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.61 ms +[1421766390.980629] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.35 ms +[1421766391.190706] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.05 ms +[1421766391.403732] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.23 ms +[1421766391.618190] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421766391.834906] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421766392.058533] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421766392.311537] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.9 ms +[1421766392.537856] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421766392.743437] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766392.950162] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766393.155418] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766393.361300] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766393.566202] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766393.772463] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766393.977928] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766394.184182] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.98 ms +[1421766394.394396] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.34 ms +[1421766394.606345] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.84 ms +[1421766394.819453] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.99 ms +[1421766395.079160] 1503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.2 ms +[1421766395.350760] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=67.2 ms +[1421766395.575169] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421766395.801921] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421766396.047194] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=41.3 ms +[1421766396.252509] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766396.461894] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.47 ms +[1421766396.680108] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421766396.913756] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.4 ms +[1421766397.127024] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766397.344131] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421766397.566944] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421766397.790544] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421766398.013065] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421766398.218694] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766398.434655] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.7 ms +[1421766398.641231] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766398.847523] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766399.052400] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766399.257195] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766399.462385] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766399.667633] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766399.873134] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766400.079763] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421766400.285190] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766400.490344] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766400.695583] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766400.901361] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766401.106241] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766401.311486] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766401.517079] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766401.722241] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766401.927508] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766402.132971] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766402.338507] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766402.544816] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766402.750154] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766402.956562] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766403.161821] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766403.379613] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421766403.613463] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.6 ms +[1421766403.833002] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421766404.053373] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421766404.313901] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.5 ms +[1421766404.537479] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421766404.767450] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421766404.997118] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421766405.224134] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421766405.451368] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421766405.657824] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766405.864382] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766406.068969] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766406.275695] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.92 ms +[1421766406.487144] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.23 ms +[1421766406.726397] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.9 ms +[1421766406.932514] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766407.137923] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766407.343172] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766407.548298] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766407.754082] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766407.959159] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766408.163972] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766408.369340] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766408.574775] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766408.780033] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766408.985611] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766409.191113] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766409.397299] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766409.602998] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766409.808695] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766410.013782] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766410.218879] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766410.423764] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766410.628959] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766410.834872] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766411.039943] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766411.246520] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421766411.453264] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766411.658920] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421766411.864307] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766412.069542] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766412.274898] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766412.480218] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766412.685446] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766412.890565] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766413.095454] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766413.302488] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.16 ms +[1421766413.507659] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766413.713579] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766413.918935] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766414.124095] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766414.330666] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766414.536335] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766414.758435] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421766414.965147] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766415.170785] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766415.375792] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.03 ms +[1421766415.581509] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766415.787126] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766415.992767] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766416.197983] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766416.403417] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766416.610106] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421766416.815864] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766417.020872] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766417.225693] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766417.442001] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421766417.647438] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766417.852825] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766418.057673] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766418.262797] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766418.467956] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766418.674293] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421766418.880347] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.93 ms +[1421766419.085254] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766419.290322] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766419.495565] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766419.701641] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766419.907055] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766420.112079] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766420.317534] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.87 ms +[1421766420.522424] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766420.728366] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766420.933418] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766421.138399] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766421.343412] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766421.549758] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766421.755333] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766421.960783] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766422.166060] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766422.371898] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766422.578359] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421766422.783689] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766422.989185] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766423.194442] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766423.399994] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766423.605695] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421766423.810909] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766424.015612] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766424.221515] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766424.427507] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421766424.633859] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766424.840127] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766425.046429] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766425.251684] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766425.458529] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766425.665188] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766425.871032] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766426.077004] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766426.282028] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766426.487427] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766426.694038] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766426.899416] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766427.104129] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766427.308872] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766427.513861] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766427.719035] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766427.924939] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421766428.130332] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766428.335690] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766428.541623] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766428.747017] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766428.952205] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766429.157296] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766429.364086] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421766429.570999] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.69 ms +[1421766429.776871] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766429.982565] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766430.189499] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421766430.395544] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421766430.601219] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766430.806557] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766431.011873] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421766431.216854] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766431.422365] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766431.627272] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766431.833439] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766432.039276] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766432.245538] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766432.452285] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766432.657762] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766432.862992] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766433.068116] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766433.273194] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766433.478881] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766433.683867] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766433.890326] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766434.095322] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766434.301268] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766434.507639] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766434.712931] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766434.919452] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766435.124981] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766435.330211] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766435.535683] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766435.741229] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766435.948103] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766436.153756] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766436.359778] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421766436.565236] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766436.770513] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766436.976138] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766437.181417] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766437.386940] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766437.592501] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766437.804623] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.78 ms +[1421766438.011351] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766438.217147] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766438.422856] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766438.629910] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766438.835391] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766439.040754] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766439.245758] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766439.451534] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766439.658597] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766439.864513] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421766440.069643] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766440.275595] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766440.481431] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.90 ms +[1421766440.687874] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766440.893383] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766441.098051] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766441.303161] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766441.509547] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766441.715932] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766441.922201] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766442.127185] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766442.332303] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766442.537539] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766442.743193] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766442.948989] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766443.154751] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766443.360293] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766443.565577] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766443.771805] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766443.977346] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766444.183211] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766444.389876] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766444.595667] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766444.801225] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766445.006570] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766445.212039] 1049 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766445.417599] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766445.623048] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766445.828482] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766446.033242] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766446.238525] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766446.443809] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766446.649034] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766446.854496] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766447.059777] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766447.264400] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421766447.469268] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766447.674275] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766447.880199] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766448.085508] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766448.290714] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766448.495749] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766448.701479] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766448.906768] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766449.113187] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766449.318334] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766449.524743] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766449.731389] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766449.937882] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766450.143330] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766450.349652] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766450.555951] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766450.761218] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766450.966476] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766451.172025] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766451.377077] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766451.583931] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421766451.789517] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766451.994577] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766452.200257] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766452.406674] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766452.612428] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421766452.818808] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421766453.024215] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421766453.229209] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766453.434121] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766453.640663] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766453.847363] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766454.052214] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766454.257369] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766454.463098] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766454.668980] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766454.874361] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421766455.079575] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766455.285249] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766455.490918] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766455.697747] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421766455.903475] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766456.109929] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421766456.315129] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766456.520317] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766456.726303] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421766456.931476] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766457.136496] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766457.341597] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766457.547735] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766457.753197] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766457.958588] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766458.164112] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766458.369642] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766458.576007] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421766458.781347] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766458.986657] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766459.191295] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766459.396946] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766459.603706] 1897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766459.809426] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766460.015151] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766460.222211] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421766460.428356] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766460.634999] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421766460.840630] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766461.046155] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766461.251285] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766461.456534] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766461.662208] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766461.868127] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766462.072947] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766462.278431] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766462.483668] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766462.689595] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766462.894663] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766463.100632] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766463.305773] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766463.511579] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766463.717923] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.87 ms +[1421766463.923272] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766464.128545] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766464.334978] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766464.540735] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766464.746509] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766464.952259] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766465.157905] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766465.363334] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766465.569054] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766465.774433] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766465.980866] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766466.186354] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766466.392884] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766466.599591] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766466.805215] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766467.011373] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766467.216561] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421766467.421778] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766467.627151] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766467.832563] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766468.037269] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766468.242314] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766468.449452] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766468.654903] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766468.860134] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766469.065419] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766469.270342] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766469.476756] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766469.682089] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766469.888626] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766470.094988] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421766470.301219] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766470.507733] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766470.713158] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766470.918477] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766471.123447] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766471.328572] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766471.534784] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766471.740373] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766471.945719] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766472.154355] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766472.359313] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766472.564868] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766472.770607] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766472.976090] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766473.180922] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766473.385872] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766473.591340] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421766473.797220] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766474.002819] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766474.207945] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766474.413856] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766474.619780] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766474.826583] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766475.032661] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766475.237495] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766475.442475] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766475.648492] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766475.853977] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766476.059431] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766476.264677] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766476.469649] 841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766476.675084] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766476.880662] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766477.085498] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766477.291941] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421766477.497843] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766477.704207] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766477.909697] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766478.114802] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766478.320276] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766478.525415] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766478.730932] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766478.936560] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766479.142681] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421766479.348084] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766479.553167] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766479.758250] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766479.964662] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766480.170781] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766480.376072] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766480.582285] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421766480.787689] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766480.993113] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766481.199941] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766481.405265] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766481.611876] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766481.817041] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766482.022804] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766482.227873] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766482.433733] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766482.638900] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766482.844731] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766483.050798] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766483.255825] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766483.461099] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766483.666190] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766483.871146] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766484.076912] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766484.283214] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766484.489305] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421766484.694306] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766484.899635] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766485.104998] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766485.311287] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766485.516896] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766485.722699] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766485.929246] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766486.135539] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766486.341733] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766486.547655] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766486.753338] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766486.958927] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766487.164108] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766487.369624] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766487.574804] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766487.780640] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421766487.987063] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766488.193594] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766488.398942] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766488.604370] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766488.809511] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766489.014447] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766489.220716] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766489.426034] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766489.631443] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766489.836734] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766490.041785] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766490.247185] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421766490.452083] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421766490.657288] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766490.863333] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766491.068446] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766491.273763] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766491.478936] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766491.683885] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766491.888818] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766492.093957] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766492.300166] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766492.506584] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766492.711937] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766492.916916] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766493.121565] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766493.326944] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766493.533429] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766493.738760] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766493.944875] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766494.150226] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766494.355681] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766494.561721] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766494.766911] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766494.972112] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766495.177006] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766495.381955] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766495.588543] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766495.794886] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766495.999802] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766496.205359] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766496.410394] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766496.615731] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766496.820364] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766497.026008] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766497.231357] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766497.436695] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766497.642560] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421766497.847508] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766498.052553] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766498.257790] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766498.463037] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766498.668331] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766498.873752] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766499.080246] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766499.286662] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766499.491899] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766499.698184] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421766499.903381] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766500.108273] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766500.313479] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766500.519144] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766500.724381] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766500.929566] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766501.135097] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766501.340172] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766501.545098] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766501.750019] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766501.954735] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766502.160102] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766502.365825] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766502.571299] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766502.776457] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766502.981490] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766503.186949] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766513.596068] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766513.801164] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766514.006114] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766514.212318] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766514.417252] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766514.622823] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766514.828473] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766515.034281] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421766515.239120] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766515.446381] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.27 ms +[1421766515.653170] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421766515.859243] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766516.064187] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766516.269437] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766516.475400] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766516.682369] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421766516.887679] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766517.092600] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766517.297899] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766517.502945] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766517.707931] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766517.913412] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766518.118918] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766518.323868] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766518.530322] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766518.736616] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766518.942256] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766519.148716] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766519.353957] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766519.563335] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.03 ms +[1421766519.773076] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.45 ms +[1421766520.014429] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=37.5 ms +[1421766520.233228] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421766520.458421] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766520.677003] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421766520.962515] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.7 ms +[1421766521.183419] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421766521.396327] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.39 ms +[1421766521.624347] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421766521.850907] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421766522.073818] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421766522.301645] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421766522.506554] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766522.711758] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766522.919303] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.40 ms +[1421766523.127576] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.10 ms +[1421766523.333111] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766523.538664] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766523.744425] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766523.949550] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766524.154795] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766524.361012] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766524.566261] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766524.771684] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766524.976834] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766525.181966] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766525.386714] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766525.591477] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766525.797002] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766526.003137] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766526.208491] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766526.413340] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766526.618387] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766526.823259] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766527.027892] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766527.233093] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766527.438404] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766527.643507] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766527.849179] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766528.055150] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766528.259954] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766528.464778] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766528.670928] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766528.876238] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766529.081085] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766529.285894] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766529.492131] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766529.700820] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766529.905723] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766530.111032] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421766530.316333] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766530.521511] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766530.727119] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766530.932213] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766531.137517] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766531.342573] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766531.548739] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766531.753627] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766531.959226] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766532.164654] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766532.370228] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766532.576424] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766532.782549] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766532.988303] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766533.193372] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766533.398231] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766533.604102] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766533.809225] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766534.014567] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766534.220201] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766534.425129] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766534.630488] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766534.836256] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766535.041734] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421766535.246751] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766535.452368] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766535.657811] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766535.863335] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766536.068546] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766536.274548] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766536.479681] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766536.685776] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766536.891140] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766537.096462] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766537.302653] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766537.507796] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766537.712742] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766537.918376] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766538.123799] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766538.330767] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421766538.536519] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766538.742308] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766538.948453] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766539.153790] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766539.359730] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421766539.566670] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421766539.772665] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766539.978243] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766540.183782] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766540.388884] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766540.594463] 1133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421766540.800018] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766541.004907] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766541.211208] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766541.416176] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766541.621658] 1261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766541.827914] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766542.032923] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766542.237978] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766542.443920] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421766542.649117] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766542.854719] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766543.060034] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766543.265528] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421766543.471828] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766543.677547] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766543.883032] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766544.088775] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766544.294330] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766544.499934] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766544.705586] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766544.911163] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766545.116950] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766545.322197] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766545.528007] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766545.734728] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766545.939633] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766546.145210] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766546.351293] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766546.556859] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766546.762232] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766546.967564] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766547.172775] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766547.378894] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766547.583976] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766547.790244] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421766547.995368] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766548.201542] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766548.406724] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766548.612447] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766548.818185] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766549.022663] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766549.227797] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766549.433028] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766549.637549] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766549.842261] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766550.048483] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421766550.254229] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766550.459303] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766550.665440] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766550.874142] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.25 ms +[1421766551.085271] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.41 ms +[1421766551.300389] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421766551.513814] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.38 ms +[1421766551.719643] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766551.924997] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766552.130599] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766552.336049] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766552.541667] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766552.747428] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766552.953302] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766553.158886] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766553.364309] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766553.569272] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766553.774458] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766553.980857] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766554.186493] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766554.392959] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421766554.598697] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766554.804343] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766555.009305] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766555.214676] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766555.420160] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766555.625219] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766555.830991] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766556.036922] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421766556.242180] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766556.448411] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766556.653965] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766556.859248] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766557.065489] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421766557.270838] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766557.475934] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766557.681139] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766557.887656] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766558.093623] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766558.298717] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766558.504048] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766558.710434] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766558.917034] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766559.122522] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766559.327898] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766559.533680] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766559.739436] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766559.945085] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766560.151000] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766560.357213] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421766560.562911] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766560.768769] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766560.974059] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766561.179197] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766561.384623] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766561.590829] 1870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766561.796132] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766562.001372] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766562.206755] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766562.412710] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766562.617987] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766562.823548] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766563.028133] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766563.233628] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766563.439384] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766563.644669] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766563.851438] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766564.056236] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766564.261255] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766564.466874] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766564.672603] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766564.877992] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766565.084130] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766565.290204] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766565.495621] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766565.701585] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766565.907646] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421766566.112772] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766566.318547] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766566.524420] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766566.730205] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766566.935405] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766567.140884] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766567.346364] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766567.552912] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766567.758199] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766567.963430] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766568.168385] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766568.373531] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766568.579207] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766568.784488] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766568.991000] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766569.196625] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766569.403539] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766569.610371] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766569.815643] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766570.021202] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766570.226345] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766570.433036] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421766570.639062] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766570.844441] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766571.050352] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766571.255435] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766571.460682] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766571.665792] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766571.871216] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766572.075934] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766572.280794] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421766572.486761] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766572.693149] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766572.898663] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766573.103773] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766573.309155] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766573.514692] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766573.719790] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766573.925614] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421766574.132008] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766574.337472] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766574.542755] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766574.748753] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766574.953998] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766575.159851] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421766575.364983] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766575.571547] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766575.777876] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766575.983263] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766576.188431] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766576.393764] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766576.599592] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421766576.805283] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766577.010488] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766577.215542] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766577.420660] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766577.625639] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766577.831466] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766578.036958] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766578.241660] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766578.447521] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766578.652791] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766578.858054] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766579.062777] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766579.267840] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766579.473275] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766579.678732] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766579.883742] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766580.088736] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766580.293624] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766580.499415] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766580.704671] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766580.909955] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766581.116275] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766581.321459] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766581.526666] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766581.731863] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766581.937594] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766582.143866] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766582.349611] 555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766582.554564] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766582.759344] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766582.965682] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766583.171465] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766583.376814] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766583.582163] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766583.787770] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421766583.992954] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766584.198159] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766584.403391] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766584.608865] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766584.814689] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766585.020866] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766585.226114] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766585.431396] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766585.637432] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766585.842784] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766586.047666] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766586.253661] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766586.459102] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766586.665001] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766586.870018] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766587.074863] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766587.279869] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766587.485949] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766587.691489] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766587.896637] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766588.101658] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766588.307769] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766588.513998] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766588.720204] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766588.926060] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766589.133850] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766589.339632] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766589.546291] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766589.752795] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766589.959205] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766590.164558] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766590.370985] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421766590.576203] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766590.781737] 1451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766590.987379] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766591.192918] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766591.399508] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766591.605796] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766591.811205] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766592.015778] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766592.220625] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766592.425549] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421766592.630514] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766592.835651] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766593.040313] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766593.245588] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766593.450708] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766593.655863] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766593.861642] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766594.066099] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766594.271086] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766594.476602] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766594.681338] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766594.886382] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766595.091696] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766595.297412] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766595.503498] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421766595.709230] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766595.914291] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766596.119077] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766596.324050] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766596.529536] 1049 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766596.735265] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766596.940804] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766597.146166] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766597.351299] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766597.556867] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766597.762212] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766597.967297] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766598.172368] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766598.377596] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766598.582814] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766598.787835] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766598.993092] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766599.199188] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766599.404875] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766599.610275] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766599.815952] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766600.021812] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766600.226918] 512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766600.432447] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766600.639076] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421766600.843765] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766601.048498] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766601.253657] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766601.458980] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766601.665048] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766601.871051] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766602.078192] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.32 ms +[1421766602.283635] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766602.492249] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.98 ms +[1421766602.704043] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.82 ms +[1421766602.919164] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421766603.134170] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421766603.351861] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421766603.577981] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421766603.860448] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.3 ms +[1421766604.086530] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421766604.314696] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421766604.603573] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.6 ms +[1421766604.822716] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421766605.027698] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766605.233438] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766605.439033] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421766605.645311] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421766605.855478] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.10 ms +[1421766606.068107] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.02 ms +[1421766606.280365] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.16 ms +[1421766606.500005] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421766606.720679] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421766606.943784] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421766607.164585] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421766607.388112] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421766607.611967] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421766607.817940] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766608.026445] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766608.232357] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766608.437860] 296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766608.643248] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421766608.848306] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766609.053129] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766609.259122] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766609.464402] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766609.669295] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766609.874659] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766610.080785] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766610.286301] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421766610.492992] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421766610.698838] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421766610.905685] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421766611.110613] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766611.319018] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.39 ms +[1421766611.531432] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.21 ms +[1421766611.747973] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.2 ms +[1421766611.968180] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421766612.237755] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=65.6 ms +[1421766612.463456] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421766612.685922] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421766612.892146] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766613.096828] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766613.301765] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766613.508982] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.25 ms +[1421766613.718976] 1049 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.91 ms +[1421766613.931726] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.73 ms +[1421766614.144515] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.81 ms +[1421766614.362096] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421766614.632900] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=66.8 ms +[1421766614.860946] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421766615.082714] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421766615.304767] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421766615.532268] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421766615.764439] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.0 ms +[1421766615.990057] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421766616.273775] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.5 ms +[1421766616.497830] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421766616.726253] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421766616.954173] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421766617.172767] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421766617.396004] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421766617.601749] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421766617.807168] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766618.011749] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766618.221026] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.78 ms +[1421766618.433705] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.80 ms +[1421766618.651088] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421766618.869507] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421766619.074663] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766619.309231] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.7 ms +[1421766619.553193] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=40.0 ms +[1421766619.814026] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.8 ms +[1421766620.032044] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421766620.316304] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.3 ms +[1421766620.533135] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421766620.812548] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.3 ms +[1421766621.037949] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421766621.262371] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421766621.467716] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766621.674182] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766621.881085] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766622.087138] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421766622.292157] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766622.497226] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766622.702341] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766622.909039] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766623.114246] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766623.319406] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766623.525003] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766623.730229] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766623.942817] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.34 ms +[1421766624.154562] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.33 ms +[1421766624.365722] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.12 ms +[1421766624.571587] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766624.776821] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766624.982097] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766625.196768] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421766625.427303] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.3 ms +[1421766625.667665] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.2 ms +[1421766625.885587] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421766626.154836] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=65.4 ms +[1421766626.438419] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.4 ms +[1421766626.724218] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.7 ms +[1421766626.950749] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421766627.177704] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421766627.404625] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421766627.611026] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766627.898005] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.5 ms +[1421766628.124974] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421766628.351513] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421766628.636807] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.1 ms +[1421766628.857160] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421766629.089237] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.4 ms +[1421766629.294457] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766629.500059] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766629.706728] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766629.912777] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.94 ms +[1421766630.123051] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.91 ms +[1421766630.328943] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766630.537963] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.65 ms +[1421766630.756372] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421766630.972078] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.4 ms +[1421766631.187821] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.0 ms +[1421766631.456519] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=64.6 ms +[1421766631.682689] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421766631.909929] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421766632.199300] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.4 ms +[1421766632.428567] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.2 ms +[1421766632.652365] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421766632.875991] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421766633.099612] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421766633.325227] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421766633.552063] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421766633.770010] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421766634.002236] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.5 ms +[1421766634.208137] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421766634.413668] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766634.618782] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766634.826048] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.58 ms +[1421766635.035155] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.73 ms +[1421766635.272202] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.3 ms +[1421766635.488846] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421766635.718171] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.0 ms +[1421766635.943046] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421766636.168728] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421766636.397251] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421766636.623257] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421766636.896474] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.1 ms +[1421766637.181458] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.1 ms +[1421766637.406599] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421766637.628757] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421766637.853288] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421766638.081559] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421766638.308740] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421766638.533329] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421766638.762919] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.5 ms +[1421766638.968276] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766639.173814] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421766639.379881] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421766639.585790] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766639.791749] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766639.997454] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766640.203181] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766640.408808] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766640.615551] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766640.820356] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766641.025137] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766641.230298] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766641.435792] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766641.641381] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766641.847169] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766642.052183] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766642.257225] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766642.462363] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766642.667493] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766642.872778] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766643.078059] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766643.283162] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766643.488747] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766643.694274] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766643.899403] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766644.105015] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421766644.310116] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766644.515871] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421766644.722500] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766644.928316] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766645.133694] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766645.339959] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766645.545235] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766645.751382] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766645.957118] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766646.162266] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766646.367624] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766646.574319] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766646.779552] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766646.984415] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766647.189746] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766647.395087] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766647.600829] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766647.805640] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766648.010442] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766648.216686] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766648.422976] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766648.628799] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766648.833994] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766649.038663] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766649.244410] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421766649.450430] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766649.655876] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766649.860902] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766650.067076] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766650.272490] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421766650.478251] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766650.685235] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766650.891387] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421766651.096054] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766651.301940] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766651.507125] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766651.712845] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766651.918847] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766652.124675] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766652.329742] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766652.535219] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766652.740421] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766652.945430] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766653.150819] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766653.355892] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766653.562543] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766653.768415] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766653.975182] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766654.180569] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766654.385777] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766654.591830] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766654.797071] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766655.001913] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766655.208324] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766655.413694] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766655.618997] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766655.823775] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766656.029016] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766656.234292] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766656.439998] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766656.645433] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766656.850589] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766657.056059] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766657.261112] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766657.466242] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766657.671402] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766657.877752] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766658.083713] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421766658.289242] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766658.494528] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766658.700511] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766658.907237] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766659.113415] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766659.318755] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766659.525275] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766659.731561] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766659.937236] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766660.142828] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421766660.348372] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766660.553927] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766660.759522] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766660.964863] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766661.170061] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766661.375254] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766661.580935] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766661.786337] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766661.992720] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766662.197973] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766662.404123] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766662.609643] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766662.814753] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766663.019305] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766663.224525] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766663.430805] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.67 ms +[1421766663.639080] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.22 ms +[1421766663.852628] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.33 ms +[1421766664.065537] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.37 ms +[1421766664.286184] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421766664.505821] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421766664.728849] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421766664.957643] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421766665.181668] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421766665.414072] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.5 ms +[1421766665.637539] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421766665.862168] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421766666.088159] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421766666.315933] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421766666.603719] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.7 ms +[1421766666.831125] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421766667.035832] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766667.240777] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766667.445728] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766667.655659] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.67 ms +[1421766667.886067] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.2 ms +[1421766668.101236] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421766668.314258] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.27 ms +[1421766668.520098] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766668.725294] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766668.930844] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421766669.137067] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.89 ms +[1421766669.342490] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766669.548273] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766669.753587] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766669.959625] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766670.166325] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766670.371991] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766670.586134] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.41 ms +[1421766670.799827] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.68 ms +[1421766671.019827] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421766671.243174] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421766671.523863] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.8 ms +[1421766671.736974] 837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.10 ms +[1421766671.942362] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766672.148475] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766672.354103] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421766672.559797] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421766672.766821] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421766672.973303] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766673.179415] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421766673.386379] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421766673.598464] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.67 ms +[1421766673.838970] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.1 ms +[1421766674.057234] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.4 ms +[1421766674.314865] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=53.7 ms +[1421766674.538126] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421766674.744925] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766674.951868] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421766675.157078] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766675.362397] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766675.567662] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766675.772737] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766675.978392] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766676.192595] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421766676.448902] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=52.2 ms +[1421766676.671541] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421766676.898059] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421766677.181275] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.2 ms +[1421766677.464717] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.5 ms +[1421766677.687075] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421766677.922212] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.8 ms +[1421766678.127292] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766678.332536] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766678.542542] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.19 ms +[1421766678.751454] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.57 ms +[1421766678.963790] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.46 ms +[1421766679.180707] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421766679.402212] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421766679.623904] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421766679.846329] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421766680.119541] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.1 ms +[1421766680.401662] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421766680.684513] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.8 ms +[1421766680.911114] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421766681.194614] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.6 ms +[1421766681.476884] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421766681.700066] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421766681.927195] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421766682.155308] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421766682.383323] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421766682.588761] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766682.794174] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766683.000476] 1716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766683.206261] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421766683.414031] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.87 ms +[1421766683.626026] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.68 ms +[1421766683.843616] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421766684.059760] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421766684.280472] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421766684.500963] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421766684.726788] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421766684.950108] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421766685.180067] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421766685.404355] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421766685.689387] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.8 ms +[1421766685.915376] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421766686.199747] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.2 ms +[1421766686.428630] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421766686.652839] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421766686.935267] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.2 ms +[1421766687.208632] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.2 ms +[1421766687.413949] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766687.619305] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766687.828794] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.41 ms +[1421766688.034068] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766688.248727] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421766688.490945] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.2 ms +[1421766688.738227] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.9 ms +[1421766688.956068] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421766689.231810] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.5 ms +[1421766689.458807] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421766689.748667] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.8 ms +[1421766690.034659] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.8 ms +[1421766690.260231] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421766690.465293] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766690.671730] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421766690.878045] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421766691.083351] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766691.289857] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766691.496600] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766691.706192] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.85 ms +[1421766691.915986] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.54 ms +[1421766692.129509] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.61 ms +[1421766692.343228] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.95 ms +[1421766692.595563] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.6 ms +[1421766692.815922] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421766693.020688] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766693.225816] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766693.431663] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766693.641791] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.20 ms +[1421766693.854384] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.63 ms +[1421766694.067211] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.14 ms +[1421766694.283444] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421766694.508200] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421766694.728645] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421766694.935504] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421766695.141572] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421766695.357878] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421766695.622922] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.9 ms +[1421766695.828343] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766696.055789] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421766696.338727] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.9 ms +[1421766696.558841] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421766696.847183] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.0 ms +[1421766697.070275] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421766697.356797] 1913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.5 ms +[1421766697.581132] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421766697.787581] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421766697.993261] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766698.198798] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766698.405311] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421766698.625748] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421766698.858865] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.0 ms +[1421766699.105368] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.7 ms +[1421766699.363125] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=53.6 ms +[1421766699.583297] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421766699.805772] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421766700.029090] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421766700.253673] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421766700.483135] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.3 ms +[1421766700.771080] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.4 ms +[1421766700.998253] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421766701.222738] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421766701.450128] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421766701.675680] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421766701.901108] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421766702.188686] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.7 ms +[1421766702.394010] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766702.599274] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766702.805753] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766703.010653] 1186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766703.215728] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766703.421033] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766703.627081] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766703.832537] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766704.037550] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766704.242492] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766704.450079] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.70 ms +[1421766704.659864] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.68 ms +[1421766704.865231] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766705.070022] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766705.275195] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766705.479875] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766705.686404] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421766705.892131] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766706.096966] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766706.302684] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766706.507984] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766706.713231] 1451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766706.919675] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766707.125313] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766707.330565] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766707.535867] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766707.741201] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766707.947038] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766708.152987] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766708.359201] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766708.564637] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766708.770153] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766708.975700] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766709.181571] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766709.386917] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766709.592475] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766709.797072] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766710.003097] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766710.209368] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766710.414309] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766710.619291] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766710.825847] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766711.031756] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766711.236806] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766711.441974] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766711.648156] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421766711.853716] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766712.059930] 1720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766712.265641] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766712.471789] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766712.676670] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766712.882575] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766713.087563] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766713.293714] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766713.498438] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766713.704720] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766713.910226] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766714.115258] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766714.321146] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766714.526313] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766714.731519] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766714.937815] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766715.142747] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766715.347829] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766715.552690] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766715.757563] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766715.962928] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766716.168577] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766716.375312] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766716.581308] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421766716.787540] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766716.993340] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766717.200282] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421766717.406384] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766717.611538] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766717.817636] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766718.023442] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.99 ms +[1421766718.228769] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766718.433943] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766718.640308] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766718.846855] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766719.052337] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766719.258426] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421766719.463538] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766719.668904] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766719.873875] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766720.079470] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421766720.284713] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766720.490401] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766720.696058] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421766720.901835] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766721.106857] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766721.311619] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766721.516776] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766721.722226] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766721.928956] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766722.134114] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766722.340118] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421766722.545489] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766722.751337] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766722.957236] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766723.162966] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766723.369332] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766723.575800] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766723.781535] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766723.987932] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421766724.194571] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766724.400282] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766724.606256] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766724.811745] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766725.016212] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766725.222482] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766725.428493] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766725.634311] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766725.840358] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766726.045413] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766726.250543] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766726.456841] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766726.661762] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766726.867137] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766727.072184] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766727.277275] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766727.482471] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766727.688020] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766727.893414] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766728.098297] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766728.304516] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766728.510921] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421766728.715932] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766728.921118] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766729.126455] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766729.331627] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766729.537486] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766729.744419] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766729.950663] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766730.155998] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766730.362285] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421766730.568118] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766730.773522] 1451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421766730.978844] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766731.184973] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766731.389883] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766731.595238] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766731.801109] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766732.006674] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766732.211792] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766732.418059] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766732.623829] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421766732.829845] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766733.036205] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421766733.242777] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.76 ms +[1421766733.448891] 1072 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421766733.654306] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766733.859787] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766734.065816] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766734.271059] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766734.477034] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766734.682409] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766734.887605] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766735.092695] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766735.297900] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766735.503230] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766735.708623] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766735.913915] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766736.119602] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766736.325013] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766736.530212] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766736.736715] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766736.941788] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766737.148588] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766737.353613] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766737.558791] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766737.765178] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766737.971060] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766738.176814] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766738.382859] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421766738.588333] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766738.794141] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766738.999573] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766739.204476] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766739.409567] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766739.615474] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766739.821272] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766740.027275] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766740.232267] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766740.438525] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766740.645131] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766740.851572] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766741.056326] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766741.261300] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766741.466356] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766741.671922] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766741.877039] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766742.091207] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421766742.301126] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.88 ms +[1421766742.516317] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421766742.728354] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.21 ms +[1421766742.989007] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.6 ms +[1421766743.212804] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421766743.436640] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421766743.655170] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421766743.942270] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.0 ms +[1421766744.169383] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421766744.376044] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421766744.601259] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421766744.884252] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.9 ms +[1421766745.105830] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421766745.372295] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.5 ms +[1421766745.578106] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766745.784158] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766745.989882] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766746.195329] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766746.400394] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766746.605701] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766746.811137] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766747.024330] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.66 ms +[1421766747.230311] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766747.435486] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766747.640841] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766747.845507] 555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766748.050295] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766748.255196] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766748.460425] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766748.666829] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766748.872491] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766749.077807] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766749.283076] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766749.488650] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766749.694019] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766749.899092] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766750.104742] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766750.309689] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766750.514900] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766750.721830] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421766750.927768] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766751.133976] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766751.339029] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766751.544320] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766751.749648] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766751.955343] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766752.161564] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421766752.367287] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766752.573142] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766752.778783] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766752.984376] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766753.189183] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766753.395420] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766753.601238] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766753.806673] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766754.011406] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766754.216249] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766754.422531] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766754.627595] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766754.833696] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421766755.039044] 512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766755.245693] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421766755.451355] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766755.656955] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766755.862546] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766756.067541] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766756.272819] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766756.478414] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766756.684145] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766756.890734] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766757.095726] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766757.300529] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766757.506659] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766757.712248] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766757.918661] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421766758.123858] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766758.329194] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766758.534542] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766758.741377] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421766758.947781] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421766759.153102] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766759.358800] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766759.564567] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766759.770028] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766759.976243] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766760.182777] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766760.387807] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766760.593186] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766760.798947] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766761.003726] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766761.208853] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766761.413887] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766761.620011] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766761.826145] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766762.031687] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421766762.236640] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766762.442058] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766762.647525] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766762.853824] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766763.058786] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766763.263883] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766763.469221] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766763.674711] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766763.880846] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766764.085691] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766764.291254] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766764.497273] 1075 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766764.702296] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766764.907391] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766765.112846] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766765.318298] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766765.523937] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766765.729201] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766765.935766] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766766.141541] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766766.346561] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766766.552722] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766766.758945] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421766766.965334] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421766767.170415] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766767.375503] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766767.581005] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766767.786196] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766767.991493] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766768.196273] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766768.403279] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.92 ms +[1421766768.609896] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766768.816038] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766769.022540] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766769.227409] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766769.432823] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766769.638220] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766769.844504] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766770.050610] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766770.256651] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766770.461982] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766770.667536] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421766770.877159] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.42 ms +[1421766771.082117] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766771.286960] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766771.492516] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766771.699119] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766771.905548] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766772.110440] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766772.315974] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766772.522176] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766772.727598] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766772.933403] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766773.141043] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.25 ms +[1421766773.346552] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766773.551704] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766773.757942] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766773.964551] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766774.169911] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766774.374997] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766774.579918] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766774.786304] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421766774.993222] 1880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766775.198521] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766775.403824] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766775.610101] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421766775.817645] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.46 ms +[1421766776.022601] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766776.227655] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421766776.433082] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766776.638039] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766776.843282] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766777.047921] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766777.253137] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766777.458201] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766777.663341] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766777.868758] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766778.074986] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421766778.286918] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.55 ms +[1421766778.499410] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.03 ms +[1421766778.717544] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421766778.965890] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.2 ms +[1421766779.184126] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421766779.406786] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421766779.690245] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.5 ms +[1421766779.910133] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.7 ms +[1421766780.196555] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.7 ms +[1421766780.423397] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421766780.643064] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421766780.876581] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.0 ms +[1421766781.110254] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.8 ms +[1421766781.333787] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421766781.608204] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.3 ms +[1421766781.829807] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421766782.034679] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766782.240168] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766782.448379] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.03 ms +[1421766782.660504] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.08 ms +[1421766782.876639] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.0 ms +[1421766783.097066] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421766783.317357] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421766783.588261] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=66.9 ms +[1421766783.810860] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421766784.041701] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.0 ms +[1421766784.264929] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421766784.487677] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421766784.714070] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421766784.919524] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766785.125070] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766785.331007] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766785.536019] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766785.741136] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766785.946554] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766786.153230] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766786.358558] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766786.565215] 1932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766786.771097] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421766786.980828] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.85 ms +[1421766787.194029] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.05 ms +[1421766787.443467] 1955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.6 ms +[1421766787.665341] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421766787.885140] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421766788.090236] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766788.295562] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766788.505704] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.92 ms +[1421766788.726066] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421766788.940221] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.91 ms +[1421766789.158760] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421766789.375720] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421766789.593805] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421766789.869909] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.0 ms +[1421766790.099539] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421766790.325373] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421766790.551182] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421766790.775035] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421766790.981525] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421766791.202916] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421766791.481652] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.4 ms +[1421766791.765956] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.8 ms +[1421766791.990882] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421766792.217859] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421766792.448854] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.7 ms +[1421766792.674571] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421766792.879923] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766793.084820] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766793.289845] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766793.497689] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.88 ms +[1421766793.708788] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.68 ms +[1421766793.931224] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421766794.177380] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.0 ms +[1421766794.428236] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.7 ms +[1421766794.696202] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=64.1 ms +[1421766794.918611] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421766795.142505] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421766795.370187] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421766795.655768] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.4 ms +[1421766795.887680] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.9 ms +[1421766796.171480] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.0 ms +[1421766796.401437] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421766796.606773] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766796.812050] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766797.017208] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766797.222584] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766797.444123] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421766797.679061] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.7 ms +[1421766797.898076] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421766798.104490] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766798.309967] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766798.514957] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766798.725622] 1156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.42 ms +[1421766798.937639] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.67 ms +[1421766799.154746] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421766799.372835] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421766799.590439] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421766799.816718] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421766800.100882] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.9 ms +[1421766800.330783] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421766800.563503] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.7 ms +[1421766800.846639] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.3 ms +[1421766801.071666] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421766801.295495] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421766801.523074] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421766801.742916] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421766802.029074] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.8 ms +[1421766802.257646] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421766802.484226] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421766802.716356] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.3 ms +[1421766802.946677] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.5 ms +[1421766803.151878] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766803.360133] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766803.565782] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766803.770910] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766803.994403] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421766804.207918] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.50 ms +[1421766804.457131] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.9 ms +[1421766804.678275] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421766804.900928] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421766805.177822] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.8 ms +[1421766805.457679] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.9 ms +[1421766805.686514] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421766805.915591] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421766806.137072] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421766806.364334] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421766806.587461] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421766806.815554] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421766807.020469] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766807.225929] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421766807.430752] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766807.636091] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766807.841528] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766808.047023] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766808.251763] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766808.456940] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766808.663464] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766808.868681] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766809.073242] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766809.278975] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.97 ms +[1421766809.485851] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.22 ms +[1421766809.717302] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.4 ms +[1421766809.933451] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421766810.152123] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421766810.357152] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766810.562484] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766810.767954] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766810.975996] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.30 ms +[1421766811.185474] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.66 ms +[1421766811.425484] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.0 ms +[1421766811.675336] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.0 ms +[1421766811.897213] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421766812.175082] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.9 ms +[1421766812.403557] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421766812.632819] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.0 ms +[1421766812.861119] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421766813.084771] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421766813.290198] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766813.514851] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421766813.725732] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.81 ms +[1421766814.009944] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.3 ms +[1421766814.236289] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421766814.523496] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.3 ms +[1421766814.729858] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421766814.955633] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421766815.160985] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766815.366583] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421766815.572930] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.87 ms +[1421766815.780157] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.99 ms +[1421766815.996863] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.2 ms +[1421766816.230293] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.2 ms +[1421766816.448972] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421766816.661758] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.83 ms +[1421766816.927678] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=61.8 ms +[1421766817.149400] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421766817.428215] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.9 ms +[1421766817.711925] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.5 ms +[1421766817.999617] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.3 ms +[1421766818.220409] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421766818.503246] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.5 ms +[1421766818.730658] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421766818.958261] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421766819.176255] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421766819.402586] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421766819.629207] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421766819.854777] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421766820.060441] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766820.266159] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766820.471518] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766820.685918] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421766820.897203] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.97 ms +[1421766821.112274] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.4 ms +[1421766821.317151] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766821.523042] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766821.728164] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766821.934047] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766822.139412] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766822.344479] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766822.549875] 1063 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766822.755935] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766822.960912] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766823.166338] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766823.372725] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766823.577947] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766823.782655] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766823.988644] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766824.194553] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766824.399935] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766824.605394] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766824.811256] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766825.017046] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421766825.221973] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766825.427353] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766825.634082] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766825.839661] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766826.045127] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766826.250513] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766826.456876] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.85 ms +[1421766826.662934] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766826.868853] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766827.074048] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766827.278957] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766827.484825] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766827.691059] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766827.896995] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766828.102092] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766828.308209] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766828.513084] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766828.718547] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766828.923885] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766829.130015] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766829.335710] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421766829.541187] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766829.747057] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766829.952642] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766830.157744] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766830.362782] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766830.567907] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766830.774197] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766830.979144] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421766831.185293] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766831.390760] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766831.596414] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766831.802820] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766832.007765] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766832.213026] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766832.418210] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766832.623405] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766832.828401] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766833.032838] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766833.237855] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766833.443383] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766833.649578] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421766833.854763] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766834.059714] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766834.265860] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766834.471609] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766834.676635] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766834.882100] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766835.088355] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766835.293224] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766835.498410] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766835.703857] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766835.910000] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766836.116180] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766836.321761] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766836.527537] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766836.732830] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766836.938575] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766837.144192] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766837.349367] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766837.555586] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766837.761978] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766837.966724] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766838.171779] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766838.378131] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766838.583966] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766838.790496] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766838.996521] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766839.201671] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766839.407094] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766839.612272] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766839.817691] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766840.043496] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421766840.248553] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766840.453881] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766840.664827] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.49 ms +[1421766840.870011] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766841.075863] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421766841.281443] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766841.486855] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766841.692112] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766841.897206] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766842.101820] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766842.307444] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766842.514127] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766842.720046] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766842.925777] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766843.132245] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766843.337564] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766843.543854] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766843.750039] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421766843.954840] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766844.160001] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766844.364939] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766844.571438] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421766844.777119] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421766844.983212] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766845.188299] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766845.393690] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766845.600637] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766845.807334] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421766846.012171] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766846.217461] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766846.423941] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421766846.629498] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766846.834680] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766847.039344] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766847.245775] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766847.451776] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766847.657299] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766847.863711] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766848.070422] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766848.275796] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766848.481450] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766848.688140] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421766848.893719] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766849.098818] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766849.305088] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766849.510646] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766849.715792] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766849.921542] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766850.127042] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766850.333053] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.94 ms +[1421766850.538976] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421766850.745828] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421766850.951242] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766851.157553] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766851.363978] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766851.570503] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766851.775924] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421766851.981928] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766852.186715] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766852.392746] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766852.599000] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421766852.803774] 1175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766853.008510] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766853.213375] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766853.418856] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766853.624449] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766853.830438] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766854.035432] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766854.241428] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766854.446712] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766854.651788] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766854.856468] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766855.061475] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766855.267656] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766855.473375] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766855.679915] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766855.885582] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766856.091558] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421766856.296506] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766856.501412] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766856.706604] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766856.912266] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766857.117864] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766857.323329] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766857.529164] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766857.734855] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766857.940652] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766858.146074] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766858.352307] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766858.557330] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766858.763950] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766858.969143] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766859.175512] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766859.380480] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766859.585774] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766859.791405] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766859.997898] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766860.204602] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766860.411812] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.20 ms +[1421766860.635963] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421766860.850784] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421766861.098141] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.6 ms +[1421766861.316111] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421766861.541929] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421766861.827667] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.5 ms +[1421766862.053022] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421766862.278362] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421766862.496653] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421766862.774769] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.9 ms +[1421766862.981052] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766863.185901] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766863.391588] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421766863.597085] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766863.803359] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766864.008931] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766864.213745] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766864.418696] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766864.623858] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766864.829407] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766865.045680] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421766865.250545] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766865.455449] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766865.660346] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766865.875798] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421766866.103336] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421766866.308548] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766866.515069] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766866.721238] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766866.927743] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421766867.137685] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.57 ms +[1421766867.352469] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421766867.593469] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.7 ms +[1421766867.814644] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421766868.087394] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.3 ms +[1421766868.313880] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421766868.542911] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421766868.753608] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.91 ms +[1421766868.977690] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421766869.199738] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421766869.416339] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421766869.640040] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421766869.867829] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421766870.147707] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.9 ms +[1421766870.373699] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421766870.599961] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421766870.823783] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421766871.028456] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766871.233215] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766871.439264] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421766871.650985] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.55 ms +[1421766871.861370] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.44 ms +[1421766872.076598] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421766872.322524] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=41.9 ms +[1421766872.543862] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421766872.819791] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.6 ms +[1421766873.104288] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.5 ms +[1421766873.327706] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421766873.553665] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421766873.779458] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421766874.050976] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=67.2 ms +[1421766874.338812] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.6 ms +[1421766874.564039] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421766874.789663] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421766875.076689] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.1 ms +[1421766875.361706] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.0 ms +[1421766875.587036] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421766875.812688] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421766876.017508] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766876.222870] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766876.428040] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766876.636747] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.48 ms +[1421766876.851226] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421766877.083766] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.6 ms +[1421766877.328887] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=41.2 ms +[1421766877.548478] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421766877.766103] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421766877.986550] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421766878.208253] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421766878.429175] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421766878.657191] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421766878.888232] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.1 ms +[1421766879.175191] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.3 ms +[1421766879.459371] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.4 ms +[1421766879.682546] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421766879.906975] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421766880.132781] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766880.338005] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766880.543342] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766880.748814] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766880.954287] 1186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766881.162696] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.70 ms +[1421766881.368199] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766881.573503] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766881.780120] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766881.987094] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421766882.196773] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766882.407955] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.04 ms +[1421766882.619968] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.12 ms +[1421766882.881021] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.9 ms +[1421766883.104495] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421766883.387836] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.6 ms +[1421766883.615960] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421766883.844452] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421766884.128025] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.7 ms +[1421766884.357201] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421766884.583647] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421766884.811974] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421766885.035112] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421766885.261793] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421766885.546962] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.8 ms +[1421766885.772598] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421766886.018294] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=41.4 ms +[1421766886.224314] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766886.431272] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.97 ms +[1421766886.638675] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.01 ms +[1421766886.862990] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421766887.079886] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.2 ms +[1421766887.323608] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.5 ms +[1421766887.539782] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421766887.814137] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.2 ms +[1421766888.039021] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421766888.328685] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.8 ms +[1421766888.556526] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421766888.786311] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.5 ms +[1421766889.061098] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.0 ms +[1421766889.336786] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.7 ms +[1421766889.566716] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421766889.797958] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.1 ms +[1421766890.026859] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.2 ms +[1421766890.247267] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766890.452883] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766890.658410] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766890.865048] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421766891.071281] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421766891.279613] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.53 ms +[1421766891.485339] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766891.690463] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766891.896758] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766892.101372] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766892.306590] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766892.512892] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766892.718590] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766892.924329] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766893.129253] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766893.334427] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766893.539684] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766893.744727] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766893.950867] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766894.156962] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766894.362398] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766894.567969] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766894.774652] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766894.980051] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766895.184973] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766895.389962] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766895.594911] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766895.800596] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766896.005835] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766896.211137] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766896.416183] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766896.621181] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766896.826346] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766897.030874] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766897.236049] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766897.441155] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766897.647369] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766897.852650] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766898.057845] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766898.263967] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766898.469542] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766898.675647] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766898.880865] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766899.085807] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766899.291033] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766899.496435] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766899.702518] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766899.907548] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766900.113261] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766900.318290] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766900.523531] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766900.728484] 130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766900.934862] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766901.140207] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766901.345645] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421766901.551875] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766901.757756] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766901.963264] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766902.167994] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766902.374346] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766902.580882] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766902.786940] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766902.991742] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766903.196911] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766903.402100] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766903.607201] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766903.812320] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766904.018320] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766904.223507] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766904.428548] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766904.634855] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766904.840545] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766905.046776] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766905.252115] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766905.457592] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766905.663983] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766905.869046] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766906.074031] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766906.279029] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766906.483806] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766906.688718] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766906.895014] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766907.100747] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766907.306002] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766907.511194] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766907.717095] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766907.923174] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766908.127975] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766908.334298] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766908.539804] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766908.744710] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766908.949852] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766909.154959] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766909.360240] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766909.566632] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766909.773055] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766909.979541] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766910.184886] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766910.391338] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421766910.597254] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766910.804104] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421766911.009167] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766911.214337] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766911.420632] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766911.626219] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766911.833655] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.77 ms +[1421766912.038880] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766912.244051] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766912.450207] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766912.656438] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766912.861550] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766913.066509] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766913.272703] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766913.478967] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766913.684561] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766913.889943] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421766914.094828] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766914.300163] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766914.505810] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766914.711474] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766914.917616] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766915.123337] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421766915.328642] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766915.535140] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.69 ms +[1421766915.740250] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766915.945207] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766916.150289] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766916.355655] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766916.562112] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766916.767623] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766916.972499] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766917.177496] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766917.383161] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766917.589654] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766917.795255] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766918.000491] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766918.205741] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766918.411158] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766918.616584] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766918.822078] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766919.026791] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766919.232108] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766919.437919] 1888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766919.643356] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766919.848881] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766920.062017] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.24 ms +[1421766920.267156] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766920.472736] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766920.678685] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421766920.884551] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766921.089166] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766921.294136] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766921.499323] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766921.705876] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766921.911544] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766922.117427] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766922.322935] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421766922.529019] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766922.735216] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766922.940377] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766923.145940] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766923.350985] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766923.556119] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766923.761474] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766923.967567] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766924.173140] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766924.378518] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421766924.584557] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421766924.790097] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421766924.995573] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766925.200636] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766925.406793] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766925.611637] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766925.817172] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766926.021994] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766926.226878] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766926.433102] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766926.639021] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766926.845867] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766927.051448] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766927.257238] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766927.462352] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766927.667536] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766927.873797] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766928.079502] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421766928.284779] 145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766928.490156] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766928.696150] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766928.962651] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.4 ms +[1421766929.168237] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766929.373405] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766929.594539] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421766929.823522] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.2 ms +[1421766930.029269] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766930.234023] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766930.440260] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766930.645360] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766930.850527] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766931.055492] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766931.260412] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766931.466612] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766931.671829] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766931.877961] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766932.082777] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766932.287727] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766932.492838] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766932.699024] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766932.928028] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421766933.150690] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421766933.356703] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766933.562245] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421766933.767343] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766933.973303] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421766934.178642] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766934.383969] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766934.589781] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421766934.795183] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766935.000269] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766935.205518] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766935.411732] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766935.617240] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766935.823297] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766936.028206] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766936.233330] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766936.439026] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766936.644779] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766936.853882] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.76 ms +[1421766937.210383] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=152 ms +[1421766937.415959] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421766937.622438] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421766937.828063] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766938.033851] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766938.240150] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766938.445705] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766938.650997] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766938.857103] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766939.062071] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766939.267115] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766939.473238] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766939.678869] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766939.884314] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766940.089127] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766940.294259] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766940.499867] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421766940.705610] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766940.910886] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766941.115499] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766941.320733] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766941.526371] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766941.731725] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766941.937001] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766942.142214] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766942.347428] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766942.552999] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766942.758852] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766942.964432] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766943.170598] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766943.375823] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766943.581358] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766943.787422] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766943.993648] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421766944.198784] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766944.404224] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766944.609579] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766944.815795] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766945.020747] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766945.226775] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766945.432281] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766945.637164] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766945.842115] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766946.047140] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766946.252816] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766946.458247] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766946.664053] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766946.870196] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766947.075426] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766947.280590] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766947.485912] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766947.691610] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766947.897165] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766948.103915] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766948.309784] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766948.515410] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766948.720552] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766948.926665] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766949.132092] 555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766949.337332] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766949.543002] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766949.748730] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766949.955014] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766950.160160] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766950.365154] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766950.570820] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421766950.777280] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766950.982768] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766951.189363] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766951.395623] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766951.600940] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766951.806665] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766952.011656] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766952.217775] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766952.423556] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766952.629417] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766952.835248] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766953.040445] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766953.246619] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766953.452387] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766953.658874] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766953.864367] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766954.069251] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766954.273972] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766954.479442] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766954.685483] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766954.890780] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766955.095486] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766955.301818] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766955.507370] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766955.712396] 1063 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766955.918682] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766956.123593] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766956.330089] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766956.536527] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421766956.742030] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766956.947943] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766957.152994] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766957.359419] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766957.565054] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766957.771875] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766957.977300] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766958.182681] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766958.388391] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766958.594207] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766958.799151] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766959.004702] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766959.210093] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766959.415902] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766959.621040] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766959.827401] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766960.033235] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421766960.245352] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.17 ms +[1421766960.451868] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421766960.657624] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421766960.863543] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766961.068367] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766961.303138] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.6 ms +[1421766961.508625] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766961.714081] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766961.919429] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766962.125341] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766962.330400] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766962.536911] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766962.742299] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766962.948452] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766963.153487] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766963.359671] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766963.565172] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766963.770803] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766963.975748] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766964.180661] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766964.385840] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766964.590753] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421766964.796821] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766965.002377] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766965.207846] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766965.414546] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421766965.620040] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766965.826257] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766966.031143] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766966.236426] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766966.441620] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766966.649661] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766966.855282] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766967.061516] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766967.266531] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766967.471906] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766967.677250] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766967.883114] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766968.088250] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766968.298204] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.30 ms +[1421766968.503837] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766968.709213] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766968.915861] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766969.122076] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766969.327397] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766969.532650] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766969.738541] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766969.944021] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766970.149497] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766970.354680] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766970.561162] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421766970.766974] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766970.973558] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766971.178853] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766971.384252] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766971.590321] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766971.796618] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766972.001639] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766972.206948] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766972.413153] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766972.619161] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421766972.824804] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766973.029603] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766973.235721] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766973.441102] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766973.647331] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421766973.865572] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421766974.077328] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.64 ms +[1421766974.289234] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.00 ms +[1421766974.509267] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421766974.726854] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421766974.949642] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421766975.175635] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421766975.398937] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421766975.623712] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421766975.908776] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.6 ms +[1421766976.114160] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421766976.342650] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421766976.572040] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421766976.799657] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421766977.032757] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.2 ms +[1421766977.237875] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421766977.444577] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766977.651583] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.90 ms +[1421766977.863278] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.78 ms +[1421766978.077405] 841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421766978.324393] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.9 ms +[1421766978.542337] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421766978.817351] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.8 ms +[1421766979.022316] 847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766979.227520] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766979.432531] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766979.638749] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766979.844692] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766980.049436] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766980.254737] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766980.459780] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766980.666564] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421766980.873691] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766981.078662] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766981.283710] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766981.489802] 1566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766981.695096] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766981.900793] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766982.106753] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766982.311972] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766982.518252] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766982.723854] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766982.929679] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766983.135364] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766983.341085] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766983.546814] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766983.751688] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766983.956841] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766984.162149] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766984.367160] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766984.573787] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766984.780664] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766984.986126] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766985.192297] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766985.397634] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766985.603519] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766985.809606] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766986.015762] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421766986.221136] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766986.426758] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766986.632572] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766986.839135] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766987.044285] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766987.250483] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766987.456908] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766987.662003] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766987.867757] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766988.072682] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766988.277521] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766988.483163] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421766988.689006] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766988.894363] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766989.099938] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766989.304773] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766989.510110] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766989.715375] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766989.920797] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766990.127002] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766990.333166] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766990.538161] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766990.744319] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766990.950032] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766991.155709] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766991.360907] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766991.567433] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766991.773207] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766991.978503] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766992.184507] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766992.391697] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.48 ms +[1421766992.615639] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421766992.820965] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766993.025834] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766993.230970] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766993.435964] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766993.641753] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766993.847935] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766994.053544] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766994.258722] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766994.463922] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766994.669864] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766994.876029] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766995.081095] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766995.287436] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766995.493284] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766995.699688] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421766995.905474] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766996.111425] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766996.317467] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766996.522684] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766996.727741] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766996.934169] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766997.140746] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766997.346010] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766997.552063] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421766997.758012] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421766997.963812] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766998.169163] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421766998.374533] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766998.580059] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766998.786394] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766998.992059] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766999.198117] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766999.403377] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766999.608743] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766999.815620] 1984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767000.020980] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767000.226262] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767000.432268] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421767000.638781] 1888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421767000.844471] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421767001.050701] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767001.255735] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767001.460912] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767001.665926] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767001.871574] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767002.076282] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767002.281262] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767002.486612] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767002.691975] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767002.896981] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767003.101580] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767003.306757] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767003.512903] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767003.717961] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767003.922838] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767004.127654] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767004.333960] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767004.539595] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767004.745608] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767004.950422] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767005.155828] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767005.360750] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767005.565424] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767005.770903] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767005.976830] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767006.183323] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767006.389204] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767006.595171] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767006.800831] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767007.005994] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767007.212326] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767007.417577] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767007.623157] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767007.828804] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767008.033659] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767008.238625] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767008.444056] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767008.650902] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421767008.856340] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767009.061516] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767009.266749] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767009.472177] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767009.677296] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767009.882376] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767010.088226] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767010.293340] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767010.498684] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767010.704199] 1261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421767010.909691] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421767011.114586] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767011.319884] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767011.525944] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767011.732431] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767011.939297] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767012.146578] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.93 ms +[1421767012.351790] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767012.556674] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767012.762940] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767012.968299] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421767013.173190] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767013.378407] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767013.584576] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767013.790460] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767013.995744] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767014.200857] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767014.406846] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767014.612211] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767014.818804] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767015.023959] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767015.229288] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767015.435483] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767015.640643] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767015.845978] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767016.051714] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767016.257638] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.96 ms +[1421767016.463160] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767016.668546] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767016.874819] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767017.080479] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767017.285737] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767017.491477] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767017.696673] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767017.902413] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767018.107833] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767018.313170] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767018.518413] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767018.723474] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767018.928372] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767019.133866] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767019.338915] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767019.543888] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767019.749385] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767019.955848] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767020.161404] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767020.367567] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767020.573088] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767020.779661] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767020.985211] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767021.190438] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767021.396159] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767021.601372] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767021.806551] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767022.011377] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767022.216992] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421767022.422792] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767022.627858] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767022.833158] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767023.038050] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767023.243173] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767023.448339] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767023.653410] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767023.858629] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767024.064619] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767024.270681] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767024.477038] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767024.682401] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767024.888232] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767025.093424] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767025.298759] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767025.504739] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421767025.711480] 1541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421767025.917034] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767026.122422] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767026.327747] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767026.532824] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421767026.739181] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767026.944593] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767027.149873] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767027.355108] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767027.560919] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767027.766021] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767027.971526] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767028.176825] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767028.382222] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767028.588079] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767028.793792] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767028.999378] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767029.204583] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767029.409689] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767029.615578] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767029.821648] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767030.026656] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767030.231682] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767030.436932] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767030.642724] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421767030.849256] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767031.054310] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767031.259591] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767031.465159] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767031.670176] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767031.875442] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767032.080733] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767032.287236] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421767032.492268] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767032.698597] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767032.903720] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767033.108625] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767033.314973] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767033.520777] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767033.726403] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767033.931538] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767034.137549] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767034.342461] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767034.548030] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421767034.753889] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767034.959603] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767035.164942] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767035.369981] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767035.575361] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767035.782111] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767035.987941] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767036.192849] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767036.399085] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767036.604619] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767036.810949] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421767037.016908] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421767037.221948] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767037.428063] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767037.632753] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421767037.837592] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767038.062139] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421767038.267505] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767038.473636] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767038.679333] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767038.885637] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767039.090659] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767039.295936] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767039.501742] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767039.707607] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767039.912778] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767040.124125] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.60 ms +[1421767040.336682] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.58 ms +[1421767040.542500] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767040.747741] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767040.966702] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.2 ms +[1421767041.173189] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767041.379553] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767041.595230] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421767041.800593] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767042.011098] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.51 ms +[1421767042.217086] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767042.436489] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421767042.643264] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767042.850153] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767043.055994] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767043.262195] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767043.467469] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767043.674052] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767043.879346] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767044.084145] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767044.290756] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767044.496709] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767044.706430] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.75 ms +[1421767044.911632] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767045.117385] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767045.322434] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767045.528904] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767045.735497] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767045.941074] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767046.146637] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767046.352637] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767046.559109] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421767046.764904] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767046.971435] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767047.176650] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767047.382771] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767047.615752] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.7 ms +[1421767047.822533] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421767048.028395] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767048.233436] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767048.442124] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.41 ms +[1421767048.647753] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767048.853280] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767049.058577] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767049.263517] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767049.468700] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767049.674830] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.97 ms +[1421767049.887613] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.78 ms +[1421767050.096450] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.35 ms +[1421767050.301888] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767050.507920] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767050.713626] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767050.919128] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767051.124859] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767051.330131] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767051.536261] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767051.741904] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767051.947858] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767052.152885] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767052.358901] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767052.564143] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767052.769235] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767052.976048] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767053.181603] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421767053.387169] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767053.593055] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767053.800398] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.00 ms +[1421767054.006494] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767054.211588] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767054.416576] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767054.622026] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767054.827495] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767055.033005] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767055.238222] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421767055.443584] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767055.650027] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767055.855384] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767056.060231] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767056.265268] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767056.470861] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767056.676376] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767056.882878] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767057.088511] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767057.294601] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767057.500120] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767057.706993] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421767057.912419] 512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767058.118204] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767058.323591] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767058.529318] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767058.735218] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767058.941869] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767059.147338] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767059.353692] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767059.560277] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767059.766423] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767059.972571] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767060.177996] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767060.383075] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767060.588947] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767060.795276] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767061.000572] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767061.206074] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767061.412592] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421767061.619073] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421767061.825007] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767062.030160] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767062.235242] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767062.443091] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.44 ms +[1421767062.649859] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767062.855591] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421767063.060382] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767063.265496] 1026 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767063.470643] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767063.676491] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767063.882430] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767064.087727] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767064.293827] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767064.498938] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767064.704072] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767064.909114] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767065.114043] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767065.319480] 1186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767065.525015] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767065.730517] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767065.935437] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767066.140416] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767066.346730] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767066.553563] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767066.760153] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767066.970244] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.60 ms +[1421767067.202428] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.8 ms +[1421767067.417791] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421767067.636342] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.1 ms +[1421767067.902508] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.0 ms +[1421767068.184293] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.8 ms +[1421767068.389514] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767068.594571] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767068.799421] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767069.006578] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.51 ms +[1421767069.216310] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.78 ms +[1421767069.454421] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.1 ms +[1421767069.672188] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421767069.891955] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421767070.166525] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.3 ms +[1421767070.453777] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.8 ms +[1421767070.683239] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.4 ms +[1421767070.888478] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767071.093149] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767071.297965] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767071.502641] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767071.707657] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767071.912793] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767072.117379] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767072.322339] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767072.531228] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.30 ms +[1421767072.737185] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767072.947766] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.90 ms +[1421767073.152642] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767073.381415] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421767073.587104] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767073.792390] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767074.023216] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.3 ms +[1421767074.229118] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421767074.434150] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767074.639163] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767074.844889] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767075.050766] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421767075.256737] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767075.485910] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.2 ms +[1421767075.692126] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767075.897109] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767076.102540] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.88 ms +[1421767076.311319] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.81 ms +[1421767076.521168] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.85 ms +[1421767076.735823] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.1 ms +[1421767076.954134] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421767077.178569] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421767077.457452] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.8 ms +[1421767077.737353] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.0 ms +[1421767077.958012] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421767078.164480] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767078.370066] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421767078.575995] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767078.782124] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767078.993445] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.54 ms +[1421767079.198527] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767079.403115] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767079.607747] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767079.812892] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767080.018055] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767080.223736] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767080.429006] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767080.634363] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767080.840010] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767081.044722] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767081.251065] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767081.456230] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767081.661499] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767081.868402] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767082.073574] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767082.279139] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421767082.484504] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421767082.690772] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767082.896583] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767083.101595] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767083.306357] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767083.513038] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767083.754241] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=37.0 ms +[1421767083.960695] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.04 ms +[1421767084.166300] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767084.371456] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767084.576587] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767084.781985] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767084.987333] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767085.192950] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767085.399396] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767085.604975] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767085.810672] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767086.016891] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421767086.223063] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767086.428149] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767086.634301] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767086.840756] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767087.046929] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767087.252133] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421767087.456972] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767087.661892] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767087.868072] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767088.073210] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767088.278381] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767088.495762] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421767088.701422] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767088.920546] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421767089.226480] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=102 ms +[1421767089.431859] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767089.644111] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.89 ms +[1421767089.849680] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767090.054626] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767090.259971] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767090.466262] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767090.671007] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767090.876855] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767091.081072] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767091.286699] 1955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767091.491953] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767091.697855] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767091.903616] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767092.110178] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767092.315027] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767092.520283] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767092.726702] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.75 ms +[1421767092.943095] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421767093.149430] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767093.355772] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767093.561442] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767093.767708] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767093.973035] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767094.178247] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767094.393436] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421767094.610312] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421767094.816895] 1670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767095.036894] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421767095.241988] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767095.446933] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767095.652230] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767095.857558] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767096.062534] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767096.279178] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421767096.484886] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767096.691324] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767096.898053] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767097.102887] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767097.308586] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421767097.513845] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767097.719618] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421767097.925423] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767098.131657] 1897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421767098.337055] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767098.542668] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767098.747641] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767098.952907] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767099.157997] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767099.363144] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767099.568725] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767099.774946] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767099.980625] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767100.185808] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767100.391428] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767100.596773] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767100.802468] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421767101.007414] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767101.212474] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767101.417139] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767101.623352] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767101.829020] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767102.033515] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767102.238752] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767102.443557] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767102.649804] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767102.855359] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767103.060349] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767103.265674] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767103.470757] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767103.676336] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767103.881622] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767104.087172] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767104.292478] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767104.497591] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767104.702774] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767104.908210] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767105.113432] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767105.318714] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767105.525770] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767105.731183] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767105.936601] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767106.143137] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767106.347896] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767106.553208] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767106.759461] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767106.964713] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767107.170354] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767107.375914] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767107.581680] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767117.998674] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.36 ms +[1421767118.213488] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421767118.435118] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421767118.656123] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421767118.881047] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421767119.103639] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421767119.331224] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421767119.558542] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421767119.778435] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421767120.002439] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421767120.225205] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421767120.454502] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.4 ms +[1421767120.677705] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421767120.902806] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421767121.128176] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421767121.410086] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.8 ms +[1421767121.695275] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.1 ms +[1421767121.900618] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767122.105658] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767122.310726] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767122.517118] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421767122.739437] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421767122.945096] 1330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767123.150140] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767123.356268] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767133.766272] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767133.971535] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767134.177170] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767134.382225] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767134.587361] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767134.792229] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767134.997573] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767135.203189] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767135.408829] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767135.614682] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767135.821179] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767136.027366] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767136.232471] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767136.440068] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767136.645657] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767136.851269] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767137.056646] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767137.261718] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767137.466741] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767137.671791] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767137.878005] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767138.083825] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767138.289222] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767138.494766] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767138.700936] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767138.906058] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767139.112048] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767139.317523] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767139.523215] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767139.728749] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767139.934338] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767140.139451] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767140.345463] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767140.550823] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767140.756008] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767140.961368] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767141.166986] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767141.372505] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767141.579328] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767141.785831] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767141.991096] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767142.196437] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767142.401841] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767142.607140] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767142.813574] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421767143.018832] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767143.223966] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767143.429102] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767143.634425] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767143.840415] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767144.045918] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421767144.250900] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767144.455829] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767144.660738] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767144.865890] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767145.070568] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767145.275586] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767145.481253] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767145.687071] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767145.893637] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767146.098756] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767146.304339] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421767146.509796] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767146.715156] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767146.920426] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767147.125874] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767147.331462] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767147.537311] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767147.743010] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767147.947925] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767148.153294] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767148.359505] 1541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767148.565185] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767148.771791] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767148.978005] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767149.184098] 1541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767149.390746] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767149.597388] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767149.802636] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767150.008811] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421767150.214248] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767150.421167] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.86 ms +[1421767150.628194] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421767150.835167] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767151.039944] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767151.245730] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767151.450967] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767151.656428] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767151.861574] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767152.066390] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767152.271487] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767152.476776] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767152.682350] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767152.888603] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421767153.094611] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767153.300301] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421767153.506584] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421767153.711482] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767153.916524] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767154.121237] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767154.326550] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767154.531803] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767154.737751] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767154.942788] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767155.147806] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767155.353240] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767155.559423] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767155.764503] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767155.969751] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767156.176367] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767156.381659] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767156.587317] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767156.792766] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767156.997738] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767157.203213] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767157.409438] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767157.615674] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767157.821906] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767158.026847] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767158.232264] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421767158.438716] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421767158.644046] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767158.849561] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421767159.057106] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.84 ms +[1421767159.269218] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.12 ms +[1421767159.482977] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.67 ms +[1421767159.704343] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421767159.921643] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421767160.143953] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421767160.373925] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421767160.600365] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421767160.826505] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421767161.055410] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.2 ms +[1421767161.284992] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.5 ms +[1421767161.510532] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421767161.746417] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.5 ms +[1421767161.952283] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767162.184706] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.2 ms +[1421767162.390401] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421767162.596068] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767162.801386] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767163.014499] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.69 ms +[1421767163.224935] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.16 ms +[1421767163.431208] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767163.638687] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.01 ms +[1421767163.845240] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767164.050656] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421767164.255687] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767164.460917] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767164.667589] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767164.873456] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767165.078558] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767165.283780] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767165.493716] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.81 ms +[1421767165.699176] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767165.906738] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.27 ms +[1421767166.120138] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.21 ms +[1421767166.333112] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.06 ms +[1421767166.547237] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.1 ms +[1421767166.765324] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421767166.987298] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421767167.214558] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421767167.419730] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767167.624522] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767167.830413] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767168.034768] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767168.240103] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767168.445755] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767168.657128] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.05 ms +[1421767168.862196] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767169.072356] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.78 ms +[1421767169.277746] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767169.483450] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767169.688647] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767169.893640] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767170.098310] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767170.304508] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767170.510467] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767170.715437] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767170.920347] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767171.126233] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421767171.331559] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767171.537911] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767171.743161] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767171.948843] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767172.154446] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767172.362282] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767172.568022] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767172.773462] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767172.979108] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767173.184561] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767173.390502] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767173.596618] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767173.801514] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767174.006781] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767174.213426] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767174.418858] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767174.623613] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767174.828704] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767175.033265] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767175.238297] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767175.444798] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767175.650251] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767175.856658] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767176.062220] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421767176.268194] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767176.474641] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.78 ms +[1421767176.680000] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767176.886341] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767177.091341] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767177.296328] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767177.501886] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767177.707539] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767177.913192] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767178.118545] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767178.324003] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767178.529540] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767178.735917] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767178.942487] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767179.148125] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767179.353515] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767179.559490] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767179.765054] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767179.970325] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767180.175940] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767180.382369] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767180.588421] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767180.793371] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767180.998095] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767181.203257] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767181.408751] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767181.614656] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421767181.820535] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767182.025834] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767182.230835] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767182.436204] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767182.641643] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421767182.846666] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767183.052110] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767183.257134] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767183.462594] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767183.669501] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767183.874871] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421767184.079547] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767184.285803] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421767184.492071] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767184.697525] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767184.902931] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767185.107933] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767185.314628] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421767185.520277] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767185.725627] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767185.930446] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767186.136381] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767186.341692] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767186.547248] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767186.752556] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767186.958658] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767187.164907] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421767187.370219] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767187.576058] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767187.781989] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767187.988910] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767188.194424] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767188.399881] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767188.605466] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767188.810776] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767189.016158] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767189.220970] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767189.427231] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767189.633243] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767189.838371] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767190.043479] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767190.248186] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421767190.453372] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767190.659178] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421767190.865892] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421767191.070896] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767191.275732] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767191.482190] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767191.721717] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.1 ms +[1421767191.948809] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421767192.164030] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421767192.369122] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767192.602089] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.9 ms +[1421767192.807790] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421767193.013443] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421767193.233562] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421767193.439483] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767193.645583] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421767193.850825] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767194.057937] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.41 ms +[1421767194.263749] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767194.470057] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421767194.675438] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767194.880317] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767195.084805] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767195.289699] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767195.495186] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767195.700679] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767195.906952] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767196.111917] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767196.317183] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767196.522875] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767196.729472] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767196.934827] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767197.140111] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767197.345376] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767197.551689] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767197.757851] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767197.963446] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767198.169470] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767198.374527] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767198.579515] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767198.784416] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767198.990402] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767199.195316] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767199.400449] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767199.607064] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767199.813691] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767200.018699] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767200.224915] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767200.430459] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767200.635768] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767200.841085] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767201.046421] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767201.256862] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.48 ms +[1421767201.461916] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767201.667343] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421767201.873830] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767202.079815] 1897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767202.284558] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767202.489558] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767202.694294] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767202.900725] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421767203.106141] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421767203.312446] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421767203.518608] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767203.724805] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767203.930950] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767204.136120] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767204.341393] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767204.546923] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767204.752440] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767204.957873] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767205.163091] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767205.369390] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767205.575970] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767205.781626] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767205.988004] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767206.193529] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767206.398543] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767206.603877] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767206.809355] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767207.015336] 1720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767207.220521] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767207.425142] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421767207.630386] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767207.835787] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767208.041273] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767208.246456] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767208.452624] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767208.657975] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767208.864914] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421767209.069688] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767209.274919] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767209.480677] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767209.686089] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767209.891573] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767210.097456] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767210.302354] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767210.507445] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767210.712550] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767210.918099] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767211.123138] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767211.328400] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767211.534302] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767211.739695] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767211.945244] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767212.150937] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767212.356723] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767212.562363] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767212.767704] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767212.973316] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767213.179310] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767213.384753] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767213.590443] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421767213.796775] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767214.001745] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767214.206975] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767214.412152] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767214.618595] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.78 ms +[1421767214.823821] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767215.028631] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767215.233646] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767215.439301] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767215.644963] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767215.850209] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767216.056172] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767216.262113] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767216.467292] 1072 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767216.672945] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767216.878420] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767217.083409] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767217.288754] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767217.494523] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767217.699926] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421767217.905242] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767218.110330] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767218.315490] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767218.521701] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421767218.727383] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421767218.932978] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767219.139610] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421767219.344655] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767219.550180] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767219.755435] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767219.960879] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767220.165957] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767220.371675] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767220.577426] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767220.782973] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767220.988876] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767221.195425] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767221.400903] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767221.606326] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421767221.811913] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767222.016974] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767222.223122] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767222.429468] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767222.634937] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767222.840012] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767223.046009] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767223.251176] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767223.456477] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767223.662454] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767223.868078] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767224.074075] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767224.279548] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767224.486021] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767224.691938] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767224.897348] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767225.101843] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767225.307228] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767225.512294] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767225.718980] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767225.925077] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767226.130885] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421767226.336467] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767226.541773] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767226.747386] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767226.953241] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767227.158494] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767227.363585] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767227.568704] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767227.774097] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767227.980487] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767228.186009] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767228.391033] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767228.596560] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767228.803094] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767229.009124] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421767229.215315] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767229.421307] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767229.626638] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767229.832433] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767230.037555] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767230.242507] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767230.448002] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767230.653210] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767230.858568] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767231.063806] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767231.269035] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767231.473889] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767231.679401] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767231.884891] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767232.089322] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767232.294211] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767232.499699] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767232.705459] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767232.910916] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767233.116108] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767233.320922] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767233.526236] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767233.731564] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767233.937274] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767234.142678] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767234.347995] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767234.553311] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767234.758348] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767234.963779] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767235.168727] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767235.373822] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767235.579344] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767235.784933] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767235.990800] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421767236.196447] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767236.401793] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767236.607450] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767236.812777] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767237.018650] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767237.224687] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767237.430024] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767237.636917] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767237.842770] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767238.048681] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767238.253974] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767238.460369] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767238.666811] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421767238.872703] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421767239.077618] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421767239.283783] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767239.489614] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767239.694879] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767239.900239] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767240.106020] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767240.312161] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767240.519020] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767240.725406] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421767240.932262] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421767241.138678] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767241.343928] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767241.550305] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767241.755620] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767241.961806] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767242.166956] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767242.372490] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767242.578356] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767242.783856] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767242.988851] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767243.194386] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421767243.400122] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767243.606294] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421767243.811879] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767244.017854] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767244.223467] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767244.428997] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767244.634400] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767244.839705] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767245.044790] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767245.251152] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767245.456326] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767245.661560] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767245.867292] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767246.072513] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767246.277552] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767246.482629] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767246.687866] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767246.897093] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.11 ms +[1421767247.106350] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.34 ms +[1421767247.320785] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421767247.532762] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.90 ms +[1421767247.754441] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421767247.976800] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767248.198216] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421767248.427145] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421767248.641813] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421767248.917583] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.1 ms +[1421767249.141509] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421767249.367296] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421767249.593602] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421767249.819001] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421767250.023674] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767250.228739] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767250.434418] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767250.639634] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767250.844767] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767251.049808] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767251.254868] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767251.459852] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767251.664806] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767251.869953] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767252.074667] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767252.280087] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767252.485423] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767252.691381] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767252.896139] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767253.100571] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767253.305192] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767253.510432] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767253.715967] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767253.921753] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767254.127129] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767254.333319] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767254.540621] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.99 ms +[1421767254.746347] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767254.952518] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421767255.158026] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767255.363012] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767255.568103] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767255.773349] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767255.978902] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767256.184602] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767256.389494] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767256.594785] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767256.801415] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767257.006499] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767257.211702] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767257.417895] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767257.623744] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767257.829511] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767258.034395] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767258.239535] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767258.444722] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767258.650853] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767258.855867] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767259.061420] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421767259.267537] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767259.472514] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767259.677194] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767259.882215] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767260.086714] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767260.291950] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767260.498599] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767260.703893] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767260.909224] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421767261.118042] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.41 ms +[1421767261.323577] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767261.530670] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767261.737600] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767261.943679] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767262.148983] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767262.354384] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767262.559589] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767262.764640] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767262.971196] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767263.177734] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767263.384338] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421767263.589651] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767263.795153] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767264.017896] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421767264.224332] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767264.429183] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767264.634353] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767264.839197] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767265.044043] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767265.249725] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767265.455108] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767265.660771] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767265.867045] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767266.072486] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767266.279050] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421767266.484365] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767266.690338] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767266.896179] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767267.101257] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767267.306510] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767267.511706] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767267.717605] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767267.923542] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767268.128557] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767268.334091] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767268.539895] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767268.745104] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767268.949974] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767269.155090] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767269.361404] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767269.566699] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767269.771976] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767269.977267] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767270.182674] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767270.387694] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767270.592966] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767270.798760] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767271.004076] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767271.209974] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767271.416437] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767271.622133] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767271.827462] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767272.032308] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767272.237431] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767272.442209] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767272.647253] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767272.852929] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767273.058486] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767273.263880] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767273.469460] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767273.674391] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767273.880302] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767274.086011] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767274.291445] 847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767274.497099] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767274.703646] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767274.909305] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767275.114426] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767275.319524] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767275.525934] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767275.731511] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767275.936254] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767276.141431] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767276.346822] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767276.552155] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767276.758449] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767276.964530] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767277.169526] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767277.375072] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767277.580381] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767277.785939] 1417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767277.991484] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767278.196468] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767278.401986] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767278.607690] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767278.814081] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767279.019831] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421767279.225032] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421767279.430335] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767279.639680] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.40 ms +[1421767279.845804] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767280.050794] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767280.255413] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421767280.460797] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767280.666402] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767280.872202] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421767281.078307] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767281.283390] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767281.489314] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767281.694811] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767281.900344] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767282.105441] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767282.311107] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767282.517800] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767282.722665] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767282.927577] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767283.132671] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767283.337517] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767283.543551] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767283.748797] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767283.954370] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767284.161125] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767284.366179] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767284.572662] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767284.778196] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767284.983308] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767285.188474] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767285.394126] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767285.599925] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767285.804872] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767286.009617] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767286.214773] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767286.420057] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767286.625840] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767286.831659] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767287.036210] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767287.242281] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421767287.447596] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767287.653271] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767287.859515] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767288.065778] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767288.270867] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767288.476152] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767288.681753] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767288.886943] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767289.091806] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767289.297188] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767289.502179] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767289.708456] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767289.913830] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767290.118806] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767290.324004] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767290.530710] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767290.736106] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767290.942649] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767291.148442] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767291.354013] 1238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421767291.559167] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767291.764132] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767291.969211] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767292.175233] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767292.380625] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767292.585997] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767292.792301] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767292.997580] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767293.203686] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767293.408818] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767293.614070] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767293.819651] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767294.024696] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767294.229771] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767294.435069] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767294.640626] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767294.847306] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.80 ms +[1421767295.057535] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.65 ms +[1421767295.270234] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.88 ms +[1421767295.482991] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.43 ms +[1421767295.688574] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767295.894269] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767296.099294] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767296.305446] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767296.510872] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767296.716682] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767296.923208] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767297.128580] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767297.334148] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767297.539379] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767297.745320] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767297.950327] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767298.155283] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767298.360577] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767298.566480] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767298.772300] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767298.978913] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421767299.184080] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421767299.389102] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767299.594266] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767299.799897] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767300.005624] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767300.211716] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767300.417909] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767300.622789] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767300.828915] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421767301.034976] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421767301.241216] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421767301.447952] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767301.654738] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767301.861467] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767302.066523] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767302.272699] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767302.477864] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767302.683846] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767302.889668] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767303.095034] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421767303.300165] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767303.505276] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767303.710832] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421767303.916249] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767304.121522] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767304.326722] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767304.532684] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767304.739073] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767304.944837] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767305.152304] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767305.357227] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767305.562450] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767305.768008] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767305.973645] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767306.178809] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767306.384101] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767306.589298] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767306.794857] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767306.999992] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767307.205387] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767307.410475] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767307.615761] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767307.820926] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767308.026645] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421767308.231559] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767308.438082] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767308.644418] 1482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767308.849855] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767309.054668] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767309.259905] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767309.465425] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767309.671571] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767309.877522] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767310.083194] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767310.288626] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767310.493964] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767310.700450] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421767310.906195] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767311.111340] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767311.316757] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767311.522306] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767311.728781] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767311.934988] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767312.141196] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421767312.347493] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767312.553147] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767312.758605] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767312.963928] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767313.169300] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767313.375267] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767313.580518] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767313.786475] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767313.992193] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767314.197660] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767314.403347] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767314.609645] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767314.815389] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767315.019935] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767315.224994] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767315.430573] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421767315.636778] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767315.843355] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767316.048156] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767316.252904] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767316.458020] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767316.664261] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767316.869337] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767317.074443] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767317.279378] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767317.484691] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767317.690288] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767317.895997] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767318.101249] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767318.306134] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767318.511241] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767318.717937] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767318.923806] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767319.129986] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767319.335022] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767319.540217] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767319.745536] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767319.950732] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767320.156645] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767320.361829] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767320.567280] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767320.774004] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767320.979082] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767321.184166] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767321.389419] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767321.595006] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767321.800380] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767322.006253] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767322.211212] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767322.417675] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767322.622799] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767322.827933] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767323.033583] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767323.238973] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421767323.444445] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767323.651470] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421767323.856875] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767324.061519] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767324.267606] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767324.473669] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767324.678981] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767324.885475] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767325.122243] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.7 ms +[1421767325.335622] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.42 ms +[1421767325.540950] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767325.746477] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767325.951389] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767326.156076] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767326.366015] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.91 ms +[1421767326.580109] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421767326.786538] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767326.991902] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767327.198184] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421767327.403420] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767327.609090] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767327.814879] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767328.019835] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767328.224673] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767328.429791] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767328.634810] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767328.840997] 1670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767329.045856] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767329.251667] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767329.457024] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767329.662295] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767329.867762] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767330.072764] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767330.277640] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767330.482498] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767330.687780] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767330.894748] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421767331.100112] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767331.305077] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767331.510742] 825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767331.715883] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767331.921654] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767332.127400] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767332.333789] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767332.540184] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767332.745798] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767332.951525] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767333.156973] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767333.363446] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767333.568520] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767333.775124] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767333.982025] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767334.186894] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767334.392913] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767334.598571] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767334.805585] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421767335.010504] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767335.216426] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767335.421947] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767335.628511] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421767335.834864] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767336.040812] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767336.246589] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767336.451806] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767336.657888] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767336.863806] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421767337.069984] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767337.275101] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767337.481853] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421767337.687429] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767337.892768] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767338.097596] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767338.303563] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767338.509026] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767338.714341] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767338.920262] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767339.125132] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767339.330628] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767339.536542] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767339.741808] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767339.947655] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421767340.153162] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767340.359178] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767340.565885] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767340.772662] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421767340.978331] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767341.183898] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767341.388923] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767341.594327] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767341.799294] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767342.003844] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767342.210255] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767342.415632] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767342.621011] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767342.827030] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767343.031798] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767343.236648] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767343.442515] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767343.648784] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767343.855296] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767344.060980] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767344.266227] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767344.471552] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767344.676840] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767344.882249] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767345.087608] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767345.292676] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767345.498836] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767345.705107] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767345.910302] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767346.116600] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421767346.322148] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767346.528058] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767346.733634] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767346.939157] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767347.144409] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767347.349732] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767347.554899] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767347.760345] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767347.965738] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767348.171132] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767348.376290] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767348.581661] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767348.786627] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767348.991653] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767349.196801] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767349.402280] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767349.608077] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767349.813825] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767350.018867] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767350.224043] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767350.430034] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767350.636084] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767350.840843] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767351.046683] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767351.252785] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767351.458727] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767351.664098] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767351.869395] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767352.075523] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767352.280974] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767352.486627] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767352.692594] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767352.897587] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767353.101978] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767353.306942] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767353.513772] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.03 ms +[1421767353.719171] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767353.924543] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767354.130267] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767354.336707] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767354.542261] 1175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767354.747619] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767354.954181] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767355.159301] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767355.364239] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767355.569242] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767355.774514] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767355.980969] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767356.187299] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767356.393657] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767356.599293] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767356.805720] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767357.010448] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767357.216682] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767357.421728] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767357.627034] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767357.831788] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767358.036302] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767358.241435] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767358.447695] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767358.653372] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767358.858850] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767359.063412] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767359.268815] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767359.475155] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421767359.681552] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421767359.887260] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767360.092398] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767360.297568] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767360.503842] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767360.709089] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767360.914818] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421767361.119981] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767361.326627] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767361.532455] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767361.738489] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767361.945168] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421767362.150409] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767362.357129] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767362.563520] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767362.769012] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767362.974602] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767363.180958] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767363.386114] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767363.592488] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421767363.798994] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421767364.004984] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421767364.210348] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767364.415232] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767364.621476] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767364.827792] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767365.033014] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767365.238234] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767365.443700] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421767365.650061] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767365.855095] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767366.059950] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767366.266196] 1522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767366.471687] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767366.676850] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767366.883856] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.75 ms +[1421767367.092736] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.94 ms +[1421767367.325580] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.3 ms +[1421767367.539918] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421767367.756658] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421767367.977807] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421767368.202208] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421767368.428284] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421767368.653129] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421767368.874737] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421767369.106572] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.2 ms +[1421767369.323073] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421767369.528804] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767369.733935] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767369.942643] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.66 ms +[1421767370.153836] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.92 ms +[1421767370.366848] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.14 ms +[1421767370.581518] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421767370.787159] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767371.007318] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421767371.231992] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421767371.453729] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421767371.681346] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421767371.907401] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421767372.134880] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421767372.370353] 1870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.5 ms +[1421767372.575837] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767372.782501] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767372.988166] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767373.193370] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767373.398578] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767373.603474] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767373.809684] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767374.016089] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421767374.226262] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.40 ms +[1421767374.439088] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.46 ms +[1421767374.649515] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767374.905104] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.9 ms +[1421767375.126991] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421767375.407576] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.4 ms +[1421767375.612746] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767375.818372] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767376.023082] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767376.233437] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.36 ms +[1421767376.463326] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421767376.676743] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.24 ms +[1421767376.895622] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421767377.115511] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421767377.337004] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421767377.565711] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421767377.791410] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421767378.072734] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.3 ms +[1421767378.357834] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.1 ms +[1421767378.582132] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421767378.788323] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767378.993318] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767379.198480] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767379.403910] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767379.609034] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767379.815678] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767380.021023] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767380.226250] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767380.431622] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767380.637452] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767380.842945] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767381.049414] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.10 ms +[1421767381.260076] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.80 ms +[1421767381.473924] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.97 ms +[1421767381.689032] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421767381.908291] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421767382.113793] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421767382.319248] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767382.524783] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767382.733256] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.61 ms +[1421767382.959380] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421767383.173647] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421767383.390864] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421767383.612510] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421767383.834649] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421767384.058914] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421767384.264382] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767384.470262] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767384.675398] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767384.880701] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767385.087274] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.23 ms +[1421767385.296919] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.03 ms +[1421767385.508950] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.91 ms +[1421767385.723499] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.2 ms +[1421767385.963198] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.4 ms +[1421767386.182695] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421767386.406125] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421767386.628094] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421767386.847114] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421767387.125849] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.7 ms +[1421767387.411675] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.7 ms +[1421767387.618111] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421767387.823320] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767388.028949] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767388.243816] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421767388.456748] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.80 ms +[1421767388.672411] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.4 ms +[1421767388.919888] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.5 ms +[1421767389.136319] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421767389.358699] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421767389.641174] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.3 ms +[1421767389.868060] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421767390.098135] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.3 ms +[1421767390.377003] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.2 ms +[1421767390.594400] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421767390.816959] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421767391.036285] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421767391.258354] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767391.546734] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.1 ms +[1421767391.773414] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421767391.998741] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421767392.203641] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767392.409228] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767392.614088] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767392.820820] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.85 ms +[1421767393.044689] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421767393.259235] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421767393.477701] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421767393.735059] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=53.2 ms +[1421767394.008693] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.8 ms +[1421767394.234861] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421767394.461051] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421767394.702178] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.8 ms +[1421767394.907841] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767395.113002] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767395.318160] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767395.523640] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767395.730542] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767395.936339] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767396.141672] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767396.347062] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767396.552148] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767396.757252] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767396.963492] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767397.170216] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767397.394302] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421767397.629483] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.6 ms +[1421767397.879979] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.4 ms +[1421767398.102268] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421767398.323202] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421767398.549385] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421767398.774711] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421767399.001866] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421767399.213761] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.84 ms +[1421767399.419928] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767399.626600] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767399.839535] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.99 ms +[1421767400.050168] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.85 ms +[1421767400.287343] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.2 ms +[1421767400.502529] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421767400.722620] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421767400.928312] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767401.133523] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767401.338881] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767401.545168] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767401.751089] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767401.956389] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767402.161355] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767402.366873] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767402.572525] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767402.777931] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767402.984450] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767403.189956] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767403.396402] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767403.602300] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767403.808678] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767404.013462] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767404.218733] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767404.425095] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767404.631892] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421767404.838455] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767405.043717] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767405.249182] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767405.455195] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421767405.660661] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767405.866132] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767406.072073] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767406.277156] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767406.482382] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767406.687233] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767406.892077] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767407.096582] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767407.301691] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767407.507983] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421767407.714616] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767407.919546] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767408.124783] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767408.329760] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767408.534533] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767408.740606] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421767408.947110] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767409.152652] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767409.358636] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767409.564980] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767409.770299] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767409.975733] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767410.182181] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767410.387546] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767410.592755] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767410.797875] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767411.002527] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767411.207985] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767411.413284] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767411.618992] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767411.825290] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767412.029880] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767412.235563] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767412.440441] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767412.645500] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767412.850718] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767413.055501] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767413.260630] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767413.467149] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767413.673594] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767413.878927] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767414.084173] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767414.289524] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767414.496830] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.92 ms +[1421767414.707060] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.12 ms +[1421767414.921405] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.98 ms +[1421767415.171265] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.6 ms +[1421767415.376684] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767415.582812] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767415.787761] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767415.998504] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.25 ms +[1421767416.203566] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767416.408553] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767416.614369] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767416.819516] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767417.024216] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767417.229308] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767417.434427] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767417.639351] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767417.844883] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767418.085097] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.5 ms +[1421767418.290054] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767418.496036] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767418.702007] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767418.907254] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767419.112032] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767419.316701] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767419.521544] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767419.727099] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421767419.932554] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421767420.137840] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767420.342705] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767420.547874] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767420.753509] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767420.960110] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421767421.165158] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767421.369983] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767421.575376] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767421.780762] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767421.985884] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767422.191084] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767422.396350] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767422.601399] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767422.806885] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767423.011838] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767423.218545] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.72 ms +[1421767423.423677] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767423.628578] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767423.834911] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767424.040351] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767424.245823] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767424.451161] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767424.657900] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421767424.864564] 1503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421767425.069986] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767425.275854] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767425.482078] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767425.687596] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767425.892900] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767426.097929] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767426.303274] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767426.509944] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421767426.716205] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767426.922269] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767427.128414] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767427.333648] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767427.539028] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767427.744341] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767427.949727] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767428.154741] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767428.359713] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767428.565182] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767428.770698] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767428.975914] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767429.181490] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767429.387071] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767439.797283] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767440.002679] 847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767440.207946] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767440.414277] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767440.619194] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767440.824514] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767441.029044] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767441.233952] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767441.439406] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767441.646128] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767441.851799] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767442.056932] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767442.262114] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767442.467923] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767442.673754] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421767442.880128] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767443.085199] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421767443.291407] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767443.497370] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767443.704000] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421767443.914887] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.65 ms +[1421767444.126287] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.58 ms +[1421767444.331684] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421767444.536715] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767444.741525] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767444.947494] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767445.152632] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767445.358668] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767445.564121] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767445.769052] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767445.974192] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767446.179347] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767446.384699] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767446.590689] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767446.796486] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767447.001809] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767447.207107] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767447.412266] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767447.617363] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767447.822455] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767448.027246] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767448.232282] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767448.437861] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767448.643016] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767448.848771] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767449.054756] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767449.261128] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767449.466162] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767449.671272] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767449.877913] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421767450.083685] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767450.288908] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767450.494772] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767450.700389] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767450.905866] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767451.110852] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767451.316512] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767451.522763] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767451.728699] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767451.933752] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767452.139994] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767452.345467] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767452.552340] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421767452.757929] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767452.963492] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767453.168887] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767453.375361] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767453.581747] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767453.788025] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767453.993740] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767454.199461] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767454.404964] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767454.610511] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421767454.816168] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767455.021442] 1156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767455.226457] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767455.432182] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421767455.637733] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767455.844086] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767456.049155] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767456.254018] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767456.459278] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767456.664772] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767456.870092] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767457.075338] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767457.281544] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767457.487970] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.72 ms +[1421767457.693416] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767457.898778] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767458.103904] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767458.308814] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767458.514218] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767458.719665] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767458.924785] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767459.131196] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767459.336853] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767459.542012] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767459.747538] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767459.952873] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767460.158864] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767460.363974] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767460.569289] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767460.774535] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767460.980880] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421767461.186451] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767461.392321] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767461.598228] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767461.804842] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421767462.009786] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767462.215072] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767462.421864] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767462.627796] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767462.832906] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767463.038443] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421767463.243769] 1049 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767463.448623] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767463.653750] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767463.860747] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767464.065877] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767464.270846] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421767464.476266] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767464.681246] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767464.886403] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767465.090696] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421767465.295690] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767465.500954] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767465.707517] 1482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767465.912918] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767466.118204] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767466.324198] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767466.530403] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767466.736648] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767466.943229] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767467.149704] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767467.354974] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767467.560106] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767467.765232] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767467.971025] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767468.177032] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767468.383940] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421767468.590586] 1670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767468.796877] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767469.002177] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767469.207707] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767469.413084] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767469.618459] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767469.823891] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767470.028420] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767470.233248] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767470.438764] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767470.644297] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767470.850317] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767471.055837] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767471.261555] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767471.468435] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767471.673839] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767471.879058] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767472.084826] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767472.289908] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767472.496008] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767472.701534] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767472.907052] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767473.111979] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767473.317034] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767473.522278] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767473.728251] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767473.933157] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767474.144368] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.36 ms +[1421767474.349577] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767474.555003] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767474.761745] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421767474.967673] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421767475.173790] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421767475.380079] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767475.585291] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767475.790812] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767475.996246] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767476.202630] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767476.407767] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767476.613117] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767476.818244] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767477.023122] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767477.229301] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767477.434513] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767477.639582] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767477.844667] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767478.049171] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767478.256020] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.81 ms +[1421767478.461669] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767478.668017] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767478.873208] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767479.077953] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767479.283206] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767479.489471] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767479.694619] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767479.899963] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421767480.105151] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421767480.311527] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421767480.516598] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767480.721666] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767480.927276] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767481.132350] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767481.337485] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767481.542806] 1133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767481.749139] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767481.955233] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421767482.160432] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767482.365366] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767482.570506] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767482.775683] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767482.981362] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767483.187956] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767483.393175] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767483.598932] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767483.808339] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.00 ms +[1421767484.016852] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.68 ms +[1421767484.226647] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.88 ms +[1421767484.432400] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421767484.637710] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767484.843882] 814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.85 ms +[1421767485.049013] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767485.255541] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421767485.460692] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767485.666226] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767485.872478] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767486.077253] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767486.283106] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767486.487890] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767486.693150] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767486.899200] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767487.103767] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767487.309010] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767487.515618] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767487.721188] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767487.926466] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767488.132539] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767488.337866] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767488.543881] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767488.750152] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767488.956800] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421767489.162613] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767489.367812] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767489.572844] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767489.778852] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767489.985049] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767490.190117] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767490.395360] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767490.601788] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767490.808531] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421767491.013295] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767491.218764] 1133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421767491.423908] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767491.629220] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767491.835439] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767492.040313] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767492.245550] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767492.451828] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421767492.658330] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767492.864191] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767493.070512] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767493.275991] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767493.481725] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767493.687609] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767493.892892] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767494.097930] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767494.302729] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767494.508971] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767494.714390] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767494.919896] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767495.125115] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767495.330408] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767495.537425] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767495.744210] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767495.949778] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767496.155536] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767496.360424] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767496.565669] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767496.770525] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767496.976804] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767497.182315] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767497.387721] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767497.592904] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767497.798405] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767498.003334] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767498.208568] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767498.413654] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767498.619391] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767498.825249] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767499.029774] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767499.236038] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767499.442392] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767499.647147] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767499.852624] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767500.057295] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767500.262481] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767500.468265] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767500.674627] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767500.879621] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767501.084667] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767501.289817] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767501.495268] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767501.701598] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.00 ms +[1421767501.907523] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767502.112912] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767502.317845] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767502.523620] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767502.729150] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767502.934702] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767503.140966] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767503.346147] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767503.551450] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767503.756319] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421767503.961842] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767504.168375] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767504.374367] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421767504.581103] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421767504.786676] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767504.991888] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767505.197074] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767505.402313] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767505.607494] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767505.814101] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767506.019535] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767506.225035] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767506.430242] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767506.635646] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767506.841786] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767507.047184] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767507.252164] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767507.457987] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767507.664038] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421767507.869604] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767508.074863] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767508.280830] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767508.486292] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767508.692384] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767508.897176] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767509.102009] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767509.307500] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767509.513369] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767509.718905] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767509.924469] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767510.129797] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767510.335045] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767510.541734] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767510.747399] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767510.952572] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767511.157359] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767511.362757] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767511.570091] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767511.776430] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767511.981847] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767512.187208] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767512.392379] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767512.597608] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767512.803120] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767513.009482] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767513.214659] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767513.420903] 1880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767513.627523] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767513.833332] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767514.038181] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767514.243505] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767514.449194] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767514.654286] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767514.859752] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767515.064672] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767515.271105] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767515.476081] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421767515.681125] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767515.886940] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421767516.091751] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767516.296731] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767516.502915] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767516.709219] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767516.914757] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767517.120211] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767517.325181] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767517.531240] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767517.737113] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767517.943037] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767518.149800] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767518.355396] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767518.560598] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767518.767135] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421767518.972521] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767519.177812] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767519.384520] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767519.589660] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767519.794878] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767520.000502] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767520.205803] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767520.412118] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767520.617893] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767520.823841] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767521.028704] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767521.234819] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767521.440289] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767521.645496] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767521.850770] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767522.055701] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767522.262128] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421767522.468672] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.79 ms +[1421767522.674389] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767522.879815] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767523.084577] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767523.289608] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767523.495158] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767523.701793] 1716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767523.907078] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767524.111806] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767524.317554] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767524.523262] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767524.729830] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767524.935186] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767525.140105] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767525.347399] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.41 ms +[1421767525.553908] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767525.759106] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767525.964117] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767526.169626] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767526.375124] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767526.581863] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767526.787269] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767526.992456] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767527.198648] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421767527.403978] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767527.610328] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767527.815958] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767528.020427] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767528.225618] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767528.431989] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767528.638257] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767528.843613] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767529.048525] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767529.254819] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767529.460004] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767529.666609] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421767529.872327] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767530.077428] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767530.282841] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767530.487584] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767530.692804] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767530.898840] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421767531.104192] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767531.309366] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767531.514968] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767531.720975] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421767531.926334] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767532.131723] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767532.337395] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767532.543915] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767532.749864] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767532.955239] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767533.160304] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767533.365726] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767533.571624] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767533.778415] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767533.984076] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767534.190407] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767534.396973] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767534.602755] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767534.808493] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767535.012990] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767535.217842] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767535.423448] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767535.629138] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767535.835602] 1566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767536.040828] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767536.246187] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767536.452540] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421767536.658720] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767536.863862] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767537.068744] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767537.275853] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.29 ms +[1421767537.482116] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767537.687148] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767537.892775] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767538.097729] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767538.303136] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767538.508760] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767538.713532] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767538.919944] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767539.124458] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767539.329451] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767539.534960] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767539.740082] 145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767539.945692] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767540.150478] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767540.356933] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421767540.563592] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421767540.768876] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767540.974354] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767541.179411] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767541.385588] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767541.590729] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767541.796320] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767542.001954] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767542.206924] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767542.411873] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767542.616733] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767542.822868] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767543.027577] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767543.232593] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767543.438257] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767543.644659] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421767543.850427] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767544.056470] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421767544.266765] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.62 ms +[1421767544.472195] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767544.678155] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767544.884017] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767545.089224] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767545.295143] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767545.501334] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767545.707693] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767545.912920] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767546.119012] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767546.323690] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767546.528517] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767546.733685] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767546.939486] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767547.145195] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767547.350646] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767547.555943] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767547.761439] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767547.967019] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767548.173727] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767548.378644] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767548.583723] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767548.788914] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767548.994312] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767549.199802] 30 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767549.404716] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767549.609387] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767549.814868] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767550.019550] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767550.224412] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767550.429698] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767550.635246] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767550.841252] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.96 ms +[1421767551.047919] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.94 ms +[1421767551.253133] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767551.459587] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767551.666065] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767551.871404] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767552.076530] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767552.282919] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767552.489749] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767552.695322] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767552.901217] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767553.106486] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767553.312347] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421767553.518563] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767553.724385] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767553.929845] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767554.134690] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767554.340580] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767554.545986] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767554.751512] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767554.957191] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767555.162295] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767555.368233] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421767555.574241] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767555.779498] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767555.984805] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767556.191600] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767556.397597] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767556.602501] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767556.807974] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767557.014035] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767557.220229] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767557.426291] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767557.632587] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767557.838710] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767558.043784] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767558.249171] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767558.454802] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767558.659762] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421767558.864905] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767559.071059] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767559.276007] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767559.481429] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767559.687553] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767559.893152] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767560.097732] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767560.303182] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767560.508468] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767560.713936] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767560.919983] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421767561.125259] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767561.330572] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767561.535669] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767561.740899] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767561.946400] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767562.151636] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767562.357998] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767562.563829] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767562.769615] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767562.975459] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767563.181133] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767563.387408] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767563.592729] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767563.798402] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767564.008139] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767564.214432] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767564.420681] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767564.626344] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767564.832220] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767565.036912] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767565.242164] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767565.447893] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767565.662111] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.91 ms +[1421767565.907443] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=41.0 ms +[1421767566.119022] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.02 ms +[1421767566.323892] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767566.528942] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767566.733947] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767566.939238] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767567.144599] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767567.350461] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767567.556276] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767567.762068] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767567.967766] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767568.174109] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767568.380439] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767568.585639] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767568.791910] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421767568.997228] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767569.202593] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767569.408277] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421767569.615759] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.92 ms +[1421767569.848852] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.0 ms +[1421767570.091963] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.3 ms +[1421767570.309676] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421767570.529145] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421767570.746482] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421767570.952296] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767571.158207] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767571.363311] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767571.569162] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767571.774546] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767571.979767] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767572.184690] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767572.389528] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767572.594710] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767572.799738] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767573.005455] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767573.210774] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767573.415714] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767573.620952] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767573.827573] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421767574.032486] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767574.237535] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767574.442804] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767574.648376] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767574.853660] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767575.059708] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767575.264747] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767575.469433] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767575.675881] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421767575.881668] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767576.086734] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767576.292397] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767576.497802] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767576.704438] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767576.909922] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767577.115821] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767577.321876] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421767577.526954] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767577.731529] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767577.936819] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767578.141976] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767578.347464] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767578.553234] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767578.759054] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767578.965865] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421767579.172595] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767579.378042] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767579.583370] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767579.788606] 145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767579.993971] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767580.198843] 130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767580.404284] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767580.609778] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767580.818955] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.76 ms +[1421767581.027693] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.15 ms +[1421767581.239745] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.20 ms +[1421767581.444827] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767581.650265] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767581.855642] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767582.061335] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767582.267535] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767582.473288] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767582.680494] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421767582.886557] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767583.091937] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421767583.298027] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767583.503496] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767583.712717] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.49 ms +[1421767583.918359] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767584.124034] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767584.329367] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767584.534990] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767584.741676] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767584.948431] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767585.154835] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.04 ms +[1421767585.360400] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767585.566950] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767585.772327] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767585.979112] 1870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421767586.185528] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767586.391055] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767586.597170] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767586.802223] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767587.008173] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767587.213460] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767587.418922] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767587.625589] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767587.830947] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767588.035629] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767588.242345] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767588.447629] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767588.652096] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767588.858083] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767589.063611] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421767589.269070] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767589.474202] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767589.679491] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767589.885180] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767590.089970] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767590.295373] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767590.500267] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767590.705883] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767590.911552] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767591.118103] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767591.323496] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767591.529278] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767591.735003] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767591.940356] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767592.145651] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767592.350310] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767592.555648] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767592.761626] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767592.968394] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767593.174019] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767593.379342] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767593.584679] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767593.790349] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767593.996755] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767594.201730] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767594.407905] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767594.614295] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767594.819953] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767595.024838] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767595.229870] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767595.435240] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767595.641097] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767595.847538] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767596.052495] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767596.257752] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767596.464174] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767596.670998] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767596.876418] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767597.082692] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767597.288007] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767597.493696] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767597.700845] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.77 ms +[1421767597.906605] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767598.112240] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767598.317619] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767598.523150] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767598.728869] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767598.934326] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767599.139334] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767599.373354] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.0 ms +[1421767599.580053] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767599.785472] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767599.991591] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767600.197434] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767600.403387] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421767600.608624] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767600.813940] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767601.020098] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767601.225508] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767601.430478] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767601.636701] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767601.843064] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767602.049340] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421767602.254826] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767602.460874] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421767602.665977] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767602.872444] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767603.078354] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767603.283439] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767603.488608] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767603.693849] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767603.899463] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767604.104507] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767604.309586] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767604.515905] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767604.721866] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767604.928410] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767605.133207] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767605.338127] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767605.543383] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767605.748557] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767605.953655] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767606.158848] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767606.364546] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421767606.570602] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421767606.777190] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767606.983569] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767607.188847] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767607.394118] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767607.599291] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767607.804967] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767608.009929] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767608.215028] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767608.420051] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767608.625926] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767608.830757] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767609.035070] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421767609.240047] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767609.445739] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767609.651661] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767609.856805] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767610.061418] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767610.266126] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767610.471516] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767610.678441] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767610.885002] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421767611.090242] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767611.295422] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767611.500941] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767611.706756] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767611.912762] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767612.118110] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767612.323135] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767612.529262] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767612.735397] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767612.941548] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767613.147804] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767613.354033] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767613.559545] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767613.765287] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767613.971026] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421767614.176253] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767614.381493] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767614.587034] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767614.792805] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767614.999595] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767615.205087] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767615.410520] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767615.615914] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767615.821165] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767616.025856] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767616.231982] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767616.437842] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767616.644608] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767616.850655] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767617.055545] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767617.260827] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767617.466989] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767617.673618] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767617.879090] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767618.083980] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767618.290380] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767618.496273] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767618.701662] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767618.907568] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767619.113299] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767619.318700] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767619.525236] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767619.730157] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767619.936779] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767620.141738] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767620.347780] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767620.552626] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767620.758991] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767620.964487] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767621.171023] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767621.376594] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767621.582029] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767621.787427] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767621.993778] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767622.198933] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767622.404354] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767622.609435] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767622.814780] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767623.019414] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767623.225218] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767623.431651] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767623.637378] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767623.842744] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767624.047517] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767624.252558] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767624.457896] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767624.662773] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767624.868085] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767625.073997] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767625.279234] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767625.484567] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767625.690212] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767625.895584] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767626.101684] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767626.307018] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767626.513404] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767626.719150] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767626.924797] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767627.130259] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767627.335668] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767627.540853] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767627.746361] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767627.953142] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767628.159239] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767628.364766] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767628.570730] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767628.776499] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767628.983464] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421767629.189213] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767629.394654] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767629.600723] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767629.807016] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767630.012984] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767630.219237] 1870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767630.424612] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767630.630025] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767630.835593] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767631.040953] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421767631.246860] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421767631.452516] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767631.658579] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421767631.865205] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767632.070000] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767632.274928] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767632.480045] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767632.685443] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767632.890974] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767633.096489] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767633.301609] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767633.507591] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767633.712995] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767633.918108] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767634.123622] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767634.328774] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767634.534460] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767634.739936] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767634.945008] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767635.149616] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767635.356022] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421767635.561982] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421767635.767453] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767635.973957] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767636.179531] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767636.388094] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.82 ms +[1421767636.601350] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.05 ms +[1421767636.807163] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767637.012409] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767637.218230] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421767637.423693] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767637.629099] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767637.834561] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767638.039465] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767638.244606] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767638.449800] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767638.656092] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767638.861018] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767639.065545] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767639.270849] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767639.476018] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767639.681230] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767639.886984] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767640.092214] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767640.297739] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767640.503669] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767640.709272] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767640.915578] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767641.121408] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767641.327846] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767641.533304] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767641.738567] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767641.943993] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767642.149594] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767642.356011] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421767642.561701] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767642.767509] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767642.973032] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767643.178875] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767643.385393] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421767643.590752] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767643.796566] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421767644.001636] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767644.206773] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767644.411755] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767644.616685] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767644.823035] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767645.027968] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767645.233159] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767645.440057] 1870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767645.646868] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767645.852302] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767646.057082] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767646.262083] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767646.468441] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767646.673758] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767646.879134] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767647.085221] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767647.290867] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767647.496412] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767647.701906] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767647.908326] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767648.113351] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767648.318623] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767648.524740] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767648.730023] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767648.935334] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767649.140474] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767649.346736] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767649.552107] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767649.757378] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767649.962865] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767650.168387] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767650.373782] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767650.578982] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767650.783930] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767650.989444] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767651.195046] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767651.399995] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767651.605156] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767651.811498] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767652.017347] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767652.222567] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767652.428696] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767652.634202] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767652.839143] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767653.043997] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767653.249286] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767653.455118] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767653.660485] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767653.866679] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767654.071667] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767654.276619] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767654.481770] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767654.687259] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767654.892905] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767655.098076] 1148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767655.302806] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767655.508366] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767655.713608] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767655.919054] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767656.123991] 847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767656.329234] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767656.534333] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767656.740949] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767656.946527] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767657.152106] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767657.357400] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767657.562838] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767657.768392] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767657.975203] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767658.180243] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.02 ms +[1421767658.385565] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767658.590818] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767658.796375] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767659.001986] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767659.208329] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767659.413395] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767659.618282] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767659.823362] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767660.028418] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767660.233188] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767660.439340] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767660.644385] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767660.849784] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767661.056216] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767661.261397] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767661.467827] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767661.673855] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767661.879418] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767662.084336] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767662.289632] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767662.494958] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767662.700574] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767662.905952] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767663.111266] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767663.316278] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767663.521613] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767663.726599] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767663.931990] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767664.138073] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767664.343333] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767664.550661] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.64 ms +[1421767664.756353] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767664.961582] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767665.167461] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767665.372732] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767665.578343] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767665.783445] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767665.989884] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421767666.195385] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767666.401916] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421767666.607320] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767666.812877] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767667.017653] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767667.224022] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767667.429462] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767667.634552] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767667.839719] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767668.044441] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767668.249514] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421767668.454654] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767668.675496] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421767668.882160] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767669.087130] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767669.293142] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767669.498093] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767669.707415] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.35 ms +[1421767669.913002] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767670.117770] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767670.323057] 837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767670.528881] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767670.734701] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767670.940182] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767671.145174] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767671.351790] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767671.556890] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767671.762208] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767671.968161] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767672.173690] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767672.378903] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767672.584832] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767672.790108] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767672.995318] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767673.200083] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767673.405172] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767673.611484] 1897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767673.817574] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767674.022182] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767674.227289] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767674.432477] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767674.637499] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767674.843466] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767675.048891] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767675.254164] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767675.459420] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767675.664765] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767675.871420] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767676.077138] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767676.283431] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767676.488676] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767676.693640] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767676.898417] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767677.103986] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767677.310159] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767677.515358] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767677.720545] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767677.926085] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767678.131309] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767678.336664] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767678.542371] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767678.747986] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767678.954778] 1955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421767679.160367] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767679.365660] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767679.570986] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767679.776425] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767679.982405] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767680.187978] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767680.393040] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767680.599278] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767680.804839] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767681.010060] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767681.214882] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767681.421190] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421767681.626448] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767681.831727] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767682.036321] 1261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767682.242078] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767682.447918] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767682.652934] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767682.858407] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767683.063245] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767683.268584] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767683.474201] 555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767683.679509] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767683.886313] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767684.091316] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767684.296236] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767684.502761] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767684.709161] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767684.915375] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767685.121972] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767685.328013] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767685.533950] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421767685.739290] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767685.944149] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767686.149102] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767686.354401] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767686.560265] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767686.765790] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767686.971591] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767687.177444] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767687.382400] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767687.587597] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767687.792688] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767687.998120] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767688.203016] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767688.408382] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767688.614648] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767688.819606] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767689.025537] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767689.232247] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421767689.437636] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767689.643485] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767689.849427] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767690.054213] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767690.259615] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767690.464965] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767690.670692] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767690.875977] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767691.081370] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767691.287683] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767691.494530] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767691.700500] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767691.905959] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767692.110908] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767692.316273] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767692.521786] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767692.726854] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767692.931824] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767693.137009] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767693.341934] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767693.547406] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767693.754432] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421767693.959785] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767694.164788] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767694.370521] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767694.577233] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767694.782877] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767694.988006] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767695.192848] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767695.397988] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767695.603009] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767695.808414] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421767696.013093] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767696.218120] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767696.423411] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767696.629184] 1186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767696.835604] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767697.040486] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767697.245455] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767697.450881] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767697.657832] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421767697.864807] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421767698.071162] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421767698.277200] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767698.482191] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767698.686953] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767698.892731] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767699.098424] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767699.303765] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767699.509340] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767699.714484] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767699.919425] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767700.124576] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767700.338163] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.52 ms +[1421767700.543535] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767700.748550] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767700.953910] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767701.160979] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421767701.366654] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421767701.572767] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767701.778949] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421767701.984233] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767702.190450] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767702.395713] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767702.600880] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767702.807400] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767703.012548] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767703.218388] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767703.424544] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767703.629912] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767703.836542] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767704.041738] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767704.247024] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767704.453046] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421767704.659345] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.67 ms +[1421767704.864544] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767705.069293] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767705.274509] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767705.479653] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767705.684661] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767705.889726] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767706.094595] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767706.299368] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767706.504433] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767706.710812] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767706.917310] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767707.122293] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767707.328462] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767707.533153] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767707.738523] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421767707.946154] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.32 ms +[1421767708.170546] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421767708.383474] 1072 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.82 ms +[1421767708.588987] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767708.795584] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767709.000691] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767709.207922] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.40 ms +[1421767709.430855] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421767709.642764] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.09 ms +[1421767709.848160] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767710.052717] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767710.257834] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767710.463215] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767710.669735] 1720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767710.875141] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767711.079877] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767711.284973] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767711.490645] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767711.697143] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767711.902246] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767712.108170] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767712.314306] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767712.519832] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767712.724872] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767712.930252] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767713.136572] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767713.342285] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767713.548410] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421767713.753810] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767713.959936] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767714.165313] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767714.370615] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767714.576182] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767714.782086] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767714.987849] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767715.193505] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767715.399150] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767715.604677] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767715.809917] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767716.014820] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767716.219979] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767716.425192] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767716.630374] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767716.836710] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767717.041191] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767717.246141] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767717.451369] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767717.659061] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767717.864147] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767718.068714] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767718.273457] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767718.478752] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767718.683582] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767718.888654] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767719.096118] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.93 ms +[1421767719.301522] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767719.506612] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767719.711377] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767719.916507] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767720.122056] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767720.326904] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767720.532547] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767720.737949] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767720.943632] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767721.148827] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767721.354246] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421767721.559545] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767721.764585] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767721.970011] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767722.175222] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767722.381568] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767722.587658] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767722.792801] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767722.998212] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767723.203819] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767723.409182] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767723.615073] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767723.821377] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767724.026903] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767724.231926] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767724.437118] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767724.642291] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767724.849122] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767725.055487] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421767725.260697] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767725.467108] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767725.672728] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767725.878400] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767726.083556] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767726.288462] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767726.493854] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767726.699489] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767726.905000] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767727.110058] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421767727.314941] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767727.519979] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767727.725509] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767727.931927] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421767728.138516] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767728.343620] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767728.549528] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767728.755125] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767728.961096] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767729.166248] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767729.372578] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767729.578279] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767729.783203] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767729.989591] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767730.194898] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767730.399858] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767730.605941] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767730.811140] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767731.016134] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767731.221672] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767731.426993] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767731.632583] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767731.839094] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421767732.044124] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767732.250496] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767732.457154] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767732.662077] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767732.867062] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767733.072196] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767733.277129] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767733.482604] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767733.687792] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767733.893908] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767734.098827] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767734.304768] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767734.509786] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767734.714906] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767734.920155] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767735.125605] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767735.330907] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767735.536645] 841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767735.743427] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767735.949072] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767736.155697] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767736.361768] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767736.567168] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767736.773919] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767736.980214] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421767737.185856] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767737.390903] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767737.597144] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767737.802367] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767738.007130] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767738.213446] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767738.418296] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767738.623605] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767738.829686] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421767739.034238] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767739.239103] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767739.443859] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421767739.650118] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767739.855690] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767740.060470] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767740.265744] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767740.472095] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767740.676919] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767740.883614] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767741.088855] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767741.294330] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767741.499561] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767741.705037] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767741.911177] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767742.116311] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767742.321016] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767742.526296] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767742.732733] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767742.938526] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767743.144075] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767743.350225] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767743.555741] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767743.761467] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767743.967065] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767744.172229] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767744.378648] 1716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767744.585262] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767744.790554] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767744.995752] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767745.201676] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767745.407090] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767745.613726] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767745.819886] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421767746.025433] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767746.230267] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767746.435296] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767746.640372] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767746.845088] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767747.049540] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767747.254407] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767747.460631] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767747.666050] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767747.871654] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421767748.076629] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767748.281708] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767748.487566] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767748.693148] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767748.898636] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767749.103979] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767749.309289] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767749.514991] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767749.720508] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767749.925742] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767750.131629] 1175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767750.337123] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767750.542835] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767750.747829] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767750.952902] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767751.158756] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767751.363876] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767751.569132] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767751.774501] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767751.979900] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767752.186211] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767752.391717] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767752.597451] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767752.803001] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767753.008099] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767753.213465] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767753.418324] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767753.623527] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767753.828411] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767754.033142] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767754.238286] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767754.444940] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421767754.650997] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767754.856914] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767755.063113] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767755.269704] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421767755.474614] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767755.680294] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767755.885423] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767756.090611] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421767756.296387] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767756.502709] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421767756.708256] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767756.913889] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767757.119570] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767757.324711] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767757.530597] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421767757.735576] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767757.941805] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767758.146940] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767758.352198] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767758.557873] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767758.763975] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767758.969898] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767759.175318] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767759.380768] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767759.586139] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767759.791158] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767759.996136] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767760.201463] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767760.407070] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767760.611868] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767760.818326] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421767761.023667] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767761.229628] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767761.435923] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421767761.641371] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767761.846745] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767762.052832] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767762.261218] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.51 ms +[1421767762.467652] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767762.674537] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421767762.879944] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767763.085309] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767763.290435] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767763.496474] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767763.701878] 555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767763.907294] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767764.112645] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421767764.319162] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767764.524818] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767764.731233] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421767764.938163] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421767765.143767] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767765.349517] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767765.554848] 825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767765.760240] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767765.966698] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421767766.172168] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767766.378861] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.67 ms +[1421767766.584077] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767766.789158] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767766.995411] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767767.200412] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767767.406758] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421767767.612758] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767767.818114] 1417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767768.022631] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767768.229154] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767768.434717] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767768.639916] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767768.845282] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767769.050169] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767769.256347] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767769.461659] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421767769.667232] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767769.872658] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767770.078305] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767770.283420] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767770.489253] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767770.695972] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421767770.901401] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767771.107430] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767771.312643] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767771.518707] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767771.724205] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767771.930836] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767772.136488] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767772.341594] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767772.546780] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767772.752253] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767772.959572] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.82 ms +[1421767773.166669] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.00 ms +[1421767773.376507] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.90 ms +[1421767773.586994] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.46 ms +[1421767773.798947] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.81 ms +[1421767774.015096] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421767774.237590] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421767774.464524] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421767774.692377] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421767774.957715] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=61.0 ms +[1421767775.186582] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421767775.475941] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.1 ms +[1421767775.754859] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.5 ms +[1421767775.974186] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421767776.257664] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.1 ms +[1421767776.481516] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421767776.687154] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767776.893576] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767777.099290] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767777.306166] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.91 ms +[1421767777.516746] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.12 ms +[1421767777.731216] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421767777.973151] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=37.5 ms +[1421767778.188401] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421767778.459508] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=67.3 ms +[1421767778.729848] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=66.2 ms +[1421767779.003593] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.8 ms +[1421767779.287879] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.3 ms +[1421767779.571293] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.4 ms +[1421767779.851411] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.2 ms +[1421767780.073171] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421767780.292497] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421767780.517728] 1330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421767780.742876] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421767780.970962] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421767781.196464] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421767781.411729] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421767781.617515] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767781.826237] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.38 ms +[1421767782.033486] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.89 ms +[1421767782.246342] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.10 ms +[1421767782.460961] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421767782.676617] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.4 ms +[1421767782.891604] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421767783.111659] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421767783.391060] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.5 ms +[1421767783.676006] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.1 ms +[1421767783.902987] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421767784.190088] 1503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.0 ms +[1421767784.455619] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=61.7 ms +[1421767784.661341] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767784.866973] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767785.072841] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767785.278451] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767785.484252] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767785.689656] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767785.895457] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421767786.100301] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767786.305364] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767786.511361] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767786.717172] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767786.923771] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767787.129563] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767787.335698] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767787.540706] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767787.746503] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767787.952164] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767788.157582] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767788.362820] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767788.568409] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767788.773452] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767788.978965] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767789.184229] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767789.389614] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767789.595326] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767789.800742] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767790.005954] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767790.211194] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767790.416493] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767790.622574] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767790.828144] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767791.041595] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421767791.271341] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421767791.485809] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.3 ms +[1421767791.737394] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=47.2 ms +[1421767792.003983] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.5 ms +[1421767792.209037] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767792.415613] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767792.622456] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767792.838510] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.9 ms +[1421767793.051380] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.07 ms +[1421767793.264439] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.56 ms +[1421767793.517305] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.3 ms +[1421767793.779772] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=58.5 ms +[1421767793.999127] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421767794.224231] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421767794.455125] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.9 ms +[1421767794.738169] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.7 ms +[1421767794.957572] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421767795.237126] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.7 ms +[1421767795.453616] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421767795.660104] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767795.865690] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767796.070742] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767796.275900] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767796.480807] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767796.685882] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767796.892435] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767797.113800] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421767797.346142] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.8 ms +[1421767797.591494] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=40.8 ms +[1421767797.806834] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421767798.012518] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767798.217895] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767798.424132] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421767798.631448] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.02 ms +[1421767798.843630] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.70 ms +[1421767799.061212] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421767799.273442] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.25 ms +[1421767799.488282] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421767799.705965] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421767799.929570] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421767800.152726] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421767800.381310] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421767800.662161] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.5 ms +[1421767800.889236] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421767801.094362] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767801.299502] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767801.504903] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767801.709493] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767801.916723] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.36 ms +[1421767802.124828] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.34 ms +[1421767802.338341] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.73 ms +[1421767802.543533] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767802.748435] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767802.955092] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421767803.160386] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767803.366551] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767803.572078] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421767803.777203] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767803.982269] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767804.187527] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767804.392967] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767804.598747] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767804.804422] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767805.009695] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767805.215628] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767805.420855] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767805.626639] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767805.832478] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767806.037308] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767806.243750] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421767806.450098] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767806.655673] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767806.861656] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767807.066875] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767807.272789] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767807.478030] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767807.684288] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767807.889831] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767808.094593] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767808.301033] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767808.507615] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767808.712707] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767808.917790] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767809.123898] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421767809.329133] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767809.534505] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767809.741351] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421767809.947231] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421767810.152451] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767810.357585] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767810.562968] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767810.769481] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767810.975404] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767811.181003] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767811.386167] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767811.591715] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767811.797666] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767812.002596] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767812.207553] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767812.412830] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767812.617662] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767812.822888] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767813.027966] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767813.233772] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767813.439027] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767813.644543] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767813.849757] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.03 ms +[1421767814.054339] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767814.259333] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767814.468749] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.37 ms +[1421767814.673732] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767814.879175] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767815.084370] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767815.289595] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767815.494869] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767815.700349] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767815.905483] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767816.110370] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767816.316074] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767816.521678] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767816.726824] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767816.932254] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767817.138651] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767817.343522] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767817.548694] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767817.754205] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767817.959771] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767818.164898] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767818.370984] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767818.577028] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767818.782180] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767818.987410] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767819.192910] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767819.398022] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767819.604468] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767819.809503] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767820.014410] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767820.219411] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767820.424749] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767820.630791] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767820.836093] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767821.041233] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767821.247482] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767821.452550] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767821.659081] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421767821.864763] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767822.069636] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767822.274808] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767822.480191] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767822.684908] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767822.889915] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767823.094557] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767823.299710] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767823.505378] 1148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767823.712093] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421767823.918111] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421767824.123097] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767824.328917] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767824.533806] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767824.739850] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767824.945829] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767825.151080] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767825.356355] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767825.562941] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421767825.768645] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421767825.974190] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421767826.180324] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767826.385607] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767826.593777] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767826.799500] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767827.004610] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767827.210247] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767827.415262] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767827.621808] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767827.827086] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767828.032910] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767828.238299] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767828.443735] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767828.649949] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767828.855380] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767829.061257] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767829.266207] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767829.471185] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767829.676327] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767829.881652] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767830.086309] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767830.291680] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767830.497820] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767830.704622] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767830.910768] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767831.117007] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421767831.321898] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767831.527438] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767831.733646] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767831.938932] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767832.144260] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767832.349483] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767832.554961] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767832.760377] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767832.965988] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767833.171264] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767833.376374] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767833.582514] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767833.788203] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767833.993723] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767834.199594] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767834.405151] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767834.610870] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767834.816472] 512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767835.021434] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767835.226508] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767835.432423] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421767835.637699] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767835.844259] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767836.049394] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767836.254278] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767836.459567] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767836.665168] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767836.870663] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767837.075913] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767837.281164] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767837.486528] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767837.692771] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767837.897911] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767838.102856] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767838.308673] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767838.514130] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767838.719593] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767838.924997] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767839.131428] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767839.336631] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767839.542005] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767839.747553] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767839.953011] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767840.158668] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767840.363741] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767840.570233] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767840.775860] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767840.982437] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767841.188412] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767841.394718] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421767841.599889] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767841.805732] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767842.011125] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421767842.216539] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767842.422560] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767842.627792] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767842.833338] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767843.038699] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421767843.243757] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767843.449019] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767843.654448] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767843.860711] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767844.065584] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767844.270729] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767844.477080] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767844.682444] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767844.887663] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767845.092806] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767845.298658] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767845.504472] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421767845.709869] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767845.916501] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767846.122816] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767846.328253] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421767846.534100] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421767846.739353] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767846.945750] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421767847.151109] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767847.357181] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767847.562625] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421767847.767899] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767847.973510] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767848.179898] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767848.386898] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421767848.593874] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421767848.799588] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767849.004788] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767849.209891] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767849.415041] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767849.621184] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767849.827848] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767850.032846] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767850.239013] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767850.444633] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767850.650033] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767850.856070] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421767851.061991] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767851.267369] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767851.472777] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767851.677752] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767851.883637] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767852.089652] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421767852.295031] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767852.500562] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767852.705516] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767852.910743] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767853.115648] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767853.322182] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767853.527994] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767853.734431] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767853.940006] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767854.145971] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421767854.351218] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767854.556573] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767854.761730] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767854.968272] 1529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767855.174748] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767855.380993] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767855.586311] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767855.792411] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767855.998736] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767856.204347] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767856.409530] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767856.614849] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767856.821013] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767857.026741] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767857.232076] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767857.437175] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767857.642364] 841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767857.848175] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767858.053317] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767858.258489] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767858.463987] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767858.669145] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767858.874239] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767859.079936] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767859.285866] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767859.491035] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767859.697196] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767859.903431] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767860.109037] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421767860.315193] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767860.520065] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767860.725232] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767860.932098] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767861.138285] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.93 ms +[1421767861.344541] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767861.550129] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767861.756478] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767861.962107] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767862.167401] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767862.372545] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767862.577947] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767862.783451] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767862.989247] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767863.194118] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767863.401017] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421767863.606198] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767863.811786] 1063 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767864.016841] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767864.222084] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767864.427249] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767864.633820] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421767864.840580] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767865.045480] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767865.251709] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767865.457281] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767865.663708] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767865.869822] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767866.074838] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767866.280046] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767866.485708] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421767866.692348] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767866.897614] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767867.102423] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767867.308483] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767867.514718] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767867.719638] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767867.924745] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767868.130983] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767868.337712] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767868.542916] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767868.748054] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767868.953588] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767869.158691] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767869.364698] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767869.569660] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767869.774720] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767869.980030] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767870.186631] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421767870.391854] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767870.597175] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767870.802813] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767871.008074] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767871.213685] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767871.418857] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767871.624004] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767871.828811] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767872.034456] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767872.240575] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767872.446957] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767872.652779] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767872.858181] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767873.064079] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767873.269347] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767873.474597] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767873.680928] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767873.885996] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767874.091894] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767874.298278] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421767874.503794] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767874.710242] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767874.920255] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.76 ms +[1421767875.125783] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767875.331307] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767875.536754] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767875.743253] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767875.948906] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767876.154322] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767876.360556] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767876.567396] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421767876.773949] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421767876.979346] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767877.185145] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767877.390116] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767877.595602] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767877.800844] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767878.005786] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767878.211050] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767878.417289] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767878.623781] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767878.828915] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421767879.033766] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767879.239855] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767879.445465] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421767879.651166] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421767879.856209] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767880.061818] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767880.268243] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767880.473704] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767880.679417] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767880.885354] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767881.090430] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767881.295524] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767881.500583] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767881.706258] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767881.911788] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767882.117424] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767882.322987] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767882.529837] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767882.735207] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767882.941847] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767883.147078] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767883.353489] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767883.558818] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767883.764744] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767883.970175] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767884.174984] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767884.379834] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767884.586027] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767884.791447] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767884.996768] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767885.202226] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767885.407345] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767885.612665] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767885.818183] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767886.023994] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421767886.228832] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767886.435261] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421767886.640832] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767886.846933] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767887.051776] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767887.257411] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767887.465890] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767887.671806] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767887.876872] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767888.081927] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767888.286866] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767888.493215] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767888.699087] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767888.905809] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767889.111052] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767889.317524] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767889.523192] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767889.728238] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767889.934333] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767890.140166] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767890.345394] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767890.550378] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767890.755582] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767890.960753] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767891.166756] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421767891.372459] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767891.578042] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767891.783478] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767891.990226] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767892.195499] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767892.400929] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767892.607467] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767892.812978] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767893.018128] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767893.223600] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767893.428691] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767893.634854] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767893.840084] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767894.049168] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.08 ms +[1421767894.254618] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767894.460157] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767894.665692] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767894.871530] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767895.077399] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767895.282378] 1049 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767895.488001] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767895.693171] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767895.898401] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767896.103238] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767896.309131] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767896.514554] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767896.720768] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767896.926721] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767897.131675] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767897.337785] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421767897.543314] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767897.748944] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767897.954119] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767898.159547] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421767898.364458] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767898.569701] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767898.775213] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767898.980762] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767899.187018] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767899.392132] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767899.597521] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767899.803286] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767900.007871] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767900.212992] 904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767900.418197] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767900.624400] 1716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767900.830793] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767901.036249] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421767901.241596] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421767901.448884] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.35 ms +[1421767901.654145] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767901.859653] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767902.064620] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767902.270824] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421767902.479433] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.31 ms +[1421767902.689748] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.22 ms +[1421767902.896187] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767903.102213] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767903.308205] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767903.527997] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421767903.740008] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.95 ms +[1421767903.955027] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421767904.205491] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.4 ms +[1421767904.465634] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=55.9 ms +[1421767904.692722] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421767904.972980] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.1 ms +[1421767905.245733] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=68.4 ms +[1421767905.450804] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767905.657180] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767905.862925] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767906.074718] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.14 ms +[1421767906.293177] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421767906.512310] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421767906.735405] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421767906.965397] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421767907.254219] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.6 ms +[1421767907.487070] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.6 ms +[1421767907.770142] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.7 ms +[1421767907.999742] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421767908.226318] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421767908.431291] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767908.636921] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767908.843856] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421767909.052832] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.33 ms +[1421767909.263933] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.31 ms +[1421767909.481416] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421767909.694647] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.93 ms +[1421767909.913332] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421767910.191775] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.6 ms +[1421767910.414416] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421767910.640453] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421767910.867520] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421767911.148685] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.4 ms +[1421767911.354102] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767911.559472] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767911.764596] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767911.970112] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767912.176482] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767912.381485] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767912.587129] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767912.792624] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767912.998196] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767913.204231] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767913.414033] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.87 ms +[1421767913.630547] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421767913.874427] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.5 ms +[1421767914.092068] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421767914.311437] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421767914.517144] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767914.723727] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767914.928513] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767915.134381] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421767915.356774] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421767915.568717] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.70 ms +[1421767915.781935] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.87 ms +[1421767916.042253] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.1 ms +[1421767916.248554] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767916.521338] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.0 ms +[1421767916.742049] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421767916.968431] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421767917.191781] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421767917.414414] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421767917.700798] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.1 ms +[1421767917.926247] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421767918.146276] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421767918.370697] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421767918.596071] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421767918.821171] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421767919.045174] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421767919.270773] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421767919.482528] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.81 ms +[1421767919.688661] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767919.893829] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767920.102368] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.74 ms +[1421767920.314316] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.21 ms +[1421767920.529006] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421767920.750804] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421767921.015734] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.7 ms +[1421767921.236139] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421767921.462205] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421767921.750921] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.4 ms +[1421767921.978388] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421767922.197736] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421767922.418552] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421767922.624268] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767922.907131] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.8 ms +[1421767923.133989] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421767923.419594] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.4 ms +[1421767923.704411] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.9 ms +[1421767923.930776] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421767924.155801] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421767924.378087] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421767924.584691] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767924.790799] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421767924.997551] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767925.207408] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.69 ms +[1421767925.420685] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.30 ms +[1421767925.633708] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.43 ms +[1421767925.848549] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421767926.068228] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421767926.320392] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.2 ms +[1421767926.525567] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767926.730956] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767926.937711] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421767927.172819] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.1 ms +[1421767927.390915] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421767927.661631] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=66.5 ms +[1421767927.944376] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.3 ms +[1421767928.149850] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767928.356545] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767928.563156] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767928.768088] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767928.973488] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767929.178456] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767929.383909] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421767929.594571] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.61 ms +[1421767929.807933] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.41 ms +[1421767930.027868] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421767930.242348] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421767930.460944] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421767930.679234] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421767930.884724] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767931.090960] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421767931.297591] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.89 ms +[1421767931.507858] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.85 ms +[1421767931.720561] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.50 ms +[1421767931.934802] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.48 ms +[1421767932.153982] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421767932.375156] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421767932.598823] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421767932.824891] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421767933.109187] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.0 ms +[1421767933.333791] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421767933.553286] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421767933.758521] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767933.981860] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421767934.268009] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.4 ms +[1421767934.493809] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421767934.722100] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421767935.009228] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.1 ms +[1421767935.251441] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.2 ms +[1421767935.460197] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767935.665678] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767935.871339] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767936.084008] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.21 ms +[1421767936.294488] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.56 ms +[1421767936.508236] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.33 ms +[1421767936.723365] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421767936.941276] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421767937.218378] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.0 ms +[1421767937.443619] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421767937.665257] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421767937.953148] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.6 ms +[1421767938.172217] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421767938.445512] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.1 ms +[1421767938.668686] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421767938.893264] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421767939.114471] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421767939.401639] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.3 ms +[1421767939.630223] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421767939.851226] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421767940.084952] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.9 ms +[1421767940.291774] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421767940.497204] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767940.702302] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767940.907797] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767941.113599] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767941.318834] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767941.524016] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767941.729495] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767941.935205] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767942.141156] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767942.346695] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767942.552833] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767942.758558] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767942.964030] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767943.169098] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767943.374158] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767943.579318] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767943.784832] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767943.990143] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767944.195123] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767944.400433] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767944.605396] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767944.811620] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421767945.017688] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421767945.222549] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767945.428306] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767945.633349] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767945.838586] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767946.043069] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767946.248327] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767946.454800] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767946.659828] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767946.866023] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767947.071055] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767947.275821] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767947.481541] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421767947.686789] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767947.892442] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767948.097314] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421767948.302739] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767948.507950] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421767948.713052] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767948.918242] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767949.123226] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767949.328162] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767949.533177] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767949.739639] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421767949.945366] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767950.152245] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421767950.357287] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767950.562629] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767950.767670] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767950.972635] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767951.178263] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767951.383054] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767951.588319] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767951.793591] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767951.999876] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767952.206376] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767952.412666] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767952.618200] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767952.823731] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767953.029813] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767953.236141] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767953.441592] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767953.647202] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767953.852645] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767954.057280] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767954.262313] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767954.467496] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767954.673152] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767954.878549] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767955.083934] 1392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767955.289324] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767955.495364] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767955.701817] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767955.907147] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767956.113312] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767956.318588] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767956.523893] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767956.728853] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767956.934665] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767957.139836] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767957.344836] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767957.550257] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767957.755723] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767957.961597] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767958.167399] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767958.372826] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767958.579391] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767958.784435] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767958.989816] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767959.196643] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767959.413120] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421767959.641439] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421767959.857048] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421767960.072995] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.2 ms +[1421767960.337136] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.3 ms +[1421767960.559955] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421767960.790063] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421767961.077844] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.4 ms +[1421767961.289884] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.15 ms +[1421767961.496326] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421767961.702832] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767961.908489] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767962.113890] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767962.319073] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767962.524634] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767962.730375] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421767962.935784] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767963.143055] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.50 ms +[1421767963.369361] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421767963.611723] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.0 ms +[1421767963.827758] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421767964.046307] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421767964.324675] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.5 ms +[1421767964.530247] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767964.736434] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421767964.941548] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767965.146676] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767965.360700] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.2 ms +[1421767965.586606] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421767965.803832] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421767966.018166] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421767966.238165] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421767966.458492] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421767966.737809] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.3 ms +[1421767966.958508] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421767967.187394] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421767967.415991] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421767967.641832] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421767967.847125] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767968.052608] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767968.259351] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767968.464310] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767968.669641] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767968.875197] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767969.080667] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767969.288002] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.58 ms +[1421767969.496690] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.93 ms +[1421767969.729644] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.0 ms +[1421767969.944223] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421767970.161509] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421767970.381945] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421767970.641550] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=55.1 ms +[1421767970.846862] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767971.051416] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767971.264494] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.22 ms +[1421767971.474779] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.20 ms +[1421767971.707262] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.1 ms +[1421767971.928248] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421767972.149740] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421767972.374936] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421767972.655617] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.5 ms +[1421767972.878756] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421767973.162763] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.0 ms +[1421767973.386611] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421767973.618459] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.4 ms +[1421767973.839334] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421767974.044245] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767974.249439] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767974.454231] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767974.659694] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767974.879024] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421767975.089346] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.56 ms +[1421767975.308770] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421767975.526273] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421767975.744128] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421767975.968349] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421767976.198382] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.1 ms +[1421767976.404874] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767976.610764] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767976.816159] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767977.030164] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421767977.240884] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.96 ms +[1421767977.478026] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.3 ms +[1421767977.690695] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.93 ms +[1421767977.895781] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767978.101569] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767978.307669] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767978.512772] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767978.718499] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767978.923484] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767979.128694] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767979.334045] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767979.539608] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767979.745073] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767979.951488] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767980.156663] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767980.362603] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767980.567813] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767980.773157] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767980.979705] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767981.185363] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767981.391903] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767981.598501] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767981.804316] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767982.010036] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767982.216151] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767982.422066] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421767982.627899] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767982.832947] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767983.038044] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767983.243991] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767983.449874] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767983.655454] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767983.861332] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767984.066590] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767984.271468] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767984.476726] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767984.682734] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421767984.888987] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767985.096017] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.13 ms +[1421767985.301221] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767985.506992] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767985.712543] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767985.918131] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767986.122984] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767986.329195] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767986.534278] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767986.739723] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767986.944876] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767987.150161] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767987.355571] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421767987.561032] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767987.765966] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767987.972094] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767988.177748] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767988.383156] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767988.589053] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767988.794252] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767988.999567] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767989.204876] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767989.410566] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767989.617133] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767989.823326] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767990.028936] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767990.234234] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767990.439542] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767990.645396] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767990.851103] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767991.056729] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421767991.262208] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767991.467613] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767991.673757] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767991.879298] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767992.084716] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767992.289826] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767992.495316] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767992.700480] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767992.905561] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767993.110661] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767993.316075] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767993.521829] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767993.727700] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767993.933228] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767994.138258] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767994.344597] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767994.549826] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767994.755401] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767994.960160] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767995.165086] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767995.370229] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767995.575234] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767995.779697] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767995.984686] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767996.190304] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767996.395242] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767996.601478] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767996.806681] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767997.011555] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767997.217080] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421767997.422285] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767997.627603] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767997.833192] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767998.038111] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767998.243455] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767998.449222] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767998.654982] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767998.860935] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767999.066142] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767999.271049] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767999.477454] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421767999.683213] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767999.889033] 130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768000.094372] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768000.300862] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421768000.506673] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768000.712149] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768000.917660] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768001.122887] 512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768001.328311] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768001.534506] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421768001.741101] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768001.947532] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768002.152773] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768002.359024] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768002.564622] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768002.770129] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768002.975596] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768003.180857] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768003.385931] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768003.590989] 825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768003.795861] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768004.000866] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768004.206427] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768004.412523] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768004.617514] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768004.823496] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768005.028188] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768005.233428] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768005.438358] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768005.643749] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768005.849377] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768006.055417] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421768006.260638] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768006.466088] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768006.671329] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768006.877699] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768007.083476] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768007.289275] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768007.495570] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768007.701754] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421768007.907631] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421768008.112734] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768008.317914] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768008.522647] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768008.728327] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768008.933574] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768009.139456] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421768009.344441] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768009.549457] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768009.754584] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768009.959819] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768010.165196] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768010.370701] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768010.576257] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768010.782256] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768010.988054] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768011.193227] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768011.398515] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768011.604436] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768011.811069] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768012.016005] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768012.221036] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768012.426004] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768012.631244] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768012.836942] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768013.041877] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768013.247123] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768013.452124] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768013.657366] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768013.862672] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768014.067375] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768014.273599] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768014.479126] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768014.685843] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768014.890891] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768015.096462] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768015.301782] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768015.508320] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768015.713230] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768015.918216] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768016.123134] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768016.328041] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768016.532965] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768016.739261] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768016.944618] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768017.149668] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768017.354574] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768017.559706] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768017.765323] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768017.970638] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768018.175528] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768018.380900] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768018.587579] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768018.792944] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768018.997833] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768019.204086] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768019.409279] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768019.615506] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768019.820782] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768020.025896] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768020.231816] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421768020.437568] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768020.643150] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768020.848540] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768021.053468] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768021.259823] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421768021.465115] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768021.670406] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768021.877187] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421768022.082681] 904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768022.289015] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768022.494122] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768022.700868] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768022.906464] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768023.111333] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768023.317472] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768023.522815] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768023.727918] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768023.933242] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768024.138742] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768024.343946] 296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768024.548825] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768024.755003] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768024.960493] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768025.165863] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768025.370919] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768025.576624] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421768025.784058] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.15 ms +[1421768026.010241] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421768026.227377] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421768026.433760] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768026.640225] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768026.845819] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768027.051444] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421768027.257137] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768027.462838] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768027.668754] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768027.874928] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768028.080978] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421768028.286147] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768028.493030] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421768028.698647] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768028.905115] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768029.110967] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768029.316476] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768029.522124] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421768029.728369] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768029.933773] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768030.139043] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768030.344957] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768030.550898] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768030.755772] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768030.960973] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768031.165924] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768031.371253] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768031.576594] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421768031.781881] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768031.986898] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768032.191936] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768032.398271] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768032.604052] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768032.809507] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421768033.014216] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768033.220586] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768033.425861] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768033.632287] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768033.837961] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768034.043981] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421768034.249145] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768034.454260] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768034.660853] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768034.866829] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768035.071491] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768035.276421] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768035.482675] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768035.688223] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768035.893310] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768036.099448] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768036.304545] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768036.509894] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768036.715391] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768036.920279] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768037.126522] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768037.331720] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768037.536958] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768037.742045] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768037.947642] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768038.152658] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768038.359160] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768038.565228] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768038.771747] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768038.978259] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768039.183755] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768039.388900] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768039.593889] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768039.799965] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768040.004691] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768040.210671] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768040.415882] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768040.622005] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768040.827971] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768041.032522] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768041.238074] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421768041.444487] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768041.650307] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421768041.855757] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768042.060571] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768042.266908] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768042.472450] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768042.678868] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421768042.883944] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768043.088543] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768043.294402] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768043.499496] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768043.705753] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768043.911248] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768044.116588] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421768044.321797] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768044.527194] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768044.732699] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768044.937562] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768045.142622] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768045.347497] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768045.552395] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768045.757702] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768045.964326] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768046.169582] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768046.376014] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768046.581754] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768046.787369] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768046.992871] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768047.197941] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768047.403346] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768047.608692] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421768047.814273] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768048.021099] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.97 ms +[1421768048.226354] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768048.431715] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768048.637455] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768048.842743] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768049.047672] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768049.252851] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768049.461158] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.00 ms +[1421768049.667356] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768049.873648] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768050.079487] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768050.284881] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768050.490277] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768050.695801] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768050.900584] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768051.105725] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421768051.310613] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768051.516737] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768051.721902] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768051.927323] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768052.132988] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768052.338247] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768052.543564] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768052.749118] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768052.954403] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768053.159079] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768053.365611] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768053.570905] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421768053.775959] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768053.981151] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768054.186516] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768054.392039] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768054.597183] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768054.802782] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768055.008243] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768055.213462] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768055.418801] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768055.624455] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768055.830864] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768056.035611] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768056.241629] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768056.447216] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768056.652974] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768056.858487] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768057.063303] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768057.269371] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768057.476205] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.80 ms +[1421768057.681824] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768057.887297] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768058.092472] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768058.297679] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768058.503168] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768058.709592] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768058.915458] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768059.121078] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768059.326505] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768059.533227] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768059.738796] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768059.945470] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768060.151087] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768060.356274] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768060.561415] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768060.766209] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768060.973185] 1870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768061.179464] 1503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421768061.384609] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768061.590208] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421768061.795079] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768062.001355] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421768062.206936] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768062.413025] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768062.619409] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768062.825122] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768063.029786] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768063.234542] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768063.439477] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768063.644400] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768063.849809] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768064.055314] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768064.262036] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768064.467562] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768064.672385] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768064.877827] 904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768065.082967] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768065.287727] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768065.492637] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768065.698491] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768065.903133] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768066.107832] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768066.312826] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768066.518839] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421768066.724165] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768066.929938] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768067.135206] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768067.341518] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421768067.546486] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768067.751696] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768067.957093] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768068.162513] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768068.367887] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768068.573483] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768068.778595] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768068.984997] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421768069.190275] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768069.395394] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768069.600790] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768069.806194] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768070.011686] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421768070.216958] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768070.422008] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768070.627449] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768070.832915] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768071.037709] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768071.243760] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768071.448661] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768071.654228] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768071.859781] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768072.064499] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768072.269695] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768072.474698] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768072.680913] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768072.885743] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768073.090494] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768073.296437] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768073.501528] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768073.707110] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768073.912802] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768074.119425] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768074.324957] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768074.530863] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768074.736631] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768074.942369] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768075.147482] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768075.353850] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421768075.558894] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768075.764160] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768075.968737] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768076.173878] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768076.379185] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768076.584268] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768076.790349] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768076.996168] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768077.202029] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768077.407210] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768077.612494] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768077.817787] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768078.023378] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768078.229712] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768078.434829] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768078.639864] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768078.845205] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768079.050151] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421768079.255343] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768079.461691] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768079.666645] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768079.871792] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768080.076861] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768080.281813] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768080.487257] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768080.693628] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421768080.899811] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768081.104900] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768081.310536] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768081.515897] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768081.720885] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768081.926059] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768082.131415] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768082.337719] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768082.542690] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768082.748799] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421768082.953891] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768083.159860] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768083.365760] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421768083.571484] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768083.776989] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768083.983024] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768084.188319] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421768084.393478] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768084.600252] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768084.806451] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768085.012326] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768085.218351] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421768085.423887] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768085.628548] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768085.834635] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768086.039739] 837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768086.244985] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768086.449882] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768086.655999] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768086.861364] 130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421768087.066138] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768087.272409] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768087.477342] 837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768087.682753] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768087.888327] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768088.093261] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768088.299494] 1913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421768088.506199] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768088.711372] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768088.917222] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768089.122832] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768089.328304] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768089.533683] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768089.740039] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768089.945081] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768090.151792] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421768090.357159] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768090.562633] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768090.768780] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421768090.974035] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768091.179439] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768091.385781] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768091.591583] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768091.797260] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421768092.001889] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421768092.207054] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768092.412494] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768092.618910] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768092.824080] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768093.028562] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768093.234496] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768093.439705] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768093.644717] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768093.850864] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768094.055939] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768094.261975] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768094.468260] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768094.673202] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768094.878914] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768095.083824] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768095.289128] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768095.494661] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421768095.700066] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768095.905380] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768096.111018] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768096.316330] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768096.522284] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768096.727997] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768096.934579] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768097.141097] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421768097.346211] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768097.551536] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768097.757016] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768097.962494] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768098.167572] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768098.373832] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768098.579603] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768098.784679] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768098.989700] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768099.195667] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768099.400942] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768099.606379] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768099.811762] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768100.024136] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.51 ms +[1421768100.230231] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768100.435609] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768100.641231] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768100.846750] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768101.051768] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768101.257223] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768101.462578] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768101.668070] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768101.873766] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768102.078635] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768102.284764] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768102.490748] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768102.696588] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768102.901773] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768103.106992] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768103.312379] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768103.517417] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768103.723256] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768103.929153] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768104.135705] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768104.340900] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768104.547829] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768104.753657] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768104.959970] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768105.165532] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768105.370759] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768105.577874] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768105.783270] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768105.988856] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768106.193986] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768106.399216] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768106.603973] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768106.809247] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421768107.014002] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768107.220380] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768107.426120] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768107.631680] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768107.837631] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421768108.042157] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768108.247516] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768108.453300] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768108.659973] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768108.865606] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768109.070450] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768109.275439] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768109.483653] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.16 ms +[1421768109.689275] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768109.894925] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768110.100274] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768110.305684] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768110.511210] 1063 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768110.716658] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768110.921888] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768111.127721] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768111.332854] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768111.538132] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768111.743492] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768111.948390] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768112.152921] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768112.358098] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768112.563938] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768112.769491] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768112.975600] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768113.180481] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768113.385689] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768113.591052] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421768113.796197] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768114.002515] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768114.207642] 512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768114.413879] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768114.620267] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768114.825692] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768115.030427] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768115.235471] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768115.440859] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768115.645834] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768115.851957] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768116.057485] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421768116.262561] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768116.468703] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768116.673917] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768116.880428] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768117.086524] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768117.291678] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768117.496814] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768117.701959] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768117.908048] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768118.113243] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768118.319819] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768118.526297] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768118.731757] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768118.937164] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768119.142297] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768119.348518] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768119.553796] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768119.759384] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768119.964677] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421768120.169513] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768120.374810] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768120.579884] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768120.785092] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768120.990107] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768121.196155] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768121.401626] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768121.608425] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421768121.815252] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421768122.020242] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768122.225055] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768122.430491] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768122.636844] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768122.842270] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768123.047514] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768123.252564] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768123.457965] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768123.663436] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768123.869191] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768124.074190] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768124.280066] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768124.486354] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768124.692819] 1880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768124.898045] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768125.103206] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768125.308762] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768125.513933] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768125.719778] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768125.925048] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768126.130319] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768126.335851] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768126.541553] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768126.746563] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768126.952471] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768127.157590] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768127.363649] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768127.569673] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768127.776414] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768127.982195] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768128.187334] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768128.393642] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768128.599230] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768128.804360] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768129.008991] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768129.214197] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768129.419232] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768129.624699] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768129.830875] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768130.036545] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421768130.241739] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768130.448169] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768130.653341] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768130.858599] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768131.063896] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768131.268752] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768131.473669] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768131.678873] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768131.885324] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421768132.090193] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768132.295523] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768132.500503] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768132.705767] 1330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768132.911212] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768133.117192] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768133.322580] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768133.528083] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768133.734366] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768133.941564] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.22 ms +[1421768134.151229] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.81 ms +[1421768134.363469] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.32 ms +[1421768134.605813] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.1 ms +[1421768134.855070] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.7 ms +[1421768135.078576] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421768135.284256] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768135.490254] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768135.695800] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768135.901911] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768136.108150] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768136.313824] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768136.519068] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768136.724697] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768136.929828] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768137.135478] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768137.341625] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.89 ms +[1421768137.547522] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768137.754411] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768137.960135] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768138.165849] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768138.371289] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768138.577531] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768138.783145] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768138.989710] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768139.194628] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768139.399951] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768139.604880] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768139.811256] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768140.015848] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768140.220943] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768140.427527] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768140.633485] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768140.838570] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768141.043728] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768141.249140] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768141.454371] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768141.659539] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768141.864933] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768142.071585] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768142.276860] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768142.483465] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768142.689149] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768142.894460] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768143.099165] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421768143.303955] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768143.509438] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768143.715036] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768143.924112] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.63 ms +[1421768144.130324] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768144.336775] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768144.542013] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768144.747805] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768144.953163] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768145.159247] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768145.364475] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768145.570375] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768145.775922] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768145.981256] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768146.186381] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768146.391897] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768146.597648] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768146.803071] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768147.007689] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768147.212652] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768147.417699] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768147.624518] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768147.830299] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768148.035213] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768148.240295] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768148.446522] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768148.651486] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768148.856565] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768149.061908] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768149.267335] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768149.473320] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768149.679128] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768149.885036] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768150.090834] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768150.296263] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768150.501898] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768150.708372] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768150.914271] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768151.119915] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768151.326392] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421768151.532279] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768151.738093] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768151.943465] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768152.148715] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768152.354235] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768152.560382] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768152.766553] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768152.972154] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768153.177181] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768153.382880] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768153.588343] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768153.793569] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768153.999189] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768154.204711] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768154.410011] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768154.614831] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768154.820231] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768155.025095] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768155.231223] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768155.436610] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768155.643066] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768155.848699] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768156.054674] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768156.260729] 1720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768156.465989] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768156.671377] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768156.877105] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768157.082170] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768157.287455] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768157.493633] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768157.699389] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768157.905179] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768158.110125] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768158.315306] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768158.521532] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768158.726976] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768158.931999] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768159.136937] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768159.342272] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768159.547954] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768159.754310] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768159.959754] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768160.165088] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768160.370013] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768160.575477] 841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768160.780906] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768160.986511] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768161.191400] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768161.396643] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768161.603236] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421768161.808027] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768162.013743] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768162.218854] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768162.424182] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768162.629685] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421768162.834999] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768163.039879] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768163.245106] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768163.450248] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768163.657166] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768163.863213] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768164.069750] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768164.275212] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768164.480755] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768164.687154] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768164.892955] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768165.098153] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768165.303061] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768165.509253] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768165.715483] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768165.921317] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.03 ms +[1421768166.127266] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421768166.332666] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768166.538591] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768166.744519] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768166.949765] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768167.154766] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768167.360286] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768167.567019] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768167.772754] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768167.978167] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768168.184034] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768168.390705] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768168.595874] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768168.800799] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768169.006978] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768169.213376] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768169.418624] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768169.625268] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768169.830565] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768170.035402] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768170.240547] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768170.445800] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768170.651063] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768170.856674] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768171.061226] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768171.266921] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768171.472838] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768171.678824] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768171.885948] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421768172.091446] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421768172.296443] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768172.501793] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768172.707288] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768172.912250] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768173.117436] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768173.324151] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768173.530665] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768173.736668] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768173.944715] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.17 ms +[1421768174.151141] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768174.357414] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768174.562656] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768174.768391] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768174.974703] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768175.180129] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768175.385302] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768175.591531] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768175.796543] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768176.001348] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768176.206730] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768176.411683] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768176.616626] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768176.821925] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768177.026947] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768177.231857] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768177.437173] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768177.642250] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768177.848504] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768178.053883] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421768178.258945] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768178.464935] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768178.670562] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768178.877512] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421768179.088228] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.86 ms +[1421768179.303077] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421768179.520341] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421768179.726571] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768179.931938] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768180.138742] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421768180.358401] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421768180.571135] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.55 ms +[1421768180.783373] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.87 ms +[1421768181.001299] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421768181.223662] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421768181.445830] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421768181.730760] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.6 ms +[1421768181.957865] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421768182.182044] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421768182.405528] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421768182.628749] 841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421768182.859060] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421768183.065148] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768183.270455] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768183.476528] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768183.681991] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768183.887215] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768184.092210] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768184.297912] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768184.503158] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768184.708233] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768184.913341] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768185.120074] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.11 ms +[1421768195.550253] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421768195.776254] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421768196.051608] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.8 ms +[1421768196.337688] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.9 ms +[1421768196.543531] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421768196.749025] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768196.954393] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768197.159521] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768197.364203] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768197.569157] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768197.774224] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768197.979680] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768198.184801] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768198.390369] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768198.595385] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768198.800654] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768199.006735] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421768199.212742] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768199.418016] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768199.624422] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768199.831214] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421768200.036018] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768200.241880] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421768200.447228] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768200.652681] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768200.857801] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421768201.063750] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768201.269007] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768201.475615] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768201.681378] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768201.886989] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768202.092054] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768202.297367] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768202.503315] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768202.708584] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768202.913909] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768203.118911] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768203.324235] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768203.529472] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768203.735048] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768203.940657] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421768204.145867] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768204.352126] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768204.557237] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768204.762326] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768204.969054] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421768205.174962] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768205.381217] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768205.586578] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768205.791693] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768205.997933] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768206.203510] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768206.409783] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768206.615249] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768206.820622] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768207.026278] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768207.231759] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768207.439681] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.70 ms +[1421768207.644781] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768207.850786] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768208.056267] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421768208.261044] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768208.466202] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768208.672061] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768208.877181] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768209.082100] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768209.287061] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768209.492388] 1238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768209.697650] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768209.903129] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768210.112072] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768210.318241] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768210.523515] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768210.728387] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768210.933936] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421768211.139738] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768211.345745] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421768211.551884] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768211.757187] 1186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768211.963758] 1670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421768212.170161] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768212.375778] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768212.582424] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768212.788833] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768212.994255] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768213.199189] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768213.405356] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768213.610470] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768213.816166] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768214.020868] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768214.226804] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768214.432501] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768214.637896] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768214.842666] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768215.047256] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768215.251955] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768215.456863] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768215.663130] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768215.867720] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768216.072269] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768216.278237] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768216.484110] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768216.689877] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.85 ms +[1421768216.894762] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768217.099580] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768217.304443] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768217.509596] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768217.714887] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768217.921296] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768218.126479] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768218.331954] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768218.537715] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768218.743127] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768218.948177] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768219.153454] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768219.358572] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768219.564069] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768219.770434] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768219.975756] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768220.180925] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768220.387328] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421768220.592574] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768220.798046] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768221.003489] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768221.208557] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768221.413452] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768221.618608] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768221.824594] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421768222.029647] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768222.234702] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768222.439709] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768222.644876] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768222.850890] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768223.057068] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768223.262204] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768223.467692] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768223.673378] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768223.878600] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768224.084637] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768224.290696] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768224.495957] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768224.701379] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768224.907094] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421768225.112078] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768225.316947] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768225.522012] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768225.728150] 1720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768225.933191] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768226.138830] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768226.343972] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768226.549325] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768226.754472] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768226.960125] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768227.165387] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768227.371219] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768227.577081] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768227.783702] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768227.989429] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768228.194476] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768228.399605] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421768228.604795] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768228.809799] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768229.014376] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768229.220443] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768229.426553] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768229.632549] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421768229.837296] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768230.042092] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768230.247120] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768230.452559] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768230.657892] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768230.864114] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768231.069364] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768231.274318] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768231.479748] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.85 ms +[1421768231.684970] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768231.891789] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421768232.096680] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768232.302495] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421768232.507801] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768232.712896] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768232.918398] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768233.123103] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.03 ms +[1421768233.328440] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768233.533733] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768233.739220] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768233.945756] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768234.151284] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768234.357476] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768234.562588] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768234.768432] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768234.973649] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768235.178363] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768235.384814] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421768235.590072] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768235.795367] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768236.000741] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768236.206091] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768236.411695] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768236.617751] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768236.823527] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768237.029374] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768237.270950] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=37.5 ms +[1421768237.476191] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768237.681358] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768237.886991] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768238.092049] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768238.297183] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421768238.502210] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768238.708043] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768238.912721] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421768239.117461] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768239.322477] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768239.527592] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768239.732779] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768239.938188] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768240.143295] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768240.348676] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768240.555072] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768240.759972] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768240.965396] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768241.170644] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768241.376122] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768241.582425] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768241.788587] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768241.993900] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421768242.198961] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768242.405475] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768242.611204] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768242.816983] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768243.023043] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768243.228058] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768243.434433] 1529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768243.640152] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768243.845582] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768244.051251] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768244.257043] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768244.463269] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768244.669769] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768244.875332] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768245.080255] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768245.286339] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768245.492278] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768245.698561] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768245.904816] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768246.109600] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421768246.314667] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768246.519484] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768246.724501] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768246.930013] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768247.135507] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768247.340175] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768247.545182] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768247.750489] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768247.955719] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768248.161514] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768248.367582] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768248.573070] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768248.778477] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768248.983972] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768249.190348] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768249.395574] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768249.601773] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768249.807350] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768250.012091] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768250.217198] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768250.422229] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768250.627715] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421768250.833172] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421768251.037614] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768251.242641] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768251.448040] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768251.653314] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768251.858403] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768252.070268] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.34 ms +[1421768252.279633] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.95 ms +[1421768252.512752] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.3 ms +[1421768252.727775] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421768252.932793] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768253.137992] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768253.343237] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768253.548659] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768253.754072] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768253.960640] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768254.167150] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768254.373459] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768254.579464] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768254.784660] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768254.990980] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768255.196061] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768255.401458] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768255.607071] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768255.813984] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768256.019130] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768256.225156] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768256.430216] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768256.636529] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768256.842660] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421768257.048674] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768257.253703] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768257.458891] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768257.664385] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768257.869918] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768258.074454] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768258.279371] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768258.484633] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768258.691414] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768258.897053] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768259.102484] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768259.307774] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768259.513023] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768259.718577] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768259.924016] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768260.129440] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768260.335401] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768260.540894] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768260.746564] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768260.952783] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768261.157746] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768261.363909] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768261.570629] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421768261.776486] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768261.982082] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768262.187572] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768262.392549] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768262.597831] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768262.803162] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768263.008421] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768263.214484] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768263.420650] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768263.625725] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768263.830720] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768264.035535] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768264.240685] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768264.446748] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421768264.651932] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768264.857020] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768265.062002] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768265.266880] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768265.471924] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768265.677170] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768265.882605] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768266.087397] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768266.292570] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768266.498663] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768266.703955] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768266.909621] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768267.114258] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768267.318900] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768267.524392] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768267.729982] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768267.935186] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768268.140555] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768268.346853] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768268.552216] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768268.758478] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768268.963977] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768269.169009] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768269.375285] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768269.581312] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768269.786208] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768269.991535] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768270.196720] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768270.402940] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768270.608867] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421768270.814616] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768271.019461] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768271.224608] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768271.431115] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768271.636613] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768271.842187] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768272.047889] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768272.252847] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768272.458030] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768272.663530] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768272.869247] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768273.074618] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768273.279924] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768273.485388] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768273.690277] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768273.895653] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768274.100435] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768274.306510] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768274.512039] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768274.717974] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768274.923917] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421768275.129358] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768275.334634] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768275.540169] 1297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768275.746314] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768275.951248] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768276.156108] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768276.360923] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768276.567238] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768276.773493] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768276.978803] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768277.184741] 1612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768277.390089] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768277.595532] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768277.800859] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768278.006798] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768278.211952] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768278.416998] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768278.622126] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768278.828660] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768279.033599] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768279.238340] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768279.443578] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768279.648361] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768279.854614] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768280.060398] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421768280.265471] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768280.470512] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768280.675895] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768280.881496] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768281.086303] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768281.291567] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768281.497154] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768281.702145] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768281.907265] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768282.112096] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768282.317318] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768282.523386] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768282.728798] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768282.935284] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768283.140932] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768283.346148] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768283.551528] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768283.757009] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768283.962459] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768284.167421] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768284.372657] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768284.577976] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768284.783572] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768284.989209] 825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768285.194661] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768285.400026] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768285.605985] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768285.811711] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768286.017472] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768286.222661] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768286.429135] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768286.634627] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768286.841004] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768287.046987] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768287.252026] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768287.458580] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421768287.676815] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421768287.882162] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768288.086696] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768288.291709] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768288.497085] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768288.702881] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768288.908249] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768289.113788] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768289.319095] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768289.524921] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768289.729833] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768289.935417] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768290.141250] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768290.346460] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768290.551757] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768290.757499] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768290.962977] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768291.169192] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768291.374507] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768291.580347] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768291.786337] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421768291.992592] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768292.197820] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768292.402961] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768292.609035] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421768292.815468] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421768293.020677] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768293.226586] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768293.431591] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768293.636476] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768293.842481] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768294.048316] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768294.253612] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768294.459061] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768294.665729] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421768294.872085] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768295.077196] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768295.282100] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768295.487165] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768295.693141] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768295.898669] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768296.103579] 1410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768296.308986] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768296.514391] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768296.719554] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768296.924965] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768297.130159] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768297.335467] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768297.540917] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768297.746153] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768297.951339] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768298.157597] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768298.363103] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768298.569590] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768298.775904] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768298.981117] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768299.186196] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768299.391574] 89 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768299.596774] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768299.802335] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768300.007482] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768300.212546] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768300.417416] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768300.622233] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768300.827400] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768301.031925] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768301.237149] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768301.442095] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768301.648506] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768301.853865] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421768302.058781] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768302.263913] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768302.469275] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768302.675765] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768302.882250] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421768303.087502] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768303.292526] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768303.497710] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768303.703304] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768303.909469] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768304.114310] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768304.319544] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768304.524432] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768304.729787] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768304.935730] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768305.141243] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768305.346258] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768305.552313] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768305.757463] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768305.963183] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768306.168900] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768306.375377] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768306.580992] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768306.786542] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768306.991435] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768307.196156] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768307.402717] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768307.608041] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768307.813645] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768308.018963] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768308.224522] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768308.430049] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768308.636066] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768308.841989] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768309.046761] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768309.252826] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768309.458998] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768309.665203] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768309.870929] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768310.076150] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768310.281274] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768310.486575] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768310.692402] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768310.897924] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768311.103062] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768311.309681] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421768311.514814] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768311.720671] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.92 ms +[1421768311.925981] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768312.131088] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768312.336213] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768312.541162] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768312.746094] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768312.951428] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768313.156537] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768313.361765] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768313.568575] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421768313.773793] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768313.979918] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768314.185586] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768314.390318] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768314.595583] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768314.800421] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768315.005372] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421768315.210849] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768315.416220] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768315.621780] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768315.826781] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768316.031366] 1156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768316.237371] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768316.443854] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768316.650508] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421768316.855630] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768317.060427] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768317.265617] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768317.470882] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768317.676330] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768317.881677] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768318.086471] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768318.291708] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768318.497413] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768318.703397] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768318.911314] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.83 ms +[1421768319.116310] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768319.321149] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768319.527744] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.82 ms +[1421768319.736772] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.19 ms +[1421768319.948789] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.10 ms +[1421768320.162733] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421768320.379434] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421768320.642958] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.6 ms +[1421768320.862738] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421768321.091586] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421768321.298094] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768321.521138] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421768321.801017] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.7 ms +[1421768322.086828] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.3 ms +[1421768322.367726] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.6 ms +[1421768322.587838] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421768322.874841] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.7 ms +[1421768323.101507] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421768323.379415] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.0 ms +[1421768323.601224] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.7 ms +[1421768323.834861] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.3 ms +[1421768324.039682] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768324.246074] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768324.453593] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.25 ms +[1421768324.677535] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421768324.885088] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.28 ms +[1421768325.090444] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768325.295621] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768325.501438] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421768325.706860] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768325.912376] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768326.117842] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768326.323070] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768326.528628] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421768326.733838] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768326.940069] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768327.146442] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768327.352675] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768327.557583] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768327.762909] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768327.968570] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768328.174083] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768328.379184] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768328.584381] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768328.790122] 1133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768328.995273] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768329.200375] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768329.405646] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768329.611057] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768329.816752] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768330.022626] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768330.227878] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768330.434300] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768330.639781] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768330.846032] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768331.050957] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768331.256411] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421768331.461761] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768331.668018] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421768331.873244] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768332.078393] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421768332.284748] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421768332.490546] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421768332.696061] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768332.901893] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421768333.107351] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768333.312725] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768333.518521] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768333.723640] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768333.928808] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768334.135537] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768334.341736] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768334.547502] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768334.753347] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768334.959794] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768335.165159] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768335.370133] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768335.575383] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768335.780723] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768335.986106] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768336.191978] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768336.396866] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768336.601804] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768336.808275] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768337.013507] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768337.218886] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768337.424083] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768337.629640] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768337.835411] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768338.039975] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768338.245198] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768338.450916] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768338.657201] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768338.863981] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768339.069150] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768339.275414] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768339.481693] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768339.686796] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768339.891535] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768340.096421] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768340.301218] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768340.506408] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768340.712647] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768340.918925] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768341.123616] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768341.329041] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768341.534745] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768341.740380] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768341.946180] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768342.151486] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768342.356689] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768342.561831] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768342.766887] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768342.972833] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768343.179013] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768343.384279] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768343.589472] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768343.794937] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768344.000769] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768344.205857] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768344.410811] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768344.616386] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768344.821964] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768345.027956] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768345.232873] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768345.439058] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768345.644898] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768345.855259] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.12 ms +[1421768346.060313] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768346.266364] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768346.472586] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768346.677917] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768346.884171] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768347.089418] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768347.294617] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768347.500154] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768347.704991] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768347.910566] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768348.115415] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768348.320201] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768348.525994] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768348.732538] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768348.938234] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421768349.143502] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768349.348981] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768349.554712] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768349.761403] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768349.966694] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768350.171728] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768350.377709] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768350.582861] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768350.788226] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768350.993588] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768351.198386] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768351.403631] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768351.608927] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768351.814921] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421768352.020576] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768352.225743] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768352.431053] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768352.636953] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768352.842670] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768353.047854] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421768353.252944] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768353.460954] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768353.666778] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768353.872639] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768354.077500] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768354.283518] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768354.488440] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768354.694101] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768354.899780] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768355.105004] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768355.310715] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768355.517261] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768355.722956] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768355.928315] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768356.133431] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768356.338155] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768356.543342] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768356.749141] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768356.954560] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768357.160563] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768357.365656] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768357.572191] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768357.778656] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768357.983848] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768358.188705] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768358.394695] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768358.599973] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768358.805726] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768359.010984] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768359.216445] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768359.421574] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768359.627019] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768359.832760] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768360.037406] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768360.243663] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768360.449739] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768360.656208] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768360.861500] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768361.066253] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768361.271656] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768361.477708] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421768361.683202] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768361.889569] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768362.094239] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768362.299434] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768362.505218] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768362.711117] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768362.917763] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.95 ms +[1421768363.123123] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768363.329052] 1612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768363.534670] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768363.740155] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768363.945300] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768364.150786] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768364.355658] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768364.561002] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768364.766181] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768364.971527] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768365.177574] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768365.382757] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768365.588567] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768365.793848] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768365.999145] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768366.204259] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421768366.409639] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768366.616201] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768366.822496] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768367.027702] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768367.232605] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768367.438722] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768367.643934] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768367.849898] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768368.054514] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768368.259948] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768368.465738] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768368.671773] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768368.878609] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768369.083652] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768369.288980] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768369.494218] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768369.699159] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768369.904384] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768370.109319] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768370.316891] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.55 ms +[1421768370.539216] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421768370.752113] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.59 ms +[1421768370.964208] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.43 ms +[1421768371.182909] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421768371.403673] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421768371.623265] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421768371.908481] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.1 ms +[1421768372.134370] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421768372.357343] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421768372.582768] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421768372.868316] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.5 ms +[1421768373.093434] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421768373.321441] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421768373.601717] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.2 ms +[1421768373.808244] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768374.014009] 1897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768374.220149] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768374.425358] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768374.634662] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.24 ms +[1421768374.847803] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.68 ms +[1421768375.057866] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.51 ms +[1421768375.308901] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=47.2 ms +[1421768375.530886] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421768375.808330] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.3 ms +[1421768376.031474] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421768376.256520] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421768376.484675] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421768376.712053] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421768376.935639] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421768377.161193] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421768377.390134] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421768377.616443] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421768377.841611] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421768378.067386] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421768378.352636] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.3 ms +[1421768378.638157] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.8 ms +[1421768378.843550] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768379.048571] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768379.255422] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.08 ms +[1421768379.479122] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421768379.690969] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.88 ms +[1421768379.911290] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421768380.117392] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421768380.322639] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768380.528268] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768380.734335] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768380.939457] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768381.145309] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421768381.351814] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768381.557104] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768381.762380] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768381.967889] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768382.173540] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768382.378682] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768382.583747] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768382.788729] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768382.993722] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768383.198558] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768383.403892] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768383.609727] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768383.815843] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768384.021732] 1897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768384.226882] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768384.432004] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768384.638485] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421768384.844290] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768385.049308] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768385.254601] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768385.460288] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768385.665756] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768385.871279] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768386.075996] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768386.281174] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768386.486466] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768386.691057] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421768386.896028] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768387.100664] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768387.305514] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768387.511766] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768387.718427] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768387.924061] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768388.129066] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768388.335429] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768388.541194] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768388.746723] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768388.952274] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768389.157773] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768389.363025] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768389.569340] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768389.775238] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768389.982047] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768390.187379] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768390.392812] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768390.598676] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768390.804197] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768391.008711] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768391.213901] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768391.419818] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421768391.627065] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.85 ms +[1421768391.833624] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421768392.038550] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768392.243882] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768392.449110] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768392.655310] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768392.860321] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768393.065389] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421768393.271011] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421768393.476966] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421768393.682351] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768393.887646] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768394.093317] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768394.298341] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768394.503607] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768394.708997] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768394.914556] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768395.120063] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768395.325337] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768395.530709] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768395.736378] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768395.942029] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768396.147423] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768396.352737] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768396.558378] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768396.763713] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768396.968686] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768397.173901] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768397.379414] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421768397.585171] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768397.790470] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768397.995690] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768398.200862] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768398.406192] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768398.612016] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768398.817587] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768399.023443] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768399.228744] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768399.434349] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768399.646546] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.23 ms +[1421768399.851994] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768400.056575] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768400.261720] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768400.466907] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768400.672200] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768400.877674] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768401.083737] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768401.289698] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768401.496402] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421768401.703338] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421768401.909035] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768402.114431] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768402.319394] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768402.524614] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768402.729991] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768402.936278] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421768403.141241] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768403.346195] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768403.550947] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768403.755766] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768403.960384] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768404.165488] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768404.370676] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768404.575582] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768404.781551] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768404.986956] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768405.192145] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768405.397997] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768405.603581] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768405.808868] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768406.013960] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768406.218829] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768406.425229] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768406.631236] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768406.836416] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768407.040840] 296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768407.246756] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768407.453289] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768407.658607] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768407.864046] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768408.068641] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768408.273642] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768408.479414] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768408.685790] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768408.891471] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768409.096486] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768409.301708] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768409.506822] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768409.712001] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768409.917591] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421768410.122589] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768410.328780] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768410.534544] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768410.739900] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768410.946443] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421768411.152042] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768411.357367] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421768411.577359] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421768411.810226] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.9 ms +[1421768412.029575] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421768412.247336] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421768412.519059] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=67.4 ms +[1421768412.745628] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421768412.973347] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421768413.203346] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421768413.428787] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421768413.656057] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421768413.881245] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421768414.086588] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768414.291953] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768414.498750] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421768414.705994] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.08 ms +[1421768414.915495] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.70 ms +[1421768415.147856] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.2 ms +[1421768415.365669] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421768415.580972] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768415.798639] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421768416.078481] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.5 ms +[1421768416.284141] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768416.489800] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768416.695451] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768416.901195] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768417.106904] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768417.312736] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768417.519384] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421768417.725361] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768417.931037] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768418.136218] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768418.340921] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768418.547347] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768418.752915] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768418.959629] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768419.165175] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768419.370753] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768419.576115] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768419.780932] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768419.987310] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768420.192628] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768420.397536] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768420.603941] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768420.808800] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768421.013638] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768421.219088] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768421.425358] 1529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421768421.630898] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768421.836290] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768422.041921] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768422.247018] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768422.452244] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768422.657141] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768422.862220] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768423.067233] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768423.272403] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768423.477901] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768423.683196] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768423.889631] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768424.094512] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768424.300340] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768424.506104] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768424.711485] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768424.916430] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768425.122455] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768425.327539] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768425.533029] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421768425.738131] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768425.943734] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768426.148629] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768426.353466] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768426.559193] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768426.764380] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421768426.980032] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421768427.192494] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.32 ms +[1421768427.431256] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.0 ms +[1421768427.648964] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421768427.869855] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421768428.093000] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421768428.377987] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.2 ms +[1421768428.667549] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.4 ms +[1421768428.953778] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.1 ms +[1421768429.180316] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421768429.385653] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768429.591138] 1330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768429.799692] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.42 ms +[1421768430.012617] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.61 ms +[1421768430.223921] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.42 ms +[1421768430.437790] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.93 ms +[1421768430.688219] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.6 ms +[1421768430.909565] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421768431.134595] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421768431.414403] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.9 ms +[1421768431.636105] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421768431.859999] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421768432.083152] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421768432.311790] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421768432.530566] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421768432.739809] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.23 ms +[1421768432.946639] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.96 ms +[1421768433.151718] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768433.357021] 1410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768433.569896] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.02 ms +[1421768433.780982] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.68 ms +[1421768433.994241] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.89 ms +[1421768434.207101] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.67 ms +[1421768434.413720] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768434.618734] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768434.823880] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768435.029203] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421768435.238543] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.51 ms +[1421768435.450477] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.69 ms +[1421768435.668566] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421768435.885245] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421768436.105101] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421768436.386122] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.1 ms +[1421768436.613118] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421768436.895448] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.6 ms +[1421768437.118498] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421768437.342440] 1417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421768437.567578] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421768437.790651] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421768438.078117] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.6 ms +[1421768438.302567] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421768438.583464] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.3 ms +[1421768438.810341] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421768439.039774] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421768439.244967] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768439.450006] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768439.655503] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768439.866339] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.46 ms +[1421768440.076031] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.80 ms +[1421768440.282275] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768440.487443] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768440.692966] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768440.898621] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768441.104726] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768441.310883] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768441.516315] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768441.722194] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768441.928781] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768442.134057] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768442.339976] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421768442.545789] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768442.750992] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768442.957325] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421768443.163761] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.67 ms +[1421768443.369694] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768443.576242] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768443.781601] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768443.988370] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.76 ms +[1421768444.194050] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768444.399611] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768444.605392] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768444.810736] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768445.016687] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421768445.222023] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768445.428011] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768445.634209] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768445.839351] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768446.044728] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768446.250224] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768446.455918] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768446.661164] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768446.867320] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768447.072321] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768447.277435] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768447.483246] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768447.688728] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768447.894419] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768448.099588] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768448.304342] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768448.509347] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768448.715017] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768448.921243] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768449.127576] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768449.332836] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768449.538249] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768449.743978] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768449.950191] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768450.158893] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.36 ms +[1421768450.364022] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768450.569632] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768450.776486] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768450.982122] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768451.187643] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768451.394266] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768451.599441] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768451.805640] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768452.011632] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768452.216959] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768452.422625] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768452.627979] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768452.833434] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768453.038099] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768453.243212] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768453.448445] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768453.654975] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421768453.861914] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421768454.067081] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421768454.273492] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421768454.480266] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768454.686260] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768454.893071] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768455.098372] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768455.304419] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768455.510940] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768455.716520] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768455.921602] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768456.126791] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768456.331922] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768456.537431] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768456.742813] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768456.947694] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768457.154126] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768457.359978] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768457.565885] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768457.771561] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768457.976985] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768458.182543] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768458.387715] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768458.593335] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768458.798777] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421768459.003826] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768459.210217] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768459.415320] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768459.621764] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768459.827663] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421768460.032714] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768460.238818] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768460.444631] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768460.653664] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768460.859378] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768461.064668] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768461.270964] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768461.477431] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768461.684357] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421768461.891455] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768462.096569] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768462.302939] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768462.508126] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421768462.713669] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768462.919355] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768463.125448] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768463.331106] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768463.536796] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768463.741861] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768463.947930] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768464.153226] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768464.358526] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768464.564737] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421768464.770950] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768464.976400] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768465.181639] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768465.388672] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768465.595183] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768465.801532] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768466.006342] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768466.211466] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768466.417633] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768466.624476] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768466.830449] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768467.036058] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768467.242031] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768467.446955] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768467.653150] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768467.858183] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768468.063308] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768468.268512] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768468.474839] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421768468.680354] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768468.886833] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768469.091595] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768469.296526] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768469.501886] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768469.707367] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421768469.912645] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768470.117942] 1156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768470.322938] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768470.528387] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768470.733804] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768470.938991] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768471.144123] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768471.349223] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768471.554576] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768471.759803] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768471.965937] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768472.171542] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768472.377642] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768472.582858] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768472.789403] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421768472.996058] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768473.201399] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768473.406650] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768473.613446] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421768473.818855] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768474.023593] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768474.228463] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768474.435341] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.67 ms +[1421768474.641068] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768474.846636] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768475.051617] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768475.256791] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768475.462376] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768475.669000] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768475.875699] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768476.081955] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768476.287046] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768476.492337] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768476.697854] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768476.903176] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768477.108876] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768477.314735] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768477.521049] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768477.726376] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768477.931708] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768478.136767] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768478.343013] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768478.548290] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768478.753708] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768478.958881] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768479.164193] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768479.369595] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768479.576226] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768479.781459] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768479.986798] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768480.193104] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768480.398191] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768480.603549] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768480.809920] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768481.016255] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768481.221539] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768481.426485] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768481.632554] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421768481.842594] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.78 ms +[1421768482.049457] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.55 ms +[1421768482.260587] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.19 ms +[1421768482.475361] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.1 ms +[1421768482.692168] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421768482.909522] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421768483.129713] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421768483.336924] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.42 ms +[1421768483.542168] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768483.747348] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768483.952776] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768484.158047] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768484.363302] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768484.568922] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421768484.774610] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768484.979955] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768485.185797] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768485.391720] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768485.597516] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768485.803016] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768486.007829] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768486.212924] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768486.418898] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.89 ms +[1421768486.625295] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768486.830443] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768487.035032] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768487.240099] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768487.446651] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421768487.652227] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768487.858440] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768488.063532] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768488.269671] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768488.475720] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768488.680675] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768488.885757] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768489.091172] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768489.295946] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768489.501096] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768489.706648] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768489.913481] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768490.119278] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768490.325797] 1566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421768490.531088] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768490.736237] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768490.941404] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768491.146368] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768491.351744] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768491.556999] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768491.762728] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768491.967884] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768492.172792] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768492.379014] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768492.584991] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768492.790985] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768492.996634] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421768493.203184] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421768493.408760] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421768493.614403] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421768493.819453] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768494.024328] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768494.229509] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768494.435935] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768494.641409] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768494.847093] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768495.051625] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768495.256834] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768495.463448] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768495.668932] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768495.874419] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768496.079496] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768496.284572] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768496.489796] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768496.695331] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768496.901216] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421768497.106519] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768497.312245] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768497.517730] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768497.722875] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768497.928821] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768498.133812] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768498.338789] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768498.544538] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768498.750006] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768498.956244] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768499.161767] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768499.366650] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768499.571799] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768499.778329] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768499.984116] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768500.189160] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768500.394158] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768500.599513] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768500.805257] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768501.010044] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768501.216148] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768501.421286] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768501.626957] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768501.831943] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768502.036721] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768502.242029] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768502.448129] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768502.653603] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768502.869658] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.0 ms +[1421768503.074940] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768503.280013] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768503.485363] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768503.691246] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768503.896730] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768504.101908] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768504.307260] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768504.513011] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768504.718356] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768504.924136] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768505.129193] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768505.334300] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768505.540350] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.90 ms +[1421768505.746366] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421768505.954412] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768506.159957] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768506.365164] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768506.571646] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768506.778080] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421768506.983656] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768507.189073] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768507.394047] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768507.599916] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768507.804940] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768508.009534] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768508.214427] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768508.420055] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768508.625872] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768508.832317] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768509.038198] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768509.244277] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768509.448964] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768509.654247] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768509.861672] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.23 ms +[1421768510.071646] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.67 ms +[1421768510.286475] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421768510.539907] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=49.0 ms +[1421768510.758032] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421768510.964824] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768511.170512] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768511.376178] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768511.582458] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768511.788082] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768511.993633] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768512.199692] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768512.405206] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768512.612054] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421768512.818577] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421768513.024017] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768513.229295] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768513.434866] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768513.640097] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768513.845610] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768514.050609] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768514.255884] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768514.461357] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768514.667088] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768514.872774] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768515.078146] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421768515.282826] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768515.489141] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768515.694453] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768515.899815] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768516.104836] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768516.310300] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768516.515421] 1072 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768516.721481] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768516.927064] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768517.132196] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768517.337088] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768517.542497] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768517.748570] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768517.954677] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768518.161169] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768518.366496] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768518.571689] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768518.776989] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768518.982831] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768519.188484] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768519.393767] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768519.599204] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768519.805866] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768520.011099] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768520.217031] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768520.422830] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421768520.627620] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768520.848837] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421768521.054600] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768521.259863] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768521.465153] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768521.670857] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768521.876093] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768522.082304] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768522.287486] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768522.492502] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768522.698770] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768522.903842] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768523.109100] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768523.315135] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768523.521309] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768523.727474] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421768523.932776] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768524.137891] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768524.342934] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768524.548432] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768524.753747] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768524.959276] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768525.164399] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768525.370766] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768525.576006] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768525.781611] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768525.988487] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768526.194332] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768526.399967] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768526.606048] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768526.810869] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768527.016572] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768527.222580] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768527.427749] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768527.633623] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768527.838657] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768528.044483] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768528.249957] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768528.455644] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768528.660702] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768528.883238] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421768529.088334] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768529.293706] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768529.499285] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768529.704629] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768529.910426] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421768530.116530] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421768530.323007] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421768530.528584] 837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768530.734184] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768530.939905] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768531.145322] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768531.350511] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768531.555995] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768531.761746] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768531.966902] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768532.172477] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768532.377773] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768532.582802] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768532.788892] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768532.994175] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768533.198976] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768533.404408] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768533.609686] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768533.814770] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768534.019746] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768534.224803] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768534.429859] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768534.635210] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768534.840603] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768535.046254] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768535.251343] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768535.456131] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768535.662800] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.98 ms +[1421768535.871414] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.62 ms +[1421768536.084570] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.48 ms +[1421768536.289999] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768536.495533] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768536.700672] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768536.908235] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.15 ms +[1421768537.118114] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.51 ms +[1421768537.331900] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.78 ms +[1421768537.537591] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768537.752479] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421768538.003035] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.3 ms +[1421768538.268164] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.9 ms +[1421768538.490573] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421768538.775508] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.6 ms +[1421768539.001067] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421768539.226076] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421768539.452615] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421768539.658572] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421768539.864038] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768540.069340] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768540.274302] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768540.479406] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768540.685876] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768540.893355] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.01 ms +[1421768541.099755] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421768541.304714] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768541.510758] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768541.715918] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768541.922509] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768542.128067] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768542.333332] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768542.538796] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768542.744003] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768542.949806] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768543.155080] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768543.361810] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.02 ms +[1421768543.570234] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.86 ms +[1421768543.783864] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.56 ms +[1421768543.989755] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768544.195133] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768544.401186] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768544.606261] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768544.811498] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768545.017433] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421768545.223728] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768545.428868] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768545.634691] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768545.840572] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768546.045203] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768546.250444] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768546.455705] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768546.661206] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421768546.866992] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768547.071974] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768547.276604] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768547.483323] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768547.689152] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768547.894498] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768548.099355] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768548.305454] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768548.510889] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768548.717567] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768548.923083] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768549.128112] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768549.333723] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768549.539128] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768549.744836] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768549.950040] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768550.155039] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768550.361364] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768550.566616] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768550.772876] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768550.979683] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768551.185573] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768551.391792] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768551.598306] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768551.803410] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768552.009265] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768552.214498] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768552.419501] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768552.626193] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768552.832891] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768553.038174] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768553.243401] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768553.448589] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768553.654155] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768553.861176] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421768554.067450] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421768554.272976] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421768554.479420] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768554.684486] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768554.890980] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421768555.096125] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768555.302457] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768555.507918] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768555.714183] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768555.919696] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768556.125574] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768556.330555] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768556.535734] 89 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768556.741379] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768556.947018] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768557.152439] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768557.357262] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768557.563701] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768557.769639] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768557.975370] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768558.180715] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768558.386097] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768558.591833] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768558.797119] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768559.002318] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768559.207890] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768559.414236] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768559.621244] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768559.826731] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768560.031563] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768560.236555] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768560.441950] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768560.647209] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768560.852784] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768561.057858] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768561.263107] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768561.468478] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768561.674197] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768561.879842] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768562.084762] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768562.289825] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768562.496353] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768562.701921] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768562.908368] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768563.113702] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768563.319589] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768563.525968] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768563.731101] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768563.936421] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768564.141892] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768564.347012] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768564.551949] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768564.757044] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768564.962746] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768565.168188] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768565.374165] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768565.580818] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768565.786373] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421768565.991922] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768566.196855] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768566.403104] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421768566.610388] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.79 ms +[1421768566.815835] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768567.020855] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768567.225711] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768567.432069] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768567.637626] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768567.842820] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768568.048644] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768568.253752] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768568.459730] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768568.666266] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768568.871825] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768569.076830] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768569.282800] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768569.488520] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768569.693886] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768569.900463] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768570.105525] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768570.310531] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768570.516812] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768570.722763] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768570.928621] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768571.134109] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768571.340430] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768571.545991] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768571.751145] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768571.956810] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768572.162366] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768572.367838] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768572.573385] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768572.779322] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768572.985019] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768573.190581] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768573.395917] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768573.601565] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421768573.806661] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768574.012598] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768574.218623] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768574.424767] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768574.629866] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768574.835432] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768575.040461] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768575.245659] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768575.451908] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421768575.657231] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768575.862753] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768576.067924] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768576.272900] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768576.478133] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768576.683821] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768576.889463] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768577.094521] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768577.299591] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768577.504784] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768577.711552] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768577.917193] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768578.123303] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768578.328427] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768578.534458] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768578.739370] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768578.944581] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768579.150796] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768579.357194] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768579.563538] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768579.770302] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768579.977167] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421768580.183107] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768580.388234] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768580.593423] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768580.798779] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768581.003808] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768581.210129] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768581.415359] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768581.621238] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768581.826315] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421768582.032055] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768582.237234] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768582.443574] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768582.648714] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768582.853815] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768583.058974] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768583.264097] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768583.470245] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768583.676309] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768583.881732] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768584.086840] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768584.292151] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768584.496849] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768584.703173] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421768584.908486] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768585.113432] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768585.318970] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768585.524528] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768585.730100] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768585.935512] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768586.141757] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421768586.347021] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768586.553074] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768586.759103] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768586.964495] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768587.171897] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768587.378186] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768587.583739] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768587.789038] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768587.994401] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768588.199976] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768588.405463] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768588.612182] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768588.817576] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768589.022541] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768589.228799] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768589.435279] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421768589.641212] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768589.847654] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768590.053403] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768590.258605] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768590.464887] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421768590.670626] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768590.876294] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768591.081588] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768591.286494] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768591.491932] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768591.698680] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768591.904233] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768592.110769] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421768592.317572] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421768592.522651] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768592.727882] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768592.934343] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768593.139961] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768593.344795] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768593.550092] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768593.755120] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768593.960157] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768594.165939] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421768594.371647] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768594.578187] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768594.784755] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768594.990058] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768595.195243] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768595.400945] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768595.606415] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768595.811724] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768596.017352] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421768596.222600] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768596.429016] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768596.634005] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421768596.839998] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768597.045090] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768597.251030] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768597.457463] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768597.663908] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768597.869140] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768598.073763] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768598.279773] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421768598.485088] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768598.691448] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768598.896774] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768599.102386] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421768599.307751] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768599.512900] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768599.718467] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421768599.924941] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421768600.130491] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768600.335611] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768600.541845] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421768600.747283] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768600.952924] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421768601.159639] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768601.365266] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768601.570742] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768601.776320] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768601.981333] 89 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768602.187809] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768602.393380] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768602.599014] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768602.805053] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768603.010160] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768603.215455] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768603.421967] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421768603.627396] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421768603.834535] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768604.039607] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768604.245107] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768604.450070] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768604.655910] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421768604.861452] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768605.066707] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768605.271835] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768605.477109] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768605.683089] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768605.888548] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768606.093644] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768606.298715] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768606.504861] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768606.710801] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768606.915967] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768607.120742] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768607.325996] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768607.530719] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768607.736041] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768607.942607] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768608.148243] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768608.353382] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768608.559691] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768608.764839] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768608.970085] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768609.175550] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768609.380815] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768609.586477] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768609.791787] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768609.998308] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768610.204258] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768610.409180] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768610.614260] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768610.819807] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768611.024939] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768611.230569] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768611.437271] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768611.642842] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768611.848877] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768612.054867] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768612.260512] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768612.466907] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421768612.672765] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768612.878641] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768613.084260] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768613.290675] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768613.495741] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768613.702490] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768613.907278] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768614.111887] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768614.318153] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768614.523933] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768614.730408] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421768614.936197] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768615.141544] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768615.347672] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421768615.552681] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768615.758644] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768615.964135] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768616.169330] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768616.374283] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768616.580081] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768616.785244] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768616.991577] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768617.197134] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768617.402641] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768617.609028] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768617.814091] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768618.019424] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.95 ms +[1421768618.224434] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768618.429637] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768618.634768] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768618.842614] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.06 ms +[1421768619.051759] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.36 ms +[1421768619.263029] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.17 ms +[1421768619.500237] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.4 ms +[1421768619.753553] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=49.3 ms +[1421768620.019607] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.5 ms +[1421768620.298049] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.5 ms +[1421768620.518807] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421768620.742441] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421768620.965878] 847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421768621.246438] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.6 ms +[1421768621.470843] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421768621.699639] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421768621.928161] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421768622.152450] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421768622.377175] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421768622.606531] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.3 ms +[1421768622.887722] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.4 ms +[1421768623.092617] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768623.297864] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768623.503556] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768623.723118] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.7 ms +[1421768623.957563] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.5 ms +[1421768624.202483] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=41.0 ms +[1421768624.420928] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421768624.641670] 1148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421768624.867312] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421768625.090710] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421768625.315646] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421768625.543680] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421768625.769701] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421768625.988487] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421768626.194852] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421768626.400623] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.90 ms +[1421768626.606494] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768626.811814] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768627.016221] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768627.222384] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768627.428408] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768627.633985] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768627.839822] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768628.045798] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768628.251095] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768628.456199] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768628.661636] 1049 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768628.868572] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768629.073610] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768629.279028] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421768629.488391] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.58 ms +[1421768629.702943] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421768629.921705] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421768630.183242] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=57.5 ms +[1421768630.408513] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421768630.614189] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768630.819177] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768631.024082] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768631.236473] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.54 ms +[1421768631.446048] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.78 ms +[1421768631.658926] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.05 ms +[1421768631.874742] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.4 ms +[1421768632.132088] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=53.6 ms +[1421768632.355304] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421768632.582389] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421768632.812909] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.2 ms +[1421768633.037539] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421768633.258738] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421768633.481944] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421768633.711974] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421768633.941156] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.2 ms +[1421768634.226727] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.4 ms +[1421768634.446454] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421768634.725301] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.4 ms +[1421768634.951158] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421768635.156618] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768635.362301] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768635.568859] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421768635.791125] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421768636.003514] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.47 ms +[1421768636.216985] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.45 ms +[1421768636.435530] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.4 ms +[1421768636.655359] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421768636.935461] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.0 ms +[1421768637.163432] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421768637.393726] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.3 ms +[1421768637.622303] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421768637.844458] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421768638.106543] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=58.5 ms +[1421768638.312378] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768638.517850] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768638.723096] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768638.929201] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768639.134040] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768639.339638] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768639.544760] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768639.750410] 130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768639.955911] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768640.162067] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768640.367323] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768640.573646] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768640.779091] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768640.984950] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768641.190632] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768641.395852] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768641.601198] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768641.807562] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.03 ms +[1421768642.016226] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.94 ms +[1421768642.248659] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.5 ms +[1421768642.462308] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.38 ms +[1421768642.677097] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421768642.895756] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421768643.101080] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768643.305889] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768643.510662] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768643.720357] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.59 ms +[1421768643.931092] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.23 ms +[1421768644.143676] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.69 ms +[1421768644.358022] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.3 ms +[1421768644.576250] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421768644.794036] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421768645.019394] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421768645.245421] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421768645.528699] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.5 ms +[1421768645.809355] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.4 ms +[1421768646.037885] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421768646.267907] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.2 ms +[1421768646.501159] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.9 ms +[1421768646.727747] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421768646.954431] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421768647.159819] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768647.365756] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768647.571189] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768647.777628] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421768647.988938] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.10 ms +[1421768648.200961] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768648.407655] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768648.614104] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421768648.819394] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768649.024080] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768649.232670] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.84 ms +[1421768649.445724] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.28 ms +[1421768649.689847] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.6 ms +[1421768649.907173] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421768650.126724] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421768650.332150] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768650.538852] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768650.744342] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768650.949841] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768651.155379] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768651.360264] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768651.565171] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768651.770337] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768651.975287] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768652.180199] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768652.386853] 1612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421768652.592815] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768652.797856] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768653.003023] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768653.208246] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768653.413330] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768653.618117] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768653.824366] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768654.029092] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768654.234243] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768654.439217] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768654.644893] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421768654.850367] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768655.056016] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421768655.261505] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768655.467227] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768655.672779] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768655.879907] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768656.085325] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768656.291162] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421768656.496313] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768656.701887] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768656.908154] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768657.112915] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768657.319253] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421768657.524435] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768657.729787] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768657.935492] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768658.140957] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768658.347145] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768658.552777] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768658.758714] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768658.964195] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768659.170133] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421768659.375675] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768659.581052] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768659.787271] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421768659.992547] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768660.198052] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768660.405042] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421768660.610903] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768660.816757] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768661.023005] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768661.228441] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768661.433979] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768661.639168] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768661.845360] 1566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768662.050118] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768662.255060] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768662.461347] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768662.666860] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768662.872688] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768663.077720] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768663.282631] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768663.487689] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768663.693180] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768663.898987] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768664.103689] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768664.308835] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768664.515497] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768664.722279] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421768664.929075] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421768665.135674] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768665.341779] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768665.548167] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768665.754144] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768665.961043] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421768666.167629] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421768666.373597] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768666.578800] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768666.785926] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421768666.991291] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768667.196464] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768667.402594] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768667.607351] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768667.812494] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768668.017513] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768668.223387] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768668.428464] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768668.633109] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768668.838225] 1410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768669.042987] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768669.248345] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768669.454106] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768669.660200] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768669.866014] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768670.071133] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768670.276410] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768670.481865] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768670.687569] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768670.893040] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768671.097610] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768671.302919] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768671.508581] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768671.714114] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768671.919159] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768672.124231] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768672.329555] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768672.535103] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768672.741028] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768672.946458] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768673.152660] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768673.357669] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768673.566774] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.45 ms +[1421768673.772067] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768673.978442] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768674.183905] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768674.389146] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768674.593993] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768674.800191] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768675.005706] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421768675.211333] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421768675.416831] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768675.622493] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421768675.828851] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421768676.034016] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768676.239415] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768676.444491] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768676.650605] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768676.856730] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768677.061536] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768677.266437] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768677.473233] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768677.678821] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768677.884538] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768678.090469] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421768678.296133] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768678.501640] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768678.708468] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421768678.914079] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768679.119368] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768679.325750] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768679.531288] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768679.736456] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768679.941952] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768680.146956] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768680.351981] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768680.558108] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768680.763884] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768680.969535] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768681.174858] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768681.380580] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768681.586664] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768681.792110] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768681.997768] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768682.203122] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768682.407962] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768682.613132] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768682.820133] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768683.025188] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768683.231535] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768683.437885] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768683.643161] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768683.848299] 1156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768684.054305] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768684.259684] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768684.465198] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768684.670738] 1238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768684.877531] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768685.082455] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768685.287469] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768685.492967] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768685.698681] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768685.904392] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768686.109591] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768686.314510] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768686.520416] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768686.725936] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768686.931100] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768687.136615] 1451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768687.341618] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768687.555769] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.86 ms +[1421768687.761424] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768687.967588] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768688.172629] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768688.378015] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768688.582883] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768688.787817] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768688.992876] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768689.197851] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768689.404110] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768689.609569] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768689.814749] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768690.019215] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768690.224492] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768690.429610] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768690.634748] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768690.839901] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768691.044433] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768691.250697] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768691.456781] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768691.662438] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768691.868253] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421768692.073593] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421768692.278657] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768692.484060] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421768692.689357] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768692.894458] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768693.099270] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768693.304704] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768693.509912] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768693.716541] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421768693.922204] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768694.128320] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421768694.334627] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768694.540355] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421768694.745800] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768694.951124] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768695.156304] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768695.361781] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768695.568511] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768695.773954] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768695.979431] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768696.185938] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768696.392748] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421768696.597956] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768696.803554] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768697.008567] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768697.213391] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768697.418594] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768697.624118] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768697.829566] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768698.035088] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421768698.240407] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768698.446421] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768698.652611] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768698.857717] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768699.062480] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768699.267837] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768699.473583] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768699.679955] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421768699.889715] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.31 ms +[1421768700.104201] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421768700.323189] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421768700.578048] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=50.5 ms +[1421768700.800054] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421768701.083413] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.3 ms +[1421768701.312030] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421768701.599788] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.0 ms +[1421768701.826672] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421768702.058228] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.9 ms +[1421768702.290164] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.7 ms +[1421768702.495541] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768702.700399] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768702.908037] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.98 ms +[1421768703.117479] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.23 ms +[1421768703.329389] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.44 ms +[1421768703.541803] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.94 ms +[1421768703.750058] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.33 ms +[1421768703.955566] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768704.162213] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768704.367603] 1049 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768704.573894] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768704.779223] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768704.984177] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768705.190293] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768705.395640] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768705.600968] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768705.806707] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768706.011403] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768706.217545] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768706.423896] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421768706.629042] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768706.834528] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768707.039489] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768707.244894] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768707.449893] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768707.655055] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768707.860372] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768708.065170] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768708.270617] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768708.476566] 1148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768708.683261] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768708.889042] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768709.094388] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768709.300154] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768709.506767] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768709.712555] 904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768709.919229] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768710.124798] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768710.330056] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768710.535325] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768710.740687] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768710.955574] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421768711.160697] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768711.366480] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768711.572210] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768711.777521] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421768711.982798] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768712.188023] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768712.393265] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768712.598902] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768712.804782] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768713.009669] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768713.214879] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768713.421355] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768713.627786] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768713.834217] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768714.039242] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768714.245443] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768714.450052] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768714.655128] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768714.861374] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421768715.066146] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768715.271387] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768715.476955] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768715.682388] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768715.888280] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768716.093288] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768716.299280] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421768716.505259] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768716.710484] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768716.915551] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768717.121438] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768717.326728] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768717.532488] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768717.737624] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768717.942774] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768718.148680] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768718.355256] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768718.561941] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768718.767308] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768718.972760] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768719.178457] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768719.383496] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768719.588762] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768719.794380] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768719.999768] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768720.205430] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768720.411793] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421768720.617166] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768720.822668] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768721.027615] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768721.232470] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768721.438668] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768721.645144] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768721.851827] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768722.057246] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768722.263719] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768722.469114] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768722.674383] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768722.879969] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768723.084960] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768723.289987] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768723.495125] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768723.700459] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768723.907000] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768724.112016] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768724.318053] 1522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768724.523776] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768724.730543] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768724.935873] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768725.142129] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768725.349651] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.51 ms +[1421768725.555756] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421768725.762627] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768725.968637] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421768726.174142] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768726.380925] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421768726.586332] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768726.792820] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421768726.999344] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768727.204673] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768727.411237] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421768727.618133] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768727.823971] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768728.028656] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768728.234136] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421768728.439644] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768728.645657] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421768728.851483] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768729.056390] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768729.261753] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768729.468500] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421768729.673939] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768729.880188] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768730.085024] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768730.290326] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768730.495447] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768730.701012] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768730.907653] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421768731.113475] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421768731.318659] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768731.523685] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768731.728597] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768731.933836] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768732.139484] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768732.344774] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768732.551158] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768732.756654] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768732.962101] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768733.167294] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768733.372750] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768733.577816] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768733.784112] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768733.989643] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768734.194670] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768734.400232] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768734.606480] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768734.820398] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.63 ms +[1421768735.025901] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768735.231191] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768735.436722] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768735.642152] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768735.847529] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768736.053535] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768736.259171] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421768736.464891] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421768736.670684] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768736.877483] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768737.083472] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768737.289898] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768737.495765] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768737.701284] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768737.906509] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768738.111061] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768738.315817] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768738.520967] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768738.726028] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768738.931737] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768739.137214] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768739.343410] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768739.549011] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768739.755467] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768739.961304] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768740.166713] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768740.372838] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768740.578169] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768740.783545] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768740.988294] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421768741.193470] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768741.398797] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768741.604286] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768741.809733] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768742.015803] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768742.220664] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768742.426492] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768742.632738] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768742.838464] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768743.043018] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768743.248309] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768743.454542] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421768743.659599] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768743.866244] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.79 ms +[1421768744.073036] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768744.279419] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768744.485645] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768744.690723] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768744.897537] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768745.102473] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768745.307595] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768745.513026] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768745.719480] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768745.924672] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768746.130054] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768746.335208] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768746.540489] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768746.745668] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768746.951327] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421768747.157349] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768747.362563] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768747.567989] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768747.773450] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768747.978494] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768748.183434] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768748.388939] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768748.594649] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768748.800910] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768749.005838] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768749.211206] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768749.415933] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421768749.621002] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768749.827386] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768750.032324] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768750.238580] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768750.444651] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421768750.650861] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768750.856263] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768751.061094] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768751.267170] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768751.473482] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768751.678917] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768751.885289] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768752.090219] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768752.295703] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768752.502179] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768752.708392] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768752.913357] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768753.119660] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768753.324955] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768753.530475] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768753.735920] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768753.940956] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768754.146324] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768754.351220] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768754.556454] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768754.762511] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768754.967933] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768755.173103] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768755.378214] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768755.584913] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421768755.790348] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768755.995813] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768756.200775] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768756.406905] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768756.612852] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768756.819598] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421768757.025445] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421768757.232194] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768757.439053] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768757.645301] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768768.054863] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768768.260310] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768768.465884] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768768.671456] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768768.877834] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768769.083023] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768769.288071] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768769.493365] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768769.698765] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768769.904335] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768770.109504] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768770.315207] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768770.520691] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768770.726497] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768770.932815] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768771.138096] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768771.344473] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421768771.549845] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768771.755184] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768771.960898] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421768772.166426] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768772.371721] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768772.576585] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768772.782199] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768772.987957] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768773.193492] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768773.399628] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768773.605527] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768773.811108] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768774.016064] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768774.222320] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768774.427623] 1417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768774.633245] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768774.839958] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421768775.044845] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768775.251427] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421768775.457137] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421768775.663547] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768775.869433] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768776.074200] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768776.279605] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768776.485576] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768776.691598] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768776.897086] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768777.102234] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768777.307031] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768777.512316] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421768777.717561] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768777.922684] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768778.128686] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768778.333688] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768778.539704] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768778.745109] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768778.950678] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768779.155927] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768779.361217] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768779.566526] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768779.771759] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768779.977394] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768780.182948] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768780.387980] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768780.593566] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768780.799683] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768781.004802] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768781.210701] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768781.416168] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768781.621344] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421768781.826970] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768782.032953] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768782.238227] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768782.443754] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768782.650525] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768782.855481] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768783.060565] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768783.265921] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768783.472309] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421768783.677715] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768783.883419] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768784.088733] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421768784.293676] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768784.498622] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768784.703736] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768784.909487] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768785.114582] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768785.320000] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768785.525621] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768785.730928] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768785.936404] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768786.141490] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768786.346627] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768786.552139] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768786.759235] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768786.965035] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421768787.170332] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768787.378715] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768787.584170] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768787.789872] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768787.995854] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768788.202515] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768788.407726] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768788.613817] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768788.819910] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421768789.024352] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768789.229355] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768789.434709] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768789.640249] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768789.846106] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768790.051156] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768790.256286] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768790.462408] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768790.667430] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768790.872838] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768791.078029] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768791.283855] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768791.490096] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768791.695678] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768791.900828] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768792.106508] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768792.311340] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768792.516617] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768792.722400] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768792.927696] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768793.133421] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768793.338670] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768793.544599] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768793.750409] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421768793.955930] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768794.161201] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768794.366695] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768794.573360] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768794.780057] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768794.986897] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768795.192478] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768795.398496] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768795.603647] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768795.808778] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768796.013445] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768796.218662] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768796.424442] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768796.629394] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768796.835247] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768797.041219] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768797.246505] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768797.452986] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421768797.659471] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768797.866338] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421768798.070844] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768798.276805] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768798.482156] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768798.687367] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421768798.892270] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768799.097206] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768799.303192] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768799.507899] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768799.713067] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768799.918389] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768800.123581] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768800.328733] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768800.533985] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421768800.740149] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768800.946598] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768801.151641] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768801.357611] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768801.562575] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768801.767505] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768801.973788] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421768802.179737] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768802.385122] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768802.590514] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768802.795901] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768803.001285] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768803.206996] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768803.412273] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768803.617327] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768803.822919] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768804.027942] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768804.232796] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768804.438291] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768804.644911] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768804.851714] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421768805.057719] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768805.268337] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.74 ms +[1421768805.473422] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768805.678310] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768805.883707] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768806.088985] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768806.294180] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768806.499967] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768806.706002] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768806.911346] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768807.116780] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768807.322010] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768807.527353] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768807.733283] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768807.938495] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768808.143555] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768808.348914] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768808.554142] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768808.759171] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768808.965074] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768809.170015] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768809.376202] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768809.582301] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768809.787368] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768809.993518] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768810.198809] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768810.404973] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768810.610443] 1156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768810.815408] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768811.021080] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768811.225915] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768811.431057] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768811.636013] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768811.841386] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768812.046554] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768812.252262] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768812.463508] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.21 ms +[1421768812.674837] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.02 ms +[1421768812.888322] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.27 ms +[1421768813.131634] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.5 ms +[1421768813.395489] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.8 ms +[1421768813.669490] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.0 ms +[1421768813.908949] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.6 ms +[1421768814.187488] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.5 ms +[1421768814.416029] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421768814.633010] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421768814.852443] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421768815.057272] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768815.262979] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.90 ms +[1421768815.468561] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768815.676345] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.61 ms +[1421768815.887709] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.05 ms +[1421768816.124878] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.1 ms +[1421768816.342916] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421768816.562807] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.7 ms +[1421768816.788089] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421768817.011100] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421768817.234266] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421768817.463450] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421768817.691162] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421768817.920266] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421768818.125655] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768818.331911] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768818.537889] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768818.743151] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768818.948881] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768819.154947] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421768819.361082] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768819.567260] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421768819.773086] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768819.980480] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.36 ms +[1421768820.189406] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.93 ms +[1421768820.419890] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.6 ms +[1421768820.632722] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.94 ms +[1421768820.838129] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768821.043158] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768821.248506] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768821.453877] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768821.658990] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768821.865798] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421768822.070917] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768822.275849] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768822.481039] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768822.687414] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768822.892994] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768823.098244] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768823.303585] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768823.510010] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421768823.715881] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768823.921475] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768824.126719] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768824.332739] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768824.538393] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768824.744714] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768824.950294] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768825.155526] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768825.360622] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768825.566205] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768825.772870] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768825.978608] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768826.184292] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768826.389834] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768826.595438] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768826.800982] 1026 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768827.006431] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768827.211677] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768827.417139] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768827.623833] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768827.829482] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768828.034466] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768828.239352] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768828.444868] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768828.651596] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768828.857359] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768829.062340] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768829.267617] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768829.473000] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768829.678094] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768829.883832] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421768830.090121] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768830.295267] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768830.500852] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768830.706848] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768830.913799] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768831.120548] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768831.325596] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768831.532059] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421768831.737462] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768831.942922] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768832.148704] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768832.354263] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768832.560606] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768832.766359] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768832.971696] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768833.176680] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768833.381868] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768833.587259] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768833.792953] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768833.998841] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768834.205645] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768834.410822] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768834.616398] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768834.822481] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421768835.027621] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768835.234174] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768835.439780] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768835.645304] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421768835.851760] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421768836.057809] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768836.262943] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768836.468117] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768836.674367] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768836.879974] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768837.084534] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768837.289629] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768837.494702] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768837.700419] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768837.907033] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768838.112124] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768838.318343] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768838.524928] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768838.730665] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.05 ms +[1421768838.937012] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768839.143326] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768839.348301] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768839.553008] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768839.758583] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768839.964178] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768840.170305] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768840.392535] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421768840.630436] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.7 ms +[1421768840.835416] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768841.040121] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768841.245241] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768841.450223] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768841.655425] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768841.860787] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768842.065649] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768842.270429] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768842.475504] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768842.681045] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768842.905693] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421768843.115308] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.29 ms +[1421768843.321080] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768843.527489] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768843.733784] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768843.939325] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768844.153118] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.1 ms +[1421768844.359460] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768844.565878] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768844.771222] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421768844.976630] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768845.181651] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768845.424025] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.4 ms +[1421768845.629380] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768845.850929] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421768846.056878] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768846.261707] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768846.467082] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768846.673227] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421768846.879687] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768847.084522] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768847.290537] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768847.495832] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768847.701152] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768847.907288] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421768848.112057] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768848.317151] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768848.522097] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768848.727924] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768848.933237] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768849.150838] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421768849.355801] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768849.561160] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768849.766261] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768849.972362] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768850.178840] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768850.461158] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.1 ms +[1421768850.667711] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768850.873045] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768851.077785] 1148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768851.284152] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768851.490401] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768851.695576] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768851.901751] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768852.107482] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768852.312956] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768852.519601] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768852.724759] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768852.929863] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768853.135976] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421768853.341422] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768853.546977] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768853.752411] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768853.957740] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768854.164276] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768854.369428] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768854.574590] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768854.780204] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768854.985491] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768855.191722] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768855.397792] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768855.603249] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768855.810089] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768856.038427] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421768856.244404] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768856.450480] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768856.656664] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768856.862562] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768857.067467] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768857.272828] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768857.478774] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768857.684439] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768857.889852] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421768858.095230] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421768858.300603] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768858.505772] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768858.711092] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768858.916206] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768859.122447] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421768859.328953] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768859.534807] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768859.740943] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768859.947227] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768860.152475] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768860.357557] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768860.563673] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768860.769267] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768860.975045] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768861.181116] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421768861.386601] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768861.592037] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768861.798232] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768862.003537] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768862.210000] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768862.415089] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768862.621634] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768862.827269] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768863.033017] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421768863.238029] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768863.443704] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768863.649636] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768863.854879] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768864.059939] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768864.265119] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768864.471529] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768864.677156] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768864.883414] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768865.088074] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768865.293224] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768865.499287] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768865.704719] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768865.910124] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768866.116531] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768866.321997] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768866.527953] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768866.732681] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768866.937765] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768867.143185] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768867.349392] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768867.555233] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421768867.760909] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768867.966403] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768868.171520] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768868.382726] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.20 ms +[1421768868.598893] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421768868.805724] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768869.011741] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768869.216749] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768869.422684] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768869.627351] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768869.833383] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768870.037992] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768870.244127] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768870.450918] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768870.656890] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421768870.862102] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768871.066336] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768871.272187] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768871.478158] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768871.683574] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768871.889123] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768872.093699] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768872.300266] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768872.505579] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768872.710699] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768872.917147] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768873.122661] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768873.327483] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768873.532536] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768873.738838] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768873.944392] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768874.150589] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768874.355547] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768874.560574] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768874.775792] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421768874.980879] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768875.186040] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768875.391274] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768875.597113] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768875.802207] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768876.006537] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768876.211887] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768876.417465] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768876.623380] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768876.828832] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768877.033940] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768877.239931] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768877.445015] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768877.650212] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768877.855191] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768878.060110] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421768878.265702] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768878.472516] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421768878.677921] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768878.883296] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768879.099323] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421768879.327783] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421768879.533768] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421768879.738575] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768879.944373] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768880.150061] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421768880.360169] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.19 ms +[1421768880.566678] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421768880.958001] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=187 ms +[1421768881.175859] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421768881.450482] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.6 ms +[1421768881.750459] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=95.8 ms +[1421768882.033860] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.5 ms +[1421768882.262357] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421768882.484013] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421768882.762867] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.0 ms +[1421768882.980975] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421768883.260783] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.9 ms +[1421768883.486459] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421768883.710379] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421768883.935300] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421768884.184586] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.0 ms +[1421768884.410825] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421768884.616285] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768884.822645] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768885.027681] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768885.241412] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421768885.451002] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.79 ms +[1421768885.685143] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.1 ms +[1421768885.940465] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.2 ms +[1421768886.202486] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=58.0 ms +[1421768886.424164] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421768886.662079] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.8 ms +[1421768886.886223] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421768887.175222] 1529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.9 ms +[1421768887.430247] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=50.8 ms +[1421768887.635682] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768887.921212] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.9 ms +[1421768888.147506] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421768888.369729] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421768888.652048] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.2 ms +[1421768888.878124] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768889.160621] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.8 ms +[1421768889.366867] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768889.572258] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768889.786184] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.81 ms +[1421768889.997763] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.43 ms +[1421768890.212138] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768890.460724] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.7 ms +[1421768890.680538] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421768890.905553] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421768891.184221] 1566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.4 ms +[1421768891.409047] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421768891.635995] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421768891.864380] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421768892.151104] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.5 ms +[1421768892.424732] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.5 ms +[1421768892.652037] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421768892.882070] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421768893.107580] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421768893.334231] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421768893.540759] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768893.746612] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768893.952245] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768894.157983] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768894.366758] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.96 ms +[1421768894.573056] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768894.779182] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768894.984851] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768895.190963] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768895.401677] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.40 ms +[1421768895.615625] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.46 ms +[1421768895.852423] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.7 ms +[1421768896.094948] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.0 ms +[1421768896.356699] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=57.9 ms +[1421768896.617370] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.6 ms +[1421768896.842366] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421768897.123118] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.5 ms +[1421768897.343824] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421768897.566847] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421768897.796837] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.4 ms +[1421768898.080854] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.8 ms +[1421768898.305745] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421768898.533720] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421768898.760213] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421768898.989428] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421768899.217107] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421768899.424858] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.23 ms +[1421768899.642517] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421768899.857312] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421768900.070808] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.60 ms +[1421768900.307433] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.7 ms +[1421768900.539692] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.2 ms +[1421768900.759427] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421768900.983316] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421768901.271898] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.4 ms +[1421768901.503220] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.4 ms +[1421768901.724744] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421768901.952532] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421768902.175548] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421768902.405490] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.2 ms +[1421768902.627383] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421768902.854962] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421768903.134736] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.7 ms +[1421768903.361516] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421768903.584898] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421768903.790112] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768903.996704] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421768904.205181] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.04 ms +[1421768904.415971] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.60 ms +[1421768904.655280] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.8 ms +[1421768904.900932] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=41.6 ms +[1421768905.119849] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421768905.340650] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421768905.564472] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421768905.847085] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.5 ms +[1421768906.066203] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421768906.290452] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421768906.516165] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421768906.721717] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768906.951036] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.0 ms +[1421768907.182093] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.9 ms +[1421768907.408133] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421768907.686985] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.9 ms +[1421768907.913670] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421768908.146940] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.4 ms +[1421768908.351799] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768908.559197] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.35 ms +[1421768908.774539] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421768909.000132] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421768909.213690] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.57 ms +[1421768909.431817] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421768909.668432] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.0 ms +[1421768909.873484] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768910.091640] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421768910.311286] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421768910.516473] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768910.721658] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768910.927084] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768911.132482] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768911.337627] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768911.543388] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768911.748921] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768911.954429] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768912.160748] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768912.366237] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768912.572015] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768912.777483] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768912.983959] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768913.189124] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768913.394811] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768913.600443] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768913.806003] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768914.011235] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768914.216294] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768914.421376] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768914.626709] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768914.831924] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768915.036858] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768915.241790] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768915.447572] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768915.653050] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768915.857954] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768916.062726] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768916.267906] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768916.473413] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768916.678459] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768916.885128] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421768917.090377] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768917.296710] 1612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768917.503503] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768917.709440] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768917.915002] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768918.121553] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768918.327989] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421768918.533377] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421768918.738798] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768918.943755] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768919.148719] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768919.353705] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768919.559688] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768919.764904] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768919.971331] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768920.176192] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768920.381897] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768920.588323] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768920.793865] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768921.000319] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768921.205477] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768921.410589] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768921.615650] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768921.820579] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768922.025168] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768922.230128] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768922.435337] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768922.640759] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768922.846018] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768923.051391] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768923.256563] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768923.461741] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768923.666842] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768923.872040] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768924.078361] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768924.283870] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768924.489528] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768924.694959] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768924.900648] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768925.106089] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768925.312699] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768925.519110] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768925.724916] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421768925.931405] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768926.136544] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768926.342274] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768926.547973] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768926.753474] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768926.958788] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768927.164488] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768927.371191] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768927.577835] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768927.783708] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421768927.989455] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768928.194824] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768928.400115] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768928.605161] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768928.810214] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768929.015384] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768929.220647] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768929.425666] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768929.630799] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768929.836336] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768930.041556] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768930.247816] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768930.453804] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768930.660783] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768930.866371] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768931.071352] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768931.277486] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768931.482748] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768931.688095] 1410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768931.894518] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421768932.099624] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768932.304970] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768932.510764] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768932.716486] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768932.922874] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768933.127916] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768933.333181] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768933.539184] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768933.745256] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421768933.951837] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768934.157451] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768934.363038] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768934.569117] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768934.774586] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768934.980859] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421768935.187940] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421768935.397644] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.65 ms +[1421768935.610516] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.51 ms +[1421768935.859131] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.4 ms +[1421768936.118237] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=55.3 ms +[1421768936.394834] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.6 ms +[1421768936.600065] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768936.806560] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421768937.012606] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421768937.217725] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768937.422787] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768937.628075] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768937.833855] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768938.038809] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768938.243952] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768938.449820] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421768938.656326] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768938.861646] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421768939.067494] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768939.272968] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768939.478405] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768939.684172] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768939.890533] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421768940.096390] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768940.302949] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768940.508040] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768940.712978] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768940.918326] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768941.124773] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421768941.329783] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768941.535619] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768941.741485] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768941.947241] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768942.152380] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768942.357377] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768942.562649] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768942.767795] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768942.973042] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768943.178669] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768943.385103] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768943.591167] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768943.796948] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768944.058687] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=57.5 ms +[1421768944.264110] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768944.469795] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768944.674625] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768944.879832] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768945.085540] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768945.290450] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768945.495519] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768945.700825] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768945.906313] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768946.110999] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768946.316965] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768946.523405] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768946.730230] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421768946.935970] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768947.141943] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768947.348099] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421768947.553835] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768947.759843] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768947.965658] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768948.171375] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768948.376452] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421768948.581600] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768948.787065] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768948.992699] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768949.197872] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768949.402856] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768949.608316] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768949.814802] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768950.019845] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768950.226051] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768950.431303] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768950.637191] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768950.842887] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768951.049232] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768951.254977] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768951.460665] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768951.665786] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768951.870512] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768952.075227] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768952.282047] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.88 ms +[1421768952.487903] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421768952.693374] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768952.898732] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768953.105551] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768953.311209] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768953.515908] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768953.721350] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768953.927547] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768954.132876] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421768954.339381] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768954.545122] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768954.750698] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768954.956928] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768955.162343] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768955.367733] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768955.573694] 1021 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768955.779585] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768955.984751] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768956.190636] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768956.396171] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768956.601617] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421768956.808531] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768957.013505] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768957.218776] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768957.425341] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768957.630925] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768957.836109] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768958.040786] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768958.245856] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768958.451175] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768958.657135] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768958.862270] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768959.068368] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421768959.274348] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768959.480579] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768959.686399] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768959.893322] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768960.098581] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768960.304067] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768960.509758] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768960.714982] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768960.921485] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768961.126519] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768961.332501] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768961.538022] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768961.744427] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421768961.949894] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768962.156733] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421768962.382306] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421768962.619963] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.1 ms +[1421768962.825676] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768963.030949] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768963.236178] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768963.453384] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421768963.662552] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.14 ms +[1421768963.900889] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.3 ms +[1421768964.120921] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421768964.341089] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421768964.566596] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421768964.853198] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.1 ms +[1421768965.072712] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421768965.288432] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.9 ms +[1421768965.513291] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421768965.801149] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.9 ms +[1421768966.027310] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421768966.255087] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421768966.541926] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.8 ms +[1421768966.824461] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.4 ms +[1421768967.048391] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421768967.326468] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.2 ms +[1421768967.544708] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421768967.750211] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768967.955727] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768968.166683] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.59 ms +[1421768968.374923] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.30 ms +[1421768968.586384] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.31 ms +[1421768968.801102] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421768969.019726] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421768969.238335] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421768969.458645] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421768969.740013] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.3 ms +[1421768969.967270] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421768970.190212] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421768970.475935] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.9 ms +[1421768970.688799] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.83 ms +[1421768970.971268] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.4 ms +[1421768971.200980] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421768971.427758] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421768971.649026] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421768971.857110] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.05 ms +[1421768972.089305] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.4 ms +[1421768972.368287] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.0 ms +[1421768972.593350] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421768972.811730] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.4 ms +[1421768973.016851] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768973.222264] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768973.427935] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768973.636263] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.26 ms +[1421768973.848568] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.36 ms +[1421768974.059850] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.93 ms +[1421768974.278692] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421768974.498118] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421768974.722151] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421768985.132299] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768985.339137] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421768985.547680] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.99 ms +[1421768985.773433] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421768985.987861] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.2 ms +[1421768986.230773] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.8 ms +[1421768986.489245] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=54.3 ms +[1421768986.764812] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.1 ms +[1421768986.990106] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421768987.217432] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421768987.430793] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.33 ms +[1421768987.658550] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421768987.883534] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421768988.112034] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421768988.398082] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.0 ms +[1421768988.624514] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421768988.902742] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.3 ms +[1421768989.125503] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421768989.348115] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421768989.587585] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.6 ms +[1421768989.793612] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768989.999264] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768990.207752] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.01 ms +[1421768990.419229] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.37 ms +[1421768990.633528] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.98 ms +[1421768990.884386] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.4 ms +[1421768991.154244] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=65.8 ms +[1421768991.435057] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.4 ms +[1421768991.641862] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421768991.926768] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.7 ms +[1421768992.156763] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421768992.381645] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421768992.606521] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421768992.833178] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421768993.055118] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421768993.334329] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.2 ms +[1421768993.614963] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.7 ms +[1421768993.843310] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421768994.070447] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421768994.297908] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421768994.503720] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768994.710377] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768994.917772] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.92 ms +[1421768995.143985] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421768995.357487] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.37 ms +[1421768995.576760] 847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421768995.793004] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768996.013712] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421768996.237043] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421768996.515579] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.0 ms +[1421768996.735693] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421768996.941974] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768997.167259] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421768997.376599] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.27 ms +[1421768997.600827] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421768997.885604] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.6 ms +[1421768998.116212] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.8 ms +[1421768998.345108] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421768998.572062] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421768998.852798] 1720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.6 ms +[1421768999.082876] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.2 ms +[1421768999.355666] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=68.9 ms +[1421768999.563280] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.23 ms +[1421768999.771601] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.16 ms +[1421769000.019686] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.4 ms +[1421769000.240712] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421769000.458570] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421769000.678426] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421769000.902264] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421769001.186472] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.9 ms +[1421769001.411524] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421769001.643963] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.7 ms +[1421769001.867285] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421769002.091303] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421769002.323851] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.5 ms +[1421769002.554489] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.1 ms +[1421769002.783972] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.2 ms +[1421769003.010764] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421769003.238003] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421769003.463111] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421769003.684329] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421769003.890367] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769004.095833] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769004.302904] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.05 ms +[1421769004.513011] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.69 ms +[1421769004.722955] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.14 ms +[1421769004.939898] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421769005.195092] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=50.9 ms +[1421769005.416243] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421769005.637345] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421769005.915558] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.3 ms +[1421769006.198973] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.3 ms +[1421769006.404388] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769006.609455] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769006.815898] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769007.020775] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769007.226693] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421769007.437542] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.15 ms +[1421769007.642924] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769007.850602] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.32 ms +[1421769008.061753] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.33 ms +[1421769008.296306] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.5 ms +[1421769008.516189] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421769008.734337] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421769008.959233] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421769009.184166] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421769009.461981] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.0 ms +[1421769009.667296] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769009.872643] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769010.083055] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.90 ms +[1421769010.291942] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.82 ms +[1421769010.505571] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.62 ms +[1421769010.748404] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.6 ms +[1421769010.965659] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421769011.235944] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=66.0 ms +[1421769011.463093] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421769011.690949] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421769011.917687] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421769012.142069] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421769012.368456] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421769012.575114] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421769012.802858] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421769013.084816] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.8 ms +[1421769013.313979] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421769013.535527] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421769013.764339] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421769014.050707] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.4 ms +[1421769014.256473] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769014.462701] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421769014.668533] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769014.875623] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.94 ms +[1421769015.094089] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421769015.305905] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.90 ms +[1421769015.522006] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421769015.742260] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421769015.961879] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421769016.184384] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421769016.407679] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421769016.634783] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421769016.860450] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421769017.086108] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421769017.312123] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421769017.535900] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421769017.759935] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421769017.979885] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421769018.204586] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421769018.425311] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421769018.709092] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.5 ms +[1421769018.914467] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769019.119775] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769019.325245] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769019.531023] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769019.740114] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.67 ms +[1421769019.953028] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.65 ms +[1421769020.196466] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.3 ms +[1421769020.413285] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421769020.637283] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421769020.863330] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421769021.090567] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421769021.317117] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421769021.536196] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421769021.761831] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421769021.967659] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769022.188793] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421769022.414097] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421769022.639517] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421769022.863881] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421769023.143696] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.8 ms +[1421769023.363075] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421769023.570111] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769023.775952] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769023.981382] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769024.196016] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421769024.407263] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.05 ms +[1421769024.623527] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421769024.874958] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=47.1 ms +[1421769025.097605] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421769025.321783] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421769025.546589] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421769025.768321] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421769026.056679] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.2 ms +[1421769026.336183] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.5 ms +[1421769026.563726] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421769026.782446] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421769027.006942] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421769027.227434] 130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421769027.509838] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.6 ms +[1421769027.737708] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421769027.965730] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421769028.198776] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.1 ms +[1421769028.404152] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769028.609952] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421769028.816938] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.00 ms +[1421769029.034674] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.4 ms +[1421769029.244536] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.08 ms +[1421769029.462631] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.1 ms +[1421769029.714135] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=47.4 ms +[1421769029.978532] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.5 ms +[1421769030.201103] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421769030.431065] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421769030.646978] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.7 ms +[1421769030.852875] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769031.058044] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769031.262928] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769031.468051] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769031.673327] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769031.878473] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769032.083214] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769032.288129] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769032.493370] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769032.701272] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.68 ms +[1421769032.922190] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421769033.159926] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.5 ms +[1421769033.377021] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421769033.595540] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421769033.817254] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421769034.021972] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769034.226744] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769034.431802] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769034.637392] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769034.843695] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769035.049206] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769035.254528] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769035.460393] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421769035.665573] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769035.871182] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769036.076535] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769036.281601] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421769036.486365] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769036.692023] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769036.897149] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421769037.101881] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769037.307657] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.91 ms +[1421769037.530568] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421769037.744128] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.42 ms +[1421769037.950433] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769038.156713] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769038.363309] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421769038.572175] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.07 ms +[1421769038.783543] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.35 ms +[1421769039.026728] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.2 ms +[1421769039.248397] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421769039.515158] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.8 ms +[1421769039.799870] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.7 ms +[1421769040.025196] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421769040.252827] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421769040.479936] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421769040.707977] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421769040.913297] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769041.198104] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.9 ms +[1421769041.420857] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421769041.644792] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421769041.919161] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.1 ms +[1421769042.138900] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.7 ms +[1421769042.362665] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421769042.568260] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769042.774657] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769042.980247] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769043.185387] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769043.391017] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769043.597293] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769043.802771] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769044.009233] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.90 ms +[1421769044.217245] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.15 ms +[1421769044.429092] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.23 ms +[1421769044.668227] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.3 ms +[1421769044.917767] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.2 ms +[1421769045.139339] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421769045.363629] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421769045.591813] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421769045.823698] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.6 ms +[1421769046.053195] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421769046.279175] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421769046.507517] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421769046.730644] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421769046.959254] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421769047.186622] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421769047.416280] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421769047.642607] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421769047.866234] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421769048.071023] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769048.276330] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769048.481892] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769048.688769] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421769048.910085] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421769049.115518] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769049.320746] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769049.526113] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769049.732355] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769049.938885] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769050.144629] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769050.350812] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769050.556541] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769050.763272] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769050.968927] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769051.174404] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769051.380920] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769051.586785] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769051.792676] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769051.999140] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769052.205337] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769052.410965] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769052.617567] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769052.823646] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769053.029825] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769053.235093] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769053.440072] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769053.645237] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769053.850817] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769054.057052] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769054.262132] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769054.467275] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769054.672929] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769054.878574] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769055.083843] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769055.289218] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769055.495753] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769055.701197] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769055.907196] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769056.111898] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769056.317454] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769056.523228] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769056.729706] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769056.934975] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769057.139807] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769057.344812] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769057.550226] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769057.756557] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421769057.962971] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769058.168189] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421769058.373254] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769058.579060] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769058.785625] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769058.990818] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769059.195673] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769059.401221] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421769059.608021] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421769059.813703] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769060.018979] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769060.224459] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421769060.429982] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769060.635830] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769060.842597] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769061.048897] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769061.253545] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769061.458463] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769061.664122] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769061.870782] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769062.076119] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769062.281223] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769062.487116] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769062.692386] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769062.897638] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769063.103733] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421769063.308958] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769063.515629] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769063.721772] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769063.927068] 1297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769064.132600] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769064.337943] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769064.543673] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769064.749456] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769064.954213] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769065.160182] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769065.368116] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769065.574217] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769065.780131] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769065.986568] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769066.191592] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769066.396865] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769066.604348] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769066.810055] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769067.015248] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769067.220376] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769067.425887] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769067.632343] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769067.837576] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769068.043521] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769068.248729] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769068.454001] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769068.659005] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769068.864050] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769069.069368] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769069.275437] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769069.481354] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769069.686730] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769069.891937] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769070.098041] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769070.302986] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769070.509346] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769070.716000] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769070.921426] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769071.127125] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769071.332120] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769071.537246] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769071.743477] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769071.948738] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769072.154250] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769072.359857] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769072.565321] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769072.770808] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769072.977315] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769073.183661] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421769073.388674] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769073.594678] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769073.799882] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769074.004577] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769074.209579] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769074.415921] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769074.621198] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769074.826155] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421769075.032111] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769075.237937] 1529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769075.443977] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769075.650396] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769075.856154] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769076.062052] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769076.268220] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769076.473727] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769076.679546] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769076.885011] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421769077.090826] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769077.295991] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769077.501428] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769077.708079] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769077.913601] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769078.118647] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769078.323553] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769078.528661] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769078.733783] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769078.938870] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769079.145414] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769079.351075] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769079.556511] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769079.761662] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769079.966910] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769080.172564] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769080.378290] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769080.584126] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769080.789848] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769080.995746] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769081.201218] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769081.406418] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769081.612280] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769081.818869] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769082.024156] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769082.230369] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769082.435910] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769082.641839] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769082.847132] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769083.052028] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769083.256762] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769083.462085] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769083.667696] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769083.872681] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769084.078407] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769084.283790] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769084.488534] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421769084.693986] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769084.899784] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769085.104806] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769085.309728] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769085.515673] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769085.721171] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769085.926743] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769086.132336] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769086.337930] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769086.543356] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769086.748377] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769086.953703] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769087.159670] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769087.365936] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769087.571384] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769087.776753] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769087.982233] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769088.187489] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769088.393267] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769088.599065] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769088.804960] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769089.010919] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769089.215823] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769089.421301] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769089.626818] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769089.833193] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769090.038988] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769090.244293] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769090.450519] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769090.657120] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769090.863195] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421769091.073335] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.66 ms +[1421769091.285343] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.10 ms +[1421769091.501927] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421769091.718323] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421769091.940631] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421769092.163606] 1133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421769092.388951] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421769092.614308] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421769092.840865] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421769093.116197] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.1 ms +[1421769093.336004] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421769093.564154] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421769093.792129] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421769094.017636] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421769094.223893] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769094.428739] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769094.634017] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769094.840148] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769095.047918] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.50 ms +[1421769095.273319] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421769095.514068] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.8 ms +[1421769095.762510] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.1 ms +[1421769095.988376] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421769096.207735] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421769096.487006] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.2 ms +[1421769096.710944] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421769096.993448] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.5 ms +[1421769097.207671] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.93 ms +[1421769097.431709] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421769097.714932] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.0 ms +[1421769097.941165] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421769098.167496] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421769098.392403] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421769098.614159] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421769098.843469] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421769099.074598] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.5 ms +[1421769099.280948] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421769099.487669] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769099.693343] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769099.898447] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769100.112062] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.91 ms +[1421769100.321820] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.03 ms +[1421769100.534700] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.02 ms +[1421769100.752982] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421769100.973236] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421769101.193947] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421769101.421167] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421769101.626705] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769101.831979] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769102.036721] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769102.242099] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769102.447700] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421769102.653652] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769102.859417] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769103.064508] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769103.269368] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769103.475301] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769103.680498] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769103.885816] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769104.091043] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769104.296261] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769104.502834] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421769104.708692] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769104.914181] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421769105.119647] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769105.325179] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769105.530645] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769105.736957] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769105.942206] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769106.148913] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769106.353851] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769106.559956] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421769106.765393] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769106.971752] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769107.176905] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769107.382005] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769107.587195] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769107.792627] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769107.997903] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421769108.203159] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769108.409564] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769108.616151] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421769108.821693] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421769109.027694] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421769109.233004] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769109.439541] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769109.644378] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421769109.850089] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769110.056163] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769110.281798] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421769110.495233] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.95 ms +[1421769110.710204] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421769110.927018] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421769111.149182] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421769111.373994] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421769111.600168] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421769111.824479] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421769112.051170] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421769112.256528] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769112.462128] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421769112.668336] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421769112.877048] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.03 ms +[1421769113.088107] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.00 ms +[1421769113.300631] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.52 ms +[1421769113.513880] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.53 ms +[1421769113.733431] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421769114.008082] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.4 ms +[1421769114.294183] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.9 ms +[1421769114.519691] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421769114.746362] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421769114.968428] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421769115.194080] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421769115.398933] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769115.624990] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421769115.847452] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421769116.072442] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421769116.305183] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.6 ms +[1421769116.532679] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421769116.759878] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769116.965335] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769117.170380] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769117.376450] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769117.582059] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769117.788417] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769117.993753] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769118.199240] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769118.406103] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.85 ms +[1421769118.613674] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.42 ms +[1421769118.822447] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.86 ms +[1421769119.035289] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.06 ms +[1421769119.241049] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.91 ms +[1421769119.455268] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421769119.674890] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.2 ms +[1421769119.898508] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421769120.178489] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.1 ms +[1421769120.405369] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421769120.635850] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.2 ms +[1421769120.897769] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=57.8 ms +[1421769121.123668] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421769121.354543] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.8 ms +[1421769121.577513] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421769121.802083] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421769122.027239] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421769122.313718] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.6 ms +[1421769122.538228] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421769122.743341] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769122.948605] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769123.154573] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769123.362317] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.47 ms +[1421769123.591862] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.5 ms +[1421769123.798841] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421769124.004232] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769124.210495] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769124.415973] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769124.622022] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769124.827622] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769125.032462] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769125.237916] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769125.443087] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769125.648819] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769125.854472] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769126.059453] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769126.264622] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769126.469983] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769126.675394] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769126.880780] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769127.087265] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421769127.292704] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769127.499379] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421769127.704993] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769127.909810] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421769128.115288] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769128.321461] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769128.527753] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769128.734241] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769128.939265] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769129.144133] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769129.349547] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769129.555016] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769129.760756] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769129.965962] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769130.171047] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769130.377224] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769130.582597] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769130.788779] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769130.994364] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769131.199711] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769131.405034] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769131.611371] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769131.817830] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769132.023768] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421769132.229843] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769132.436278] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421769132.641688] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769132.847079] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769133.051840] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769133.257672] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421769133.463326] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421769133.669777] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769133.874641] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769134.079862] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421769134.284941] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769134.491765] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769134.698567] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769134.904247] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769135.109577] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769135.315540] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769135.521126] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769135.727054] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769135.933916] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769136.139727] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769136.345420] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769136.551687] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769136.757155] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769136.962447] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421769137.167820] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769137.373566] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421769137.578917] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769137.784261] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769137.989806] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769138.194839] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421769138.400016] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769138.606325] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769138.811779] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769139.016741] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769139.221992] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769139.427226] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769139.632416] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769139.838249] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769140.042930] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769140.248168] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769140.453371] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769140.659716] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769140.865289] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769141.070296] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769141.275295] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769141.480500] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769141.685676] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769141.891415] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769142.097932] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421769142.303839] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769142.509893] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769142.716470] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421769142.922757] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769143.128521] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769143.334743] 1913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769143.540728] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769143.746138] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769143.952065] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421769144.157212] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769144.362579] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769144.567677] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421769144.773760] 1720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769144.979033] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769145.185230] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769145.390200] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769145.595117] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769145.799933] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769146.004951] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769146.210039] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769146.415356] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769146.621371] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769146.827183] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769147.031972] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769147.236960] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769147.442209] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769147.647457] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769147.854033] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769148.058773] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769148.263874] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769148.468925] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769148.674599] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769148.880914] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769149.086076] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769149.291089] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769149.496300] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769149.703168] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421769149.908732] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421769150.113630] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769150.319102] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769150.525732] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769150.731478] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769150.936753] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769151.143407] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769151.349647] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769151.555007] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769151.759955] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769151.964855] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769152.171192] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421769152.376252] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769152.581291] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769152.786285] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769152.991685] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769153.196470] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769153.401500] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769153.607131] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769153.812807] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769154.018517] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769154.224675] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769154.429771] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769154.635427] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769154.841010] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769155.045570] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769155.250715] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769155.456528] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769155.662502] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769155.867888] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769156.073598] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769156.278845] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769156.484663] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769156.690619] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769156.895830] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769157.100764] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769157.306382] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769157.513547] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.87 ms +[1421769157.719989] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769157.926452] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769158.132169] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769158.337408] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769158.542956] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769158.749393] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769158.956052] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421769159.161465] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769159.366589] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769159.572729] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769159.778511] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769159.985266] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769160.191823] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769160.397829] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769160.603309] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769160.809031] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769161.014875] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421769161.220147] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769161.450114] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.1 ms +[1421769161.655609] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769161.860682] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769162.065880] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769162.271176] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769162.476586] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769162.682387] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769162.887364] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769163.092350] 30 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769163.297650] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769163.503800] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769163.709492] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769163.915137] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769164.119978] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769164.325420] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769164.530964] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769164.736562] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769164.942196] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769165.147806] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769165.353858] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769165.603566] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.8 ms +[1421769165.808797] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769166.014696] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.69 ms +[1421769166.241714] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421769166.452364] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.51 ms +[1421769166.666824] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769166.927589] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.9 ms +[1421769167.150923] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421769167.376569] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421769167.582789] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769167.787883] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769167.993083] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769168.198688] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769168.404017] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769168.610243] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769168.815534] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769169.020852] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769169.226333] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421769169.432670] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769169.638954] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421769169.844093] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769170.049095] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769170.262567] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.58 ms +[1421769170.471576] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.11 ms +[1421769170.684281] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.12 ms +[1421769170.930978] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.8 ms +[1421769171.148858] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421769171.369168] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421769171.646104] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.0 ms +[1421769171.870337] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421769172.075685] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769172.280782] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769172.486271] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421769172.693390] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.96 ms +[1421769172.918239] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421769173.131278] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.96 ms +[1421769173.378816] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.4 ms +[1421769173.642891] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.7 ms +[1421769173.871753] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421769174.090540] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421769174.308212] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421769174.539063] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.4 ms +[1421769174.769896] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.3 ms +[1421769174.998308] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421769175.229397] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.7 ms +[1421769175.454660] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421769175.677467] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421769175.954747] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.2 ms +[1421769176.182730] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421769176.405353] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421769176.691711] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.0 ms +[1421769176.908991] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421769177.113948] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769177.319536] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769177.526809] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.18 ms +[1421769177.735651] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.82 ms +[1421769177.947745] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.21 ms +[1421769178.162676] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421769178.381556] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421769178.600368] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421769178.822016] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421769179.041715] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421769179.246920] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769179.452524] 555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769179.659131] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769179.864648] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769180.069265] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769180.274600] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769180.479818] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769180.685503] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421769180.890858] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769181.096273] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769181.303944] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.72 ms +[1421769181.515063] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.71 ms +[1421769181.720773] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769181.925403] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769182.130506] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769182.336702] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769182.542097] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769182.747876] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769182.953546] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769183.158863] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769183.364501] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769183.570081] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769183.776353] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769183.982915] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769184.189161] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769184.395391] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769184.601571] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769184.807377] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769185.012074] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769185.217414] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769185.422783] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769185.628708] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769185.833969] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769186.039032] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769186.244156] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769186.449276] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769186.655049] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769186.860042] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769187.064932] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769187.269991] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769187.475652] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769187.681778] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769187.887602] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769188.092390] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769188.298730] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421769188.504420] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769188.711038] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769188.916039] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769189.122031] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769189.327238] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769189.533967] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769189.740624] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769189.945882] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769190.150875] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769190.356437] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769190.561760] 30 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769190.767433] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769190.973259] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769191.179839] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769191.385149] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769191.590923] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769191.797634] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769192.004078] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769192.209821] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421769192.415475] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769192.620508] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769192.825883] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769193.030891] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769193.236530] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769193.441960] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769193.647475] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421769193.853797] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769194.058389] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769194.263755] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769194.469208] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769194.674959] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769194.881299] 1984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769195.086479] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769195.291503] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769195.496718] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769195.703393] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769195.908605] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769196.113039] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769196.318079] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769196.523346] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769196.728537] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769196.934112] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769197.139353] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769197.344753] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769197.549880] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421769197.755158] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769197.961469] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769198.167040] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769198.373295] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769198.578772] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769198.783829] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769198.989202] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421769199.195789] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769199.401099] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769199.606519] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769199.811904] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769200.016478] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769200.222646] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769200.427770] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769200.634265] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769200.839912] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769201.045447] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769201.250422] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769201.456164] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421769201.662313] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769201.867603] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769202.072285] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769202.277632] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421769202.482763] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769202.688047] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769202.893530] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421769203.098536] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769203.304086] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769203.509705] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769203.714742] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769203.920846] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769204.125793] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769204.330827] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769204.537153] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769204.743105] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769204.948349] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769205.153574] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769205.358483] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769205.563911] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769205.769114] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769205.974286] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769206.179891] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769206.384787] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769206.589918] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769206.794975] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769207.000134] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769207.205432] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769207.411786] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769207.618635] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769207.824548] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769208.029343] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769208.234296] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769208.440700] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769208.646410] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769208.852719] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769209.057457] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769209.262301] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769209.467382] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769209.672222] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769209.877176] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769210.082100] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769210.289679] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.48 ms +[1421769210.495809] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769210.701638] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769210.906768] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769211.111457] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769211.316756] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769211.522332] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769211.727851] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769211.933619] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769212.139061] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769212.344348] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769212.549853] 1063 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769212.756674] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769212.962494] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769213.167588] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769213.373742] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769213.580113] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769213.785290] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769213.990433] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769214.195377] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769214.410522] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421769214.616760] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769214.823357] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769215.029350] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769215.234701] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769215.440294] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769215.646093] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769215.851729] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769216.056850] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769216.261908] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769216.466869] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769216.672964] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769216.878291] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769217.084028] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421769217.289502] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769217.495973] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769217.701363] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769217.906745] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769218.111395] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769218.316783] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769218.522499] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769218.729144] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769218.934261] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769219.139521] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769219.344831] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769219.551746] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769219.757310] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769219.963624] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421769220.169889] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769220.376406] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769220.581215] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769220.787233] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769220.992616] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769221.198365] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769221.404532] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769221.610366] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769221.816380] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421769222.021718] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421769222.227002] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769222.432418] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769222.638972] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421769222.844807] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769223.049590] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769223.254347] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769223.459529] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769223.665190] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769223.871278] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769224.076346] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769224.281494] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769224.486885] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769224.692313] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769224.898159] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769225.102827] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769225.308229] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769225.513641] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769225.718667] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769225.925540] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769226.132227] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769226.338661] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769226.543734] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769226.749140] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769226.954524] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769227.159806] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769227.365298] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769227.571674] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769227.777482] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769227.984010] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769228.189644] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769228.395193] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769228.601416] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769228.808353] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769229.014255] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769229.219392] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769229.425822] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421769229.631598] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769229.836913] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769230.042380] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421769230.247822] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769230.453341] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769230.659427] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769230.865114] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769231.071044] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421769231.276014] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769231.480789] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769231.685670] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769231.891203] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769232.097691] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769232.304097] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421769232.510122] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769232.715502] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769232.920714] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769233.125782] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769233.331837] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769233.537891] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769233.742702] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769233.947715] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769234.153171] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769234.359383] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769234.564837] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769234.770770] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421769234.978350] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.83 ms +[1421769235.183670] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769235.388898] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769235.594301] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769235.799081] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421769236.005270] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421769236.210898] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769236.416551] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769236.621995] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769236.827543] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769237.033818] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769237.239012] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769237.445791] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769237.651288] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769237.855879] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.00 ms +[1421769238.060779] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769238.266276] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769238.471427] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769238.676945] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769238.882256] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769239.086931] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769239.292358] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769239.498070] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421769239.703458] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769239.909842] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769240.115129] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769240.320416] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769240.525898] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769240.732588] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769240.938142] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769241.144517] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421769241.349982] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769241.555712] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769241.761048] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769241.966867] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421769242.173642] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769242.378802] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769242.583772] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769242.789897] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421769242.995382] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769243.200830] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769243.405860] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769243.611629] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769243.818174] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769244.023254] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769244.228396] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769244.434424] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769244.640054] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769244.846303] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769245.052540] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769245.257817] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769245.462983] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769245.667646] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769245.872754] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769246.077626] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769246.282532] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769246.488848] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769246.694078] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769246.900005] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769247.104719] 1417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769247.310155] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769247.515604] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769247.720760] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769247.927053] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769248.133526] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421769248.339074] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769248.545782] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769248.751534] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769248.958021] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769249.164334] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769249.370416] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769249.576047] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769249.781672] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769249.988449] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769250.194111] 825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769250.399420] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769250.604949] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769250.810131] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769251.014637] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769251.220070] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769251.425534] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769251.631338] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769251.838320] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769252.043428] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769252.248655] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769252.454756] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.91 ms +[1421769252.661296] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769252.867054] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421769253.072882] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769253.277956] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769253.483288] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769253.688685] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769253.894170] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421769254.099592] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421769254.304492] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769254.509755] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769254.715250] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769254.920364] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769255.126887] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769255.332546] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421769255.540559] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.75 ms +[1421769255.746207] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769255.984348] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.0 ms +[1421769256.200339] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421769256.456591] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=52.0 ms +[1421769256.728098] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=67.2 ms +[1421769256.952981] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421769257.158122] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769257.363493] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769257.569112] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769257.785674] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421769257.997004] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.01 ms +[1421769258.208660] 1330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.55 ms +[1421769258.422326] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.41 ms +[1421769258.641793] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.2 ms +[1421769258.865909] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421769259.089809] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421769259.370953] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.1 ms +[1421769259.602780] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.6 ms +[1421769259.886129] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.3 ms +[1421769260.107468] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421769260.334698] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421769260.540339] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421769260.745705] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769260.951110] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769261.158273] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.03 ms +[1421769261.383875] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421769261.598851] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421769261.812220] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.97 ms +[1421769262.064740] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.5 ms +[1421769262.270293] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769262.475912] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769262.681093] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769262.894009] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.00 ms +[1421769263.103390] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.77 ms +[1421769263.317304] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421769263.561136] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.8 ms +[1421769263.779100] 161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421769264.004801] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421769264.227913] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421769264.454090] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421769264.673455] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421769264.954608] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.0 ms +[1421769265.179341] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421769265.408860] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421769265.630258] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421769265.835940] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769266.040738] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769266.245789] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769266.451637] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769266.659765] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.88 ms +[1421769266.868272] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.65 ms +[1421769267.097069] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421769267.315782] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421769267.529575] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.52 ms +[1421769267.735968] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769267.941051] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769268.147287] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769268.362516] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.4 ms +[1421769268.574853] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.29 ms +[1421769268.787914] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.01 ms +[1421769269.005781] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421769269.211003] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769269.416320] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421769269.621657] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769269.828423] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769270.033503] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769270.238702] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769270.443866] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769270.649452] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421769270.854909] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769271.060163] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769271.265672] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769271.471828] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769271.678050] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769271.884717] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769272.090660] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769272.296744] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769272.502703] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769272.709569] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421769272.914983] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769273.120520] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421769273.325932] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769273.531065] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769273.736252] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769273.942681] 1888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769274.148095] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769274.353718] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769274.559046] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769274.764264] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769274.969192] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769275.174423] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769275.379574] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769275.586214] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421769275.791601] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769275.997662] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769276.203210] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769276.409135] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769276.614684] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769276.820882] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769277.026008] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769277.232177] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421769277.438203] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769277.643655] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769277.849394] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769278.055542] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769278.260842] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769278.466025] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769278.672790] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769278.878295] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769279.084102] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769279.289290] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769279.494746] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769279.700483] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769279.906235] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769280.112988] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421769280.318353] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769280.523620] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769280.730181] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769280.937181] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769281.143020] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769281.348426] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769281.554112] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769281.760381] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769281.965775] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769282.171518] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.88 ms +[1421769282.377003] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769282.582436] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769282.788183] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769282.994576] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769283.200631] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769283.406009] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769283.611734] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769283.817838] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769284.023785] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769284.229309] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769284.434502] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769284.639677] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769284.845734] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769285.050355] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769285.255528] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769285.461228] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769285.667773] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769285.873312] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769286.078501] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769286.283961] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769286.489347] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769286.694658] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769286.900558] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769287.105205] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769287.310169] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769287.516765] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769287.722163] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769287.927776] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769288.133622] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769288.339231] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769288.544608] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769288.750371] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769288.955816] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769289.160906] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769289.367199] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769289.572812] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769289.778722] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421769289.984964] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421769290.191398] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769290.396965] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769290.602769] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769290.807595] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769291.012048] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769291.218214] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769291.424081] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769291.630220] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769291.836618] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769292.042566] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769292.247856] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769292.453132] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769292.659669] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769292.866076] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769293.071392] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769293.277593] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769293.484289] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.01 ms +[1421769293.690414] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769293.895887] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769294.101489] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769294.306470] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769294.512156] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769294.717622] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769294.923175] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769295.129607] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769295.334447] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769295.540431] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769295.745802] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769295.951014] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769296.156626] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769296.363138] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769296.568756] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769296.774152] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769296.980101] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421769297.185484] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769297.390514] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769297.595641] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421769297.800768] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769298.006176] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769298.211900] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769298.417160] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769298.623104] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769298.828512] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769299.034600] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769299.239747] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769299.445140] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769299.651045] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769299.856035] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769300.060949] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769300.266804] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769300.472066] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769300.678728] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769300.884034] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769301.089014] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769301.294323] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769301.499900] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769301.705140] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769301.912425] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421769302.118211] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769302.324511] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769302.530213] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769302.735784] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769302.940710] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769303.146883] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769303.352216] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769303.558682] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769303.763861] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769303.969458] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769304.175021] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769304.380429] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769304.585911] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769304.791090] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769304.996504] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769305.201609] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769305.407191] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769305.613839] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769305.820086] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769306.026237] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769306.231700] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769306.437380] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769306.642555] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769306.847971] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769307.052859] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769307.258051] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769307.463434] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769307.669585] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769307.875438] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769308.080674] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769308.285860] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769308.492620] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769308.698171] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769308.903843] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769309.108681] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769309.313412] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769309.519472] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769309.724852] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769309.930748] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769310.136505] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769310.341629] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769310.548151] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769310.754707] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769310.961206] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769311.166814] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769311.372328] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769311.579230] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769311.784327] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769311.989741] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769312.195308] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769312.401713] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769312.607342] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769312.813828] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769313.018975] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769313.224935] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769313.434211] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.97 ms +[1421769313.640792] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769313.845962] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769314.051803] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769314.268387] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421769314.474447] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421769314.680034] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769314.885826] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769315.092077] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769315.297555] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769315.502735] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769315.707974] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769315.914069] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769316.119742] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421769316.325109] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769316.530895] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421769316.736476] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769316.942028] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769317.148452] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769317.353451] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769317.559465] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421769317.764392] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769317.969646] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769318.174903] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769318.380362] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769318.587380] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769318.792608] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769318.997735] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769319.202842] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769319.409422] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769319.615011] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769319.820377] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769320.025649] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769320.230787] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769320.436948] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769320.641816] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769320.847086] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769321.051946] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769321.256908] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769321.462035] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769321.667587] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769321.872817] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769322.077686] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769322.289802] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.95 ms +[1421769322.495420] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769322.700495] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769322.905873] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769323.110707] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769323.316687] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769323.523370] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421769323.729898] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769323.936180] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769324.141560] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769324.346757] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769324.551900] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769324.757874] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769324.963543] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769325.170555] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769325.376166] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769325.581585] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769325.787235] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769325.992713] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769326.197919] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769326.403392] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769326.608857] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769326.815696] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769327.020780] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769327.225485] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769327.431961] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769327.637805] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769327.844199] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769328.050572] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769328.257442] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421769328.464071] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769328.669966] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769328.876094] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769329.081077] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769329.286228] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769329.491557] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769329.697141] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769329.902844] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769330.107979] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769330.314529] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769330.520558] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769330.727009] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769330.932595] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769331.138480] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769331.343869] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769331.549533] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769331.754603] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769331.961355] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769332.167583] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769332.373879] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769332.579550] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769332.785152] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769332.991120] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769333.197037] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769333.403151] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769333.609896] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769333.815343] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769334.020152] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769334.225363] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769334.431054] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769334.636438] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769334.843239] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769335.048243] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769335.254669] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769335.460185] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769335.666692] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769335.871967] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769336.076648] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769336.282102] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769336.489487] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.01 ms +[1421769336.701743] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.69 ms +[1421769336.913140] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.96 ms +[1421769337.119354] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769337.325501] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769337.530553] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769337.736028] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769337.942051] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769338.148172] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769338.352895] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.03 ms +[1421769338.558772] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769338.764824] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769338.969709] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769339.175931] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769339.381448] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769339.587024] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769339.792103] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769339.996968] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769340.202192] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769340.407501] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769340.613205] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769340.818473] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769341.023766] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769341.229142] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769341.434419] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769341.640091] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769341.845231] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769342.049820] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769342.254991] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769342.461799] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421769342.666977] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769342.872424] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769343.077747] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769343.283110] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769343.488832] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769343.695008] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421769343.900763] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769344.105824] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769344.312011] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769344.517178] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769344.722882] 555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769344.928837] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769345.134246] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769345.339657] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769345.545951] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769345.752591] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769345.958114] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769346.163312] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769346.368631] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769346.574433] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769346.788058] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.12 ms +[1421769346.995083] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769347.200258] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769347.406807] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421769347.612199] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769347.818106] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769348.022704] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769348.227467] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769348.432351] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769348.638893] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.80 ms +[1421769348.844364] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769349.050441] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769349.256418] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769349.462911] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769349.668558] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769349.875094] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769350.081451] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421769350.288016] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421769350.493280] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769350.698860] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769350.905235] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769351.111577] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769351.317437] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421769351.524385] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769351.730596] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769351.936693] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769352.141682] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769352.346727] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769352.552106] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769352.757618] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421769352.962531] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769353.167611] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769353.372987] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769353.579593] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769353.784769] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769353.990003] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769354.195255] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769354.401088] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769354.606387] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769354.811736] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769355.016603] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.01 ms +[1421769355.221548] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769355.426901] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769355.632626] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769355.838012] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769356.043288] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769356.248336] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769356.453487] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769356.660324] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421769356.866477] 1148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769357.071412] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769357.277240] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769357.483334] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769357.689816] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769357.896186] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769358.100678] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769358.305832] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769358.520542] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421769358.726700] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769358.933103] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769359.139248] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769359.344392] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769359.549587] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769359.754653] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769359.959582] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421769360.165889] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421769360.372146] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769360.577588] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769360.783525] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421769360.989104] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769361.194365] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769361.399345] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769361.605045] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769361.810067] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769362.015780] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769362.220843] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769362.427147] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769362.632565] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769362.838045] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769363.042793] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769363.247737] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769363.453931] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421769363.660552] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.72 ms +[1421769363.865740] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769364.070473] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769364.275926] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769364.481165] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769364.686502] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769364.893014] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769365.098087] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769365.303061] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769365.509027] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769365.714529] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769365.920984] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769366.126157] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769366.331552] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769366.536729] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769366.741930] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769366.947083] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769367.152147] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769367.358706] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421769367.563974] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769367.769949] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769367.975316] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769368.181933] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769368.387251] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769368.592917] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769368.798551] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769369.004929] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769369.211301] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769369.416652] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421769369.622105] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769369.827741] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421769370.033806] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769370.239161] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769370.445387] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769370.652044] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769370.858282] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769371.062857] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769371.268795] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769371.474093] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769371.679340] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769371.885896] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769372.091361] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769372.297975] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.76 ms +[1421769372.504372] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421769372.709811] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769372.915354] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769373.121833] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769373.327139] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769373.533007] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769373.738386] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769373.943656] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769374.148693] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769374.353880] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769374.560508] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421769374.765749] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769374.971153] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769375.177037] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421769375.382360] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769375.587662] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769375.794453] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769375.999903] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769376.205391] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769376.410110] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769376.615997] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769376.821985] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769377.026594] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769377.232570] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769377.438934] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769377.644931] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769377.850601] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769378.055823] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769378.262338] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421769378.468190] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421769378.673648] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421769378.879656] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769379.084549] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769379.289825] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769379.496611] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769379.702055] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769379.907319] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769380.112264] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769380.317312] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769380.523334] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769380.729445] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769380.934608] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769381.139752] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769381.344565] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769381.549795] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769381.755114] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769381.960043] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769382.164786] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769382.370394] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769382.576179] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769382.781649] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769382.986623] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769383.191895] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769383.397289] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769383.603673] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769383.809727] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421769384.015154] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769384.220403] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769384.426331] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769384.631767] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769384.838021] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769385.042937] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769385.248256] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769385.453740] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769385.659476] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769385.865984] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769386.071888] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769386.277099] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769386.482800] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421769386.688573] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769386.894041] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769387.098965] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769387.303963] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769387.508968] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769387.713798] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769387.919924] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421769388.124661] 1186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769388.329884] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769388.535534] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769388.741971] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769388.947530] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769389.153881] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421769389.359733] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769389.565367] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769389.770528] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769389.975801] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421769390.181005] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769390.387479] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421769390.593978] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769390.799620] 1186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769391.005407] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421769391.210958] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769391.416258] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769391.623339] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421769391.829234] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421769392.034125] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769392.239558] 1238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769392.445162] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769392.650411] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769392.856628] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769393.062157] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769393.268514] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421769393.473521] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769393.678516] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769393.884659] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421769394.089324] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769394.294789] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769394.500039] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769394.706308] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769394.911724] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769395.117318] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769395.322874] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769395.528654] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769395.733707] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769395.939940] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769396.145413] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769396.351730] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769396.557367] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769396.762872] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769396.969602] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769397.175535] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769397.380638] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769397.586990] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421769397.792696] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769397.998241] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769398.203188] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769398.409192] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769398.615897] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.75 ms +[1421769398.821096] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769399.026886] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769399.233141] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769399.439685] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769399.645189] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769399.849933] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769400.054581] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769400.260987] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769400.469662] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.53 ms +[1421769400.679852] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.50 ms +[1421769400.892185] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.43 ms +[1421769401.097014] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769401.302067] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769401.507552] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769401.714567] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769401.921552] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769402.126846] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769402.333686] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769412.743392] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769412.949283] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769413.154515] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769413.359905] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769413.565220] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769413.771687] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769413.977143] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769414.182546] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769414.387857] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769414.593812] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769414.799406] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421769415.004577] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769415.209864] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769415.414773] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769415.620628] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769415.826588] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769416.032255] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769416.237256] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769416.443454] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769416.648975] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769416.854495] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769417.059596] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769417.264502] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769417.469835] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769417.674770] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769417.880112] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769418.084914] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769418.291335] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769418.497973] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769418.703252] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769418.909975] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769419.116369] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421769419.322041] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769419.527700] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769419.734268] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769419.940473] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769420.145376] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421769420.350974] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769420.556285] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769420.762532] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769420.967598] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769421.173241] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421769421.379789] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421769421.585271] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769421.791150] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769421.997425] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769422.202591] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769422.407879] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769422.613186] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769422.818154] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769423.023255] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769423.228576] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769423.434805] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421769423.640788] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769423.846496] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769424.052222] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769424.258319] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769424.464359] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769424.669860] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769424.875615] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769425.080686] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769425.285825] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769425.491202] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769425.696214] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769425.901644] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769426.106704] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769426.312217] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769426.517925] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769426.723976] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769426.929455] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769427.135043] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769427.340476] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769427.545948] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769427.751723] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769427.956857] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769428.161829] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769428.367080] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769428.573375] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769428.778444] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769428.983434] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769429.188816] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769429.395020] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769429.600917] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769429.806309] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769430.011102] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769430.216088] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769430.421185] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769430.626211] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769430.830690] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769431.035444] 1451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769431.240907] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769431.446147] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769431.651431] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769431.857154] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769432.062874] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769432.267849] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769432.473154] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769432.678362] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769432.884145] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769433.090435] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769433.295549] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769433.501582] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769433.707318] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769433.912813] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769434.118951] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769434.324216] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769434.529432] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769434.735830] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421769434.941603] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769435.147179] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769435.353622] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769435.559897] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769435.766710] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769435.973264] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769436.179117] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769436.384519] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769436.589746] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769436.795074] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769437.001364] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421769437.206352] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769437.411475] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769437.616370] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769437.822223] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769438.028160] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769438.232958] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769438.439045] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769438.644856] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421769438.851830] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.79 ms +[1421769439.056782] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769439.262846] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769439.468039] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769439.674490] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769439.880313] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769440.085487] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769440.290772] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769440.496738] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769440.702575] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769440.909677] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769441.115109] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769441.321104] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769441.526298] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769441.731503] 1261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769441.936616] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769442.141705] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769442.346875] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769442.553349] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769442.758393] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769442.964161] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769443.169794] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769443.375234] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769443.580094] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769443.785037] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769443.990646] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769444.195888] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769444.402608] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421769444.609356] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769444.814741] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769445.019444] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769445.224470] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769445.430551] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769445.635961] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769445.840763] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769446.045577] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769446.250522] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769446.456049] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769446.661099] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769446.866915] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769447.071908] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421769447.277827] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769447.483382] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769447.688599] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769447.894265] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769448.099163] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769448.304720] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769448.510122] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769448.716151] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769448.921306] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769449.125850] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421769449.331034] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769449.536111] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769449.741431] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769449.946986] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769450.152485] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769450.358331] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769450.563732] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769450.768983] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769461.198240] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421769461.486253] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.9 ms +[1421769461.691583] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769461.919379] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421769462.151321] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.7 ms +[1421769462.372127] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421769462.599659] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421769462.827341] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421769463.055424] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421769463.260981] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769463.469157] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.67 ms +[1421769463.674519] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769463.884899] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.58 ms +[1421769464.108433] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421769464.320286] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.00 ms +[1421769464.567470] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.6 ms +[1421769464.773082] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769464.979692] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421769465.198910] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421769465.404782] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769465.610129] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769465.815648] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769466.020168] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769466.225679] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769466.430813] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769466.635822] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769466.841273] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769467.046758] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769467.251855] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769467.457418] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769467.663846] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769467.868777] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769468.074711] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769468.279866] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769468.485316] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769468.692148] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769468.898972] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769469.104285] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769469.309359] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769469.515021] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421769469.720469] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769469.925563] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769470.130987] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769470.336618] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769470.542322] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769470.748622] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769470.954183] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769471.159609] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769471.364841] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769471.571271] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769471.776595] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769471.982449] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769472.187546] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769472.393808] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769472.600276] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769472.805943] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769473.010901] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769473.215891] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769473.421116] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769473.626887] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769473.832283] 145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769474.037170] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769474.242134] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769474.447475] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769474.654067] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769474.860343] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769475.065077] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769475.270997] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769475.477601] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769475.684144] 1932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769475.889791] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769476.095208] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769476.300465] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769476.505497] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769476.710684] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769476.916971] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421769477.121622] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769477.326620] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769477.532158] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769477.738892] 1870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769477.944371] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769478.150728] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769478.356124] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769478.561362] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769478.766684] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769478.972781] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769479.178123] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769479.383633] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769479.588992] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769479.794671] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769480.000129] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769480.216900] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421769480.431615] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.94 ms +[1421769480.638548] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421769480.844368] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769481.049475] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769481.254806] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769481.461554] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769481.667076] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769481.872832] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769482.078577] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769482.283818] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769482.489157] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769482.695052] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769482.900986] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769483.105764] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769483.310981] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769483.516201] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769483.721705] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769483.927750] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421769484.134163] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421769484.339506] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769484.545256] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421769484.750398] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769484.956128] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769485.161675] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769485.367555] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769485.572853] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769485.778157] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769485.983174] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769486.188744] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769486.394977] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769486.601006] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769486.807115] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769487.011849] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769487.217162] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769487.422460] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769487.628918] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769487.833880] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769488.038733] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769488.243389] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769488.448583] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769498.858812] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769499.064055] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769499.269405] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769499.474569] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769499.679322] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769499.884525] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769500.089147] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769500.294609] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769500.500599] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769500.706198] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769500.912436] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769501.117683] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769501.322858] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769501.529406] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769501.735892] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769501.941510] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769502.147790] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769502.352802] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769502.558837] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769502.764454] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769502.969771] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769503.174866] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769503.380733] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769503.585790] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769503.790981] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769503.996265] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769504.201802] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769504.407048] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769504.612556] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769504.817944] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769505.022614] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769505.227970] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769505.434476] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769505.639532] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769505.844425] 814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769506.049084] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769506.253873] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769506.459161] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769506.665677] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769506.872207] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769507.078158] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421769507.282724] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769507.487974] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769507.693209] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769507.898672] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769508.103865] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769508.310349] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769508.516912] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769508.721992] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769508.927365] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769509.132373] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769509.337400] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769509.544293] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421769509.749934] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769509.956040] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769510.161516] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769510.367241] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769510.574039] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769510.779669] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769510.984961] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769511.190245] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769511.395713] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769511.602048] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769511.807031] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769512.012289] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769512.218441] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421769512.423697] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769512.630295] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421769512.836345] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421769513.041486] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769513.246527] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769513.452551] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769513.658101] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769513.863556] 296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769514.068071] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769514.273606] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769514.479799] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769514.685352] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769514.890801] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769515.099061] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769515.311240] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.39 ms +[1421769515.516744] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769515.726316] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.93 ms +[1421769515.938771] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.04 ms +[1421769516.147227] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.01 ms +[1421769516.352620] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769516.558070] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769516.763614] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769516.969580] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769517.176206] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769517.382740] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769517.588204] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769517.793449] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769517.998715] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769518.203924] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769518.410227] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769518.616034] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769518.821187] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769519.026478] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769519.232749] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421769519.438461] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769519.644144] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769519.850620] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769520.055711] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769520.260983] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769520.466987] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769520.672410] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769520.877580] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769521.088107] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.84 ms +[1421769521.293532] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769521.498841] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769521.704109] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769521.909786] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769522.116144] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769522.321788] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769522.527738] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421769522.733263] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769522.939322] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769523.144968] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769523.351118] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769523.557469] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769523.762217] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769523.967050] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769524.173115] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769524.379008] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769524.583900] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769524.789665] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769524.994972] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421769525.201200] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421769525.406858] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421769525.613107] 1612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769525.818636] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769526.023750] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769526.229153] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769526.434712] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769526.640305] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769526.845468] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769527.050397] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769527.255894] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769527.461614] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769527.666954] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769527.872587] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769528.077887] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769528.284235] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421769528.490066] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769528.696721] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769528.903601] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421769529.109457] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769529.314642] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769529.520670] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769529.726059] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769529.931893] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769530.137397] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769530.342880] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769530.549713] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769530.756289] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769530.961409] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769531.168073] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421769531.373284] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769531.578428] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769531.784217] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769531.989624] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769532.194474] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769532.399498] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769532.604967] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421769532.810613] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769533.014980] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769533.219738] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421769533.426214] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769533.631509] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769533.837207] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769534.043009] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769534.249023] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769534.453869] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769534.658593] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769534.863982] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769535.069440] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769535.274509] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769535.480224] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769535.685862] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769535.892345] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769536.098197] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769536.304146] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421769536.509144] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769536.714267] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769536.919269] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769537.123762] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769537.330245] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421769537.535676] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769537.741376] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769537.946356] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769538.151480] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769538.356616] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769538.562280] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769538.767494] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769538.973396] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769539.178340] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769539.384377] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769539.589575] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769539.795774] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769540.000967] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769540.206654] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769540.412014] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769540.618212] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769540.824234] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769541.029241] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769541.234242] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769541.440025] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769541.645812] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769541.852112] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769542.056784] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769542.262124] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769542.467648] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769542.674616] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421769542.880375] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769543.085189] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769543.290569] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769543.496505] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769543.702596] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769543.908190] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769544.113707] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769544.319326] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769544.525177] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769544.730628] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769544.935736] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769545.141094] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769545.346894] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769545.551765] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769545.756931] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769545.962277] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769546.167451] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769546.372691] 296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769546.578196] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769546.784895] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769546.990717] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769547.196083] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769547.402365] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421769547.608313] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769547.814262] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769548.019320] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769548.224462] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769548.429776] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769548.636065] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769548.842821] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769549.048385] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769549.253645] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769549.459399] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769549.665016] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769549.870316] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769550.075746] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421769550.281080] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769550.487411] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769550.693034] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769550.898104] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421769551.102622] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769551.307545] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769551.513227] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769551.718834] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769551.924740] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769552.130600] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421769552.335974] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769552.541110] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769552.746338] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769552.951933] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421769553.158281] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769553.378622] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421769553.592903] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.89 ms +[1421769553.805653] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.41 ms +[1421769554.024571] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421769554.244924] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421769554.467339] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421769554.747980] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.2 ms +[1421769554.953561] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769555.159016] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769555.363904] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769555.571951] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.48 ms +[1421769555.787396] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.17 ms +[1421769556.000743] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.99 ms +[1421769556.248103] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.1 ms +[1421769556.465780] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421769556.690985] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421769556.914741] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421769557.139082] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421769557.358692] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.7 ms +[1421769557.589562] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.3 ms +[1421769557.795026] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769558.000870] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769558.205991] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769558.412236] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769558.617967] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769558.823534] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769559.032661] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.83 ms +[1421769559.243691] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769559.458521] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421769559.676720] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421769559.896834] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421769560.121135] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421769560.341436] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421769560.625072] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.3 ms +[1421769560.830314] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769561.034918] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769561.246998] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.04 ms +[1421769561.472694] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421769561.687687] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421769561.901100] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.64 ms +[1421769562.152135] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=47.1 ms +[1421769562.371909] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421769562.594440] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421769562.816429] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421769563.041570] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421769563.263657] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421769563.485995] 1133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421769563.691824] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769563.897772] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769564.103405] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769564.309184] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769564.514860] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769564.720181] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421769564.925461] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769565.130816] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769565.335988] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769565.541291] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769565.747390] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.94 ms +[1421769565.954866] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.64 ms +[1421769566.167215] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.30 ms +[1421769566.380937] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.28 ms +[1421769566.597136] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.9 ms +[1421769566.817687] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421769567.037216] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421769567.262854] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421769567.468233] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769567.674618] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769567.880092] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769568.085437] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421769568.308481] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421769568.521262] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.63 ms +[1421769568.733889] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.29 ms +[1421769568.953084] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421769569.173648] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421769569.397837] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421769569.621097] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421769569.844458] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421769570.070617] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421769570.303587] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.1 ms +[1421769570.527220] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421769570.752916] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421769570.978981] 825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421769571.205798] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421769571.431522] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421769571.714820] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.3 ms +[1421769571.942713] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421769572.148669] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769572.354012] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769572.559771] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421769572.766856] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.05 ms +[1421769572.994195] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421769573.208714] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421769573.455878] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.9 ms +[1421769573.676352] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421769573.958315] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.3 ms +[1421769574.182498] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421769574.416771] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.3 ms +[1421769574.641207] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421769574.865801] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421769575.149189] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.3 ms +[1421769575.354660] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769575.575205] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421769575.805300] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421769576.032416] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421769576.314397] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.1 ms +[1421769576.540680] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421769576.767653] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421769576.972962] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769577.178299] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769577.383849] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769577.591640] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.74 ms +[1421769577.819637] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421769578.061023] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=37.6 ms +[1421769578.312546] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=47.4 ms +[1421769578.534668] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421769578.760754] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421769579.041441] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.7 ms +[1421769579.264522] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421769579.489432] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421769579.773376] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.6 ms +[1421769579.978904] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769580.183927] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769580.404788] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421769580.633725] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421769580.859999] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421769581.086015] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421769581.364461] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.5 ms +[1421769581.648645] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.9 ms +[1421769581.928144] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.4 ms +[1421769582.133268] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769582.339969] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769582.545632] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769582.762728] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421769582.992674] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.1 ms +[1421769583.208244] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421769583.424164] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.9 ms +[1421769583.647534] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421769583.922926] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.5 ms +[1421769584.208930] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.8 ms +[1421769584.436390] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421769584.719350] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.8 ms +[1421769585.005344] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.0 ms +[1421769585.213979] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769585.440447] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421769585.666918] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421769585.943454] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.3 ms +[1421769586.231955] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.4 ms +[1421769586.458397] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421769586.684293] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421769586.890345] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769587.096146] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769587.302367] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769587.510191] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.94 ms +[1421769587.720367] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.17 ms +[1421769587.925247] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769588.130186] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769588.335809] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769588.541650] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769588.747229] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769588.952523] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769589.157379] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769589.363773] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769589.570281] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769589.775569] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769589.980764] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769590.185901] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769590.391270] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769590.597922] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769590.803764] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769591.008788] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769591.213794] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769591.420378] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421769591.625939] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769591.831868] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769592.036940] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769592.241733] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769592.447133] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769592.652688] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769592.857767] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769593.063595] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421769593.268718] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769593.475021] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769593.680872] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421769593.886288] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769594.090941] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769594.295912] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769594.501220] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769594.706346] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769594.912771] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769595.118153] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769595.324258] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769595.529346] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769595.734150] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769595.940149] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421769596.146573] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769596.351813] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769596.557233] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769596.762936] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769596.968452] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769597.174416] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769597.379616] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769597.585074] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769597.790044] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769597.994992] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769598.200798] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769598.406300] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769598.611262] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769598.816616] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769599.021557] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769599.226908] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769599.432210] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769599.638768] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769599.844984] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769600.049745] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769600.255538] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769600.465276] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.59 ms +[1421769600.671750] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769600.877179] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769601.082018] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769601.288187] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769601.494698] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769601.700572] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769601.906189] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769602.110956] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769602.316412] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769602.523368] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421769602.729105] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769602.934158] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769603.139204] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769603.344542] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769603.550599] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769603.755543] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769603.961260] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769604.167463] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769604.372664] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769604.578088] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769604.783013] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769604.992722] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421769605.198416] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421769605.404152] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421769605.609835] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421769605.814776] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421769606.019473] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769606.224936] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769606.430229] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769606.635478] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769606.842067] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769607.047733] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421769607.254074] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769607.459574] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769607.665079] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769607.870048] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769608.074873] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769608.280067] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769608.486372] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769608.693189] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769608.899702] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769609.105809] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421769609.310842] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769609.516099] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769609.721445] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769609.926732] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769610.132198] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769610.337500] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769610.543617] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769610.749115] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769610.954233] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769611.160598] 1955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769611.365990] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769611.571142] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769611.776490] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769611.982003] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769612.186961] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769612.392243] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769612.597992] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769612.803843] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769613.008635] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769613.213943] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769613.419334] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769613.624774] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769613.830458] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769614.034865] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421769614.240256] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769614.446564] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421769614.653425] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769614.858582] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769615.063319] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769615.269293] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769615.475611] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769615.682032] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769615.887817] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421769616.092948] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769616.297993] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769616.503223] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769616.708645] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769616.913618] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769617.118763] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769617.323924] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769617.528921] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769617.733923] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769617.938853] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769618.144633] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769618.350656] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769618.556017] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769618.761184] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769618.966233] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769619.172371] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769619.377306] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769619.582415] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769619.789024] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.76 ms +[1421769619.994216] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769620.200429] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769620.405831] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769620.611077] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769620.816147] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769621.021655] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769621.226654] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769621.453165] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421769621.659342] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769621.864850] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769622.069486] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769622.274574] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769622.480278] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769622.685452] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769622.891994] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769623.097129] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769623.302093] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769623.507696] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769623.713341] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769623.919561] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769624.124645] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769624.329494] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769624.535494] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769624.741553] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769624.946730] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769625.152012] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769625.359435] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.76 ms +[1421769625.564463] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769625.770720] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769625.975976] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769626.188721] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.46 ms +[1421769626.394360] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421769626.600062] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769626.806232] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769627.010812] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769627.216576] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421769627.421845] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769627.626628] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769627.831391] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769628.036216] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421769628.242672] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421769628.449144] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769628.655611] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769628.861368] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769629.067303] 1482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421769629.273732] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769629.480053] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769629.687701] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.04 ms +[1421769629.892961] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769630.108031] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.4 ms +[1421769630.314076] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769630.519788] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769630.725635] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769630.930582] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769631.136877] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421769631.345258] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.49 ms +[1421769631.557889] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.29 ms +[1421769631.771641] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.26 ms +[1421769631.991209] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.2 ms +[1421769632.211324] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421769632.432569] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421769632.665277] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.3 ms +[1421769632.898604] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.0 ms +[1421769633.124397] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421769633.348398] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421769633.577557] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.0 ms +[1421769633.802416] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421769634.025218] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421769634.251459] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421769634.536392] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.6 ms +[1421769634.762073] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421769634.995220] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.8 ms +[1421769635.200538] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769635.412195] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.59 ms +[1421769635.629386] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421769635.840407] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.79 ms +[1421769636.052795] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.65 ms +[1421769636.265937] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.16 ms +[1421769636.485254] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421769636.706069] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421769636.997145] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=86.6 ms +[1421769637.219408] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421769637.487701] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=63.8 ms +[1421769637.694076] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769637.900215] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769638.105618] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769638.312365] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.69 ms +[1421769638.532211] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421769638.745762] 1417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.21 ms +[1421769638.965434] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.2 ms +[1421769639.185029] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421769639.403710] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421769639.681006] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.2 ms +[1421769639.906427] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421769640.119828] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.73 ms +[1421769640.326150] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769640.533134] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421769640.739125] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421769640.949160] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.66 ms +[1421769641.162558] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.27 ms +[1421769641.375638] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.97 ms +[1421769641.594358] 1330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421769641.816780] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421769642.040105] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421769642.260842] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421769642.483559] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421769642.710116] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421769642.935002] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421769643.145196] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.02 ms +[1421769643.430039] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.1 ms +[1421769643.653128] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421769643.880655] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421769644.107687] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421769644.389712] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.1 ms +[1421769644.618256] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421769644.843211] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421769645.048346] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769645.253696] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769645.465393] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.14 ms +[1421769645.686887] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421769645.901447] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.2 ms +[1421769646.145860] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=40.4 ms +[1421769646.403413] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=53.6 ms +[1421769646.622833] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421769646.900624] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.7 ms +[1421769647.130259] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421769647.335531] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769647.540534] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769647.753712] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.39 ms +[1421769647.958888] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769648.164016] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.03 ms +[1421769648.369002] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769648.575601] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769648.781872] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421769648.992387] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.85 ms +[1421769649.206594] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.98 ms +[1421769649.424798] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421769649.631281] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769649.837996] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769650.044004] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769650.249311] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769650.454746] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769650.660545] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769650.867274] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769651.072489] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769651.277665] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769651.483738] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769651.689668] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769651.896386] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421769652.101496] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769652.306832] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769652.513823] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421769652.719711] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769652.926191] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769653.131336] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769653.337480] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769653.543070] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769653.749661] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769653.955224] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769654.161882] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769654.367311] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769654.573261] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421769654.779032] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769654.984937] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769655.190704] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769655.396617] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769655.603063] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769655.808281] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769656.013160] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769656.219410] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769656.424881] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769656.631519] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769656.838184] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769657.043193] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769657.249101] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421769657.454627] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769657.660332] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769657.865847] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769658.071253] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769658.277605] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769658.482910] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769658.689314] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769658.895268] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769659.100318] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769659.305340] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769659.510577] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769659.716206] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769659.922618] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769660.127764] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769660.332942] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769660.538261] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769660.743718] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769660.985755] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=37.8 ms +[1421769661.203077] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421769661.408828] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769661.640090] 1932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.0 ms +[1421769661.845191] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421769662.050270] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769662.255531] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769662.460947] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769662.666527] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769662.872449] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769663.078453] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769663.283234] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769663.489805] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.74 ms +[1421769663.695067] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769663.900308] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769664.105220] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769664.310270] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769664.515522] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769664.721119] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769664.927886] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769665.132904] 512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769665.339245] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421769665.544586] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769665.749759] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769665.955273] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769666.160710] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769666.366536] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769666.572628] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769666.778373] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769666.983684] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769667.189864] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769667.395257] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769667.600636] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769667.805617] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769668.010905] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769668.216154] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769668.421864] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769668.628137] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769668.834548] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769669.039774] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769669.245618] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421769669.450663] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769669.655902] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769669.860892] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769670.065629] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769670.271499] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769670.476582] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769670.682971] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769670.888383] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769671.093303] 1297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769671.298830] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769671.504578] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769671.710297] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769671.917103] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421769672.122619] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769672.328393] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421769672.533699] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769672.738758] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769672.944701] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769673.149888] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769673.355063] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769673.560302] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769673.765798] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769673.971541] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769674.177936] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769674.383164] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769674.589842] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769674.796201] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769675.001078] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769675.207328] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421769675.412879] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769675.619008] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769675.824270] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769676.028942] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.03 ms +[1421769676.234595] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769676.439966] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769676.645257] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769676.851133] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421769677.055900] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769677.261572] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421769677.466970] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769677.672854] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769677.879772] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769678.085821] 1503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769678.290879] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769678.496011] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769678.702215] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769678.908066] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769679.113815] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769679.319024] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769679.523806] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769679.729287] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421769679.935296] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421769680.141204] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421769680.361885] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421769680.568584] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769680.773579] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769680.979237] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769681.184541] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769681.389947] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769681.594784] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769681.799702] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769682.005893] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769682.211215] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769682.416656] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769682.622636] 1021 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769682.827847] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769683.032198] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769683.238390] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769683.443622] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769683.648585] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769683.853776] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769684.058706] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769684.265136] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769684.471599] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421769684.677679] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769684.883541] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769685.088505] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769685.294993] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769685.500626] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769685.706847] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769685.912712] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769686.118710] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769686.324014] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769686.529122] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769686.735197] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769686.941389] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769687.146495] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769687.351758] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769687.557532] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769687.762595] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769687.967843] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769688.174483] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769688.380657] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769688.592805] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.06 ms +[1421769688.798481] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769689.003513] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769689.208773] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769689.414550] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769689.621421] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421769689.827564] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769690.033741] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769690.239734] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769690.444566] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421769690.649765] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769690.855949] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769691.061041] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769691.266277] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769691.472386] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421769691.677867] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769691.884027] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769692.089283] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769692.294031] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769692.499878] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769692.705454] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769692.910652] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769693.115879] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769693.322361] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769693.527866] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769693.734451] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769693.939354] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769694.144701] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769694.350511] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769694.555733] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769694.760921] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769694.966610] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769695.171938] 847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769695.377927] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769695.583233] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769695.789220] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769695.995840] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769696.202004] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769696.407309] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769696.613864] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769696.819906] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769697.025914] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769697.231532] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769697.436673] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769697.642324] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421769697.848164] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769698.053226] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769698.259294] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769698.464829] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769698.669865] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769698.875676] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421769699.080463] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769699.285734] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769699.492022] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769699.697336] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769699.903997] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769700.109106] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769700.314150] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769700.519336] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769700.724471] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769700.930952] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769701.136322] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769701.341369] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769701.547798] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769701.753766] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769701.959363] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769702.164686] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769702.376476] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.49 ms +[1421769702.581588] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769702.787705] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769702.992947] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769703.198910] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769703.404097] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769703.609041] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769703.814770] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769704.019219] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769704.224188] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769704.430623] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769704.636419] 1238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769704.842403] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769705.047899] 1026 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769705.253448] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769705.458400] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769705.663607] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769705.868588] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769706.074276] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769706.279581] 1063 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769706.485674] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769706.691546] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769706.896734] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769707.103552] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421769707.309750] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.99 ms +[1421769707.515360] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769707.722295] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421769707.928042] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769708.133918] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769708.339047] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769708.544541] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769708.751061] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769708.956830] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769709.162649] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421769709.367777] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769709.574671] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421769709.780598] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769709.986548] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769710.192037] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769710.397669] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769710.603275] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769710.809573] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769711.014257] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769711.219303] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769711.424779] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769711.630089] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769711.835495] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769712.042040] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421769712.248342] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769712.453617] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769712.659118] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769712.865136] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769713.070175] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769713.275368] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769713.480949] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769713.687565] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769713.893380] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769714.099075] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769714.304324] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769714.509900] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769714.715321] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769714.920673] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769715.126155] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769715.331598] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769715.538208] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769715.744025] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769715.950839] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.22 ms +[1421769716.160797] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.20 ms +[1421769716.397625] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.8 ms +[1421769716.647254] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.4 ms +[1421769716.866213] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421769717.091522] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421769717.297773] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421769717.503619] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769717.709073] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769717.916221] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.39 ms +[1421769718.126216] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.94 ms +[1421769718.338584] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.23 ms +[1421769718.550319] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.87 ms +[1421769718.809019] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=54.2 ms +[1421769719.082335] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.5 ms +[1421769719.306543] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421769719.587179] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.4 ms +[1421769719.810167] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421769720.032158] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421769720.242721] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.35 ms +[1421769720.473044] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769720.700365] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421769720.926738] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421769721.148878] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421769721.375212] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421769721.653962] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.5 ms +[1421769721.906313] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.6 ms +[1421769722.111556] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769722.318031] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769722.524515] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421769722.741098] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421769722.952942] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.52 ms +[1421769723.189490] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.0 ms +[1421769723.407070] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421769723.629548] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421769723.907218] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.4 ms +[1421769724.126128] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421769724.349997] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421769724.572908] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421769724.794045] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421769724.999254] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769725.204572] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769725.409978] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769725.616473] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769725.822421] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769726.028658] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421769726.233616] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769736.649365] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.26 ms +[1421769736.862696] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.31 ms +[1421769737.078464] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421769737.295405] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421769737.518420] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421769737.744309] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421769737.966534] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421769738.188698] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421769738.419148] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.5 ms +[1421769738.624539] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769738.831068] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769739.036727] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.87 ms +[1421769739.243794] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.31 ms +[1421769739.454802] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.83 ms +[1421769739.669611] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421769739.889159] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421769740.109409] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421769740.386735] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.6 ms +[1421769740.609346] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421769740.834798] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421769741.052109] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769741.282824] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.5 ms +[1421769741.512685] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421769741.740676] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421769741.966759] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421769742.190422] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421769742.420808] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.1 ms +[1421769742.650486] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421769742.931966] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.2 ms +[1421769743.157261] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421769743.362346] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769743.568768] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769743.775111] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769743.984293] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.06 ms +[1421769744.196362] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.90 ms +[1421769744.413490] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421769744.632379] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421769744.851355] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.4 ms +[1421769745.072414] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421769745.296672] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421769745.523165] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421769745.749204] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421769746.033624] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.3 ms +[1421769746.255067] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421769746.478791] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421769746.705469] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421769746.931037] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421769747.160559] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.3 ms +[1421769747.380926] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421769747.603047] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421769747.828569] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421769748.034602] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769748.240114] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769748.445207] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769748.650759] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769748.860951] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.02 ms +[1421769749.072227] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.25 ms +[1421769749.283648] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.44 ms +[1421769749.532411] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.0 ms +[1421769749.799301] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.5 ms +[1421769750.021961] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421769750.245033] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421769750.472218] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421769750.699561] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421769750.922116] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421769751.139378] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421769751.364114] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421769751.591310] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421769751.823323] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.7 ms +[1421769752.052801] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421769752.337664] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.0 ms +[1421769752.621697] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.9 ms +[1421769752.827612] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769753.033825] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769753.238753] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421769753.450515] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.63 ms +[1421769753.676297] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421769753.881997] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769754.098081] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.2 ms +[1421769754.317028] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421769754.539008] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421769754.761527] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421769754.981033] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421769755.262115] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.8 ms +[1421769755.539133] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.9 ms +[1421769755.744959] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769755.951466] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769756.156376] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769756.361372] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769756.567616] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421769756.784363] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421769756.995683] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.33 ms +[1421769757.237509] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=37.7 ms +[1421769757.453146] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.7 ms +[1421769757.669690] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421769757.874899] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769758.079667] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769758.286169] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421769758.495038] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.27 ms +[1421769758.706339] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.12 ms +[1421769758.918887] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.39 ms +[1421769759.138872] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421769759.401416] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=58.1 ms +[1421769759.627277] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421769759.852290] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421769760.076762] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421769760.306572] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421769760.590525] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.9 ms +[1421769760.820985] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421769761.105975] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.2 ms +[1421769761.335642] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.4 ms +[1421769761.558047] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421769761.849556] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=87.1 ms +[1421769762.126902] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.6 ms +[1421769762.346890] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421769762.552474] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769762.758246] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769762.964021] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769763.172698] 1541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.38 ms +[1421769763.381754] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.13 ms +[1421769763.595409] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.61 ms +[1421769763.810247] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421769764.028380] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421769764.246511] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421769764.468180] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421769764.746673] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.3 ms +[1421769764.972519] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421769765.254820] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421769765.516331] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=57.5 ms +[1421769765.721628] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769765.926997] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769766.132404] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769766.338137] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421769766.547772] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.49 ms +[1421769766.761180] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.82 ms +[1421769766.978596] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421769767.197947] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421769767.470271] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=68.3 ms +[1421769767.677328] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421769767.883007] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769768.088853] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769768.309474] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421769768.521103] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.45 ms +[1421769768.735385] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.92 ms +[1421769768.952844] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421769769.170856] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.1 ms +[1421769769.396940] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421769769.618416] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421769769.840002] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421769770.065426] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421769770.292244] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421769770.577416] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.2 ms +[1421769770.782988] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769771.000067] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421769771.227378] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421769771.453246] 130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421769771.681635] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421769771.907040] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421769772.117052] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.28 ms +[1421769772.322676] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769772.528149] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769772.735706] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.70 ms +[1421769772.945906] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.55 ms +[1421769773.160355] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421769773.407485] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.2 ms +[1421769773.628727] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421769773.852404] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421769774.067725] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421769774.289483] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421769774.520976] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.3 ms +[1421769774.753083] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.8 ms +[1421769775.035721] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.4 ms +[1421769775.241326] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769775.530515] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.1 ms +[1421769775.753718] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421769775.975333] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421769776.181965] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769776.387867] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769776.592919] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769776.797996] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769777.003229] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769777.209329] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769777.419020] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.98 ms +[1421769777.652604] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.5 ms +[1421769777.870667] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421769778.075305] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769778.280599] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769778.485893] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769778.692393] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.69 ms +[1421769778.903577] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.23 ms +[1421769779.109557] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421769779.314575] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769779.519414] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769779.724730] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769779.930211] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769780.135517] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769780.341044] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769780.546389] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769780.751703] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769780.957457] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769781.163051] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769781.368282] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769781.574639] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421769781.779982] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769781.985452] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769782.190898] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769782.397501] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769782.604159] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421769782.811055] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421769783.017016] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421769783.222903] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769783.428133] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769783.633832] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769783.839302] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769784.043947] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769784.249118] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769784.455076] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421769784.662119] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769784.868746] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421769785.074578] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421769785.280482] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769785.485393] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769785.690560] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769785.896883] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769786.101539] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769786.306404] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769786.512978] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421769786.718801] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421769786.925201] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421769787.130896] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421769787.336005] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769787.541169] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769787.746146] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769787.951094] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769788.155925] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769788.360851] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769788.566526] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769788.771838] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769788.977231] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769789.183685] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769789.389157] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769789.594537] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769789.804631] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.70 ms +[1421769790.010398] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769790.217129] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421769790.422777] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769790.628173] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769790.833559] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769791.039204] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769791.244571] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769791.450006] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769791.655630] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769791.862589] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769792.068161] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421769792.273692] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769792.478983] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769792.684754] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769792.889682] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769793.095566] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769793.301874] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769793.507202] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769793.712995] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769793.918641] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769794.124100] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769794.329357] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769794.534493] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769794.741021] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421769794.947466] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769795.152505] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769795.358953] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769795.564533] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769795.770315] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769795.975233] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769796.180269] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769796.385564] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769796.591096] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769796.797122] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421769797.002648] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769797.208544] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769797.413878] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769797.619792] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769797.824654] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769798.029463] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769798.234155] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769798.438928] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.02 ms +[1421769798.645104] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769798.850470] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769799.055019] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769799.259692] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769799.464779] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769799.669401] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769799.875344] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769800.080591] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769800.286657] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769800.492152] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769800.697883] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769800.903051] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769801.109140] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769801.315691] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769801.522055] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769801.728353] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769801.933988] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769802.139222] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769802.344673] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769802.551265] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769802.756805] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769802.962037] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769803.167365] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769803.373925] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769803.579554] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769803.785693] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769803.991094] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769804.196289] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769804.401843] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769804.607572] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769804.812938] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769805.017581] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769805.222282] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769805.442381] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421769805.648624] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421769805.854659] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421769806.059642] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769806.265032] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769806.470413] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769806.675600] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769806.881179] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769807.086083] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769807.291656] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769807.497704] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769807.704005] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769807.909403] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769808.115117] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769808.321656] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421769808.528056] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769808.733337] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769808.938959] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769809.144064] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769809.349022] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769809.554021] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769809.759678] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769809.965218] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769810.170687] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769810.377105] 1888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769810.582491] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769810.787887] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769810.994299] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769811.200174] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421769811.405359] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769811.610506] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769811.815982] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769812.021914] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769812.226946] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769812.432763] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769812.638741] 1297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421769812.844564] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769813.049816] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769813.255043] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769813.460643] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769813.666171] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769813.871681] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769814.076443] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769814.282272] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769814.487416] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769814.693943] 1955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769814.899595] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769815.104870] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769815.310433] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769815.515818] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769815.720956] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769815.926362] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769816.131732] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769816.337170] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769816.542323] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769816.747679] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769816.953449] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769817.160207] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769817.367749] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.43 ms +[1421769817.574676] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769817.779862] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769817.986062] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769818.191919] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769818.397644] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769818.603369] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769818.809097] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769819.014120] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769819.219052] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769819.423899] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769819.628898] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769819.833831] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769820.038614] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769820.244033] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769820.449361] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769820.654818] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769820.861566] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769821.066822] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769821.271841] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769821.477190] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769821.682452] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769821.888203] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769822.093541] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769822.299542] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769822.505672] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769822.711239] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769822.917586] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769823.122600] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769823.328149] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769823.533123] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769823.739637] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769823.946632] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769824.151400] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769824.357728] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769824.563582] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769824.769794] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769824.975656] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769825.182134] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769825.387561] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769825.593397] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769825.799291] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769826.004219] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769826.210419] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769826.415910] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769826.664315] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.2 ms +[1421769826.870669] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769827.075495] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769827.280762] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769827.486043] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769827.691071] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769827.897184] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769828.102465] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769828.308326] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421769828.513971] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421769828.719858] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.01 ms +[1421769828.925896] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769829.130660] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769829.335828] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769829.541105] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769829.745986] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769829.952161] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769830.158094] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421769830.365390] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.43 ms +[1421769830.575204] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.22 ms +[1421769830.788647] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.04 ms +[1421769831.001999] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.26 ms +[1421769831.222444] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421769831.447163] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421769831.726615] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.4 ms +[1421769831.950010] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421769832.226419] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.6 ms +[1421769832.451184] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421769832.680905] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421769832.898615] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421769833.120707] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421769833.346084] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421769833.551341] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769833.756872] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769833.962592] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769834.168210] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769834.375581] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.46 ms +[1421769834.582995] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.41 ms +[1421769834.788575] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769834.994611] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769835.200586] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769835.416695] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421769835.643809] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421769835.859581] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421769836.075663] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421769836.296985] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421769836.521415] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421769836.806897] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.3 ms +[1421769837.032114] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421769837.260655] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421769837.490845] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.4 ms +[1421769837.744275] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=49.2 ms +[1421769837.949373] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769838.155365] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769838.360960] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769838.566802] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769838.772549] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769838.978056] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769839.183077] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769839.388495] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769839.593460] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769839.798921] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769840.004722] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769840.210239] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769840.415358] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769840.620728] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769840.826201] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769841.031835] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421769841.236910] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421769841.443407] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769841.649120] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769841.854516] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769842.059007] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769842.264078] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769842.469655] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769842.675951] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.92 ms +[1421769842.882493] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421769843.088332] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769843.293469] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769843.498464] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769843.704003] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769843.909342] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769844.114596] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769844.319561] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769844.525738] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769844.731648] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769844.937893] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421769845.143322] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769845.348852] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769845.555587] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769845.764681] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.14 ms +[1421769845.993214] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421769846.209793] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421769846.453092] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.4 ms +[1421769846.674080] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421769846.880558] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769847.085392] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769847.292106] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.96 ms +[1421769847.498703] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.75 ms +[1421769847.708719] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.89 ms +[1421769847.923172] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421769848.134210] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.05 ms +[1421769848.356929] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421769848.584357] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421769848.790916] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769848.996577] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769849.203008] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769849.408325] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769849.613383] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769849.818495] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769850.023613] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769850.229167] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769850.434631] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769850.640386] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769850.845635] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769851.052080] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769851.257376] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769851.462860] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769851.669711] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421769851.875577] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769852.080801] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769852.286840] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769852.492361] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769852.697866] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769852.903300] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.87 ms +[1421769853.108327] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769853.314554] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769853.519955] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769853.728269] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769853.933466] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769854.139508] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.03 ms +[1421769854.345602] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421769854.550751] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769854.756697] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769854.961825] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769855.168164] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769855.373635] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769855.579264] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769855.785980] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769855.991864] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769856.197529] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769856.402627] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769856.608470] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769856.813847] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769857.019932] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421769857.226351] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421769857.431444] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769857.636577] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769857.841375] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769858.046916] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769858.252490] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769858.457768] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769858.662915] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769858.867829] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769859.072332] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769859.278157] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421769859.483756] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769859.689296] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769859.894745] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769860.100867] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769860.305762] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769860.510587] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769860.715977] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769860.921570] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769861.126875] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769861.332212] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769861.537862] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769861.743863] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769861.950693] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769862.156260] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769862.360963] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769862.566113] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769862.771570] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769862.976811] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769863.181725] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769863.387003] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769863.591782] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769863.797124] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769864.002466] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769864.208145] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769864.414702] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769864.620348] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769864.825531] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769865.030333] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769865.236239] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769865.442987] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769865.650014] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769865.855408] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769866.061530] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421769866.267687] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769866.473037] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769866.678629] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769866.884465] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769867.089619] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769867.295061] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769867.500921] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769867.707060] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769867.912689] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769868.117956] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769868.324170] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769868.529501] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769868.735474] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421769868.941699] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769869.147823] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769869.354227] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769869.560208] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769869.766061] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769869.972483] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769870.177387] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769870.382211] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769870.587120] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769870.792681] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769870.998184] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769871.203861] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769871.410339] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769871.616273] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769871.822287] 837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769872.028241] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421769872.233195] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769872.438236] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769872.643937] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769872.849097] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769873.054295] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769873.259703] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769873.465099] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769873.671616] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769873.877219] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769874.082596] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769874.288016] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769874.493731] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769874.699048] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769874.904863] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769875.109773] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421769875.338524] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421769875.565466] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421769875.793210] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421769876.018745] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421769876.239678] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421769876.467349] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421769876.692250] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421769876.912598] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421769877.135754] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421769877.363349] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421769877.590731] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421769877.818045] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421769878.024065] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769878.230379] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769878.435889] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421769878.650476] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421769878.856154] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769879.070831] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421769879.309991] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.0 ms +[1421769879.562675] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.3 ms +[1421769879.830791] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=63.9 ms +[1421769880.108156] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.4 ms +[1421769880.328959] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421769880.555237] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421769880.843435] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.1 ms +[1421769881.048366] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769881.254694] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769881.460426] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769881.667030] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769881.872324] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769882.076997] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769882.282047] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769882.487540] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769882.693280] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769882.898499] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769883.103611] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769883.309833] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421769883.520915] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.73 ms +[1421769883.735519] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421769883.953400] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421769884.171375] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.1 ms +[1421769884.393790] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769884.600304] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769884.806763] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769885.011991] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421769885.218409] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421769885.424855] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769885.648543] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421769885.860836] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.91 ms +[1421769886.073861] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.35 ms +[1421769886.332387] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=54.6 ms +[1421769886.554890] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421769886.781182] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421769887.005537] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421769887.228707] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421769887.453943] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421769887.659235] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769887.864556] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769888.073114] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769888.278454] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769888.484513] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769888.689673] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769888.895407] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769889.101522] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769889.307065] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421769889.513831] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769889.720153] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769889.926428] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769890.132883] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769890.338301] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769890.543364] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769890.748662] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769890.954300] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769891.159737] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769891.365253] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769891.570715] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769891.776971] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769891.983079] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769892.189776] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.95 ms +[1421769892.412333] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421769892.624729] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.29 ms +[1421769892.839314] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421769893.055621] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421769893.274485] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421769893.481215] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769893.686802] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769893.891982] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769894.097466] 555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421769894.314715] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421769894.544135] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.0 ms +[1421769894.788652] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=40.4 ms +[1421769895.044118] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.3 ms +[1421769895.260355] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.0 ms +[1421769895.481858] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421769895.711945] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421769895.938345] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421769896.165359] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421769896.392866] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421769896.599350] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769896.805043] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769897.009778] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769897.214874] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769897.421020] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769897.626129] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769897.831889] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769898.036645] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769898.241697] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769898.446950] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769898.652740] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769898.861934] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.78 ms +[1421769899.067412] 130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769899.272972] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769899.478385] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769899.683953] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769899.890239] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769900.095243] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769900.299955] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769900.505137] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769900.710270] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769900.915470] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421769901.120599] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769901.327111] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769901.533569] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769901.739658] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421769901.946230] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769902.151553] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769902.356224] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769902.562044] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769902.769706] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421769902.976384] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769903.181805] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769903.387401] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769903.594233] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769903.799431] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769904.004330] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769904.209781] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769904.415782] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769904.621347] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769904.827726] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769905.032706] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769905.237697] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769905.443311] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769905.649486] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769905.855217] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421769906.059895] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769906.266147] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769906.471395] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769906.676385] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769906.881659] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769907.086245] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769907.291727] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769907.498638] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421769907.704434] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769907.910851] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769908.117652] 1984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421769908.323291] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769908.529177] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769908.735511] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769908.940446] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769909.145476] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769909.350855] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769909.556850] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421769909.762327] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769909.968019] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769910.173841] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769910.379688] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769910.585052] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769910.790505] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769910.996396] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769911.201823] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769911.407152] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769911.612159] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769911.817848] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769912.023044] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769912.229228] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421769912.434463] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769912.639898] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769912.845780] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769913.050559] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769913.255848] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769913.460883] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769913.667277] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421769913.873153] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769914.079541] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769914.285156] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421769914.490665] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769914.695732] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769914.901210] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769915.106074] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421769915.311681] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769915.517672] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769915.724381] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769915.931221] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769916.136637] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769916.342066] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769916.548946] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769916.755155] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769916.968937] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.39 ms +[1421769917.175619] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769917.380872] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769917.619711] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.7 ms +[1421769917.860803] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.7 ms +[1421769918.099455] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.6 ms +[1421769918.346998] 904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.4 ms +[1421769918.590383] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.1 ms +[1421769918.838463] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.8 ms +[1421769919.084816] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.7 ms +[1421769919.326272] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=37.4 ms +[1421769919.570310] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.9 ms +[1421769919.817132] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.8 ms +[1421769920.064790] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.1 ms +[1421769920.309857] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=41.0 ms +[1421769920.554441] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=40.7 ms +[1421769920.793931] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.6 ms +[1421769921.033392] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.0 ms +[1421769921.269405] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.3 ms +[1421769921.507418] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.0 ms +[1421769921.746748] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.3 ms +[1421769921.970949] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769922.190085] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421769922.434063] 1075 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=40.1 ms +[1421769922.685074] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.7 ms +[1421769922.928866] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.8 ms +[1421769923.176687] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.7 ms +[1421769923.420087] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.4 ms +[1421769923.660474] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.0 ms +[1421769923.904261] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.6 ms +[1421769924.133923] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.4 ms +[1421769924.368503] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.2 ms +[1421769924.591937] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421769924.818368] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421769925.042440] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421769925.257583] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421769925.466316] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.50 ms +[1421769925.677785] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.47 ms +[1421769925.889703] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.74 ms +[1421769926.126408] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769926.381811] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.3 ms +[1421769926.630781] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.9 ms +[1421769926.866286] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.4 ms +[1421769927.093797] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421769927.309206] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421769927.529086] 1175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421769927.739723] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.93 ms +[1421769927.953966] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.1 ms +[1421769928.168962] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421769928.384196] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421769928.599704] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421769928.813800] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.1 ms +[1421769929.030675] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421769929.249337] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421769929.462488] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.37 ms +[1421769929.669428] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.76 ms +[1421769929.883947] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421769930.095636] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.57 ms +[1421769930.302085] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421769930.514837] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.55 ms +[1421769930.727117] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.02 ms +[1421769930.939408] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.04 ms +[1421769931.149659] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.32 ms +[1421769931.365039] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.4 ms +[1421769931.576779] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.65 ms +[1421769931.790069] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.32 ms +[1421769931.995025] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769932.200035] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769932.405004] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769932.610947] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769932.816219] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769933.021369] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769933.226326] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769933.431521] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769933.636799] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769933.842484] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769934.047528] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769934.252661] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769934.457829] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769934.663474] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769934.868958] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769935.074128] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769935.279132] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769935.483923] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769935.689009] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769935.894259] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769936.099624] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769936.304889] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769936.510209] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769936.716469] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421769936.921786] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769937.126765] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421769937.333143] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769937.538501] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769937.743983] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769937.949560] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769938.154773] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769938.359782] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769938.565154] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769938.770415] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769938.975612] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769939.192424] 1026 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421769939.397790] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769939.603314] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769939.810280] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.83 ms +[1421769940.016074] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769940.222237] 1529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769940.428762] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769940.634749] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769940.840579] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769941.045870] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769941.250823] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769941.456245] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769941.661480] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769941.866866] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769942.072815] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769942.278352] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769942.483684] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769942.690258] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769942.895601] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769943.100512] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769943.305503] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769943.511867] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769943.717579] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769943.924061] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421769944.131155] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421769944.336587] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769944.541928] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769944.748089] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769944.953842] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769945.160090] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769945.365452] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769945.571679] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769945.777354] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769945.983447] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769946.188877] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769946.394244] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769946.599974] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769946.806489] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421769947.011640] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769947.216609] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769947.421802] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769947.628348] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769947.834187] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769948.040205] 1503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421769948.245718] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769948.451456] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769948.658213] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769948.864725] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.00 ms +[1421769949.072413] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.78 ms +[1421769949.277955] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769949.484402] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.93 ms +[1421769949.689623] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769949.895148] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769950.100378] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769950.305651] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769950.510476] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769950.716387] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769950.921537] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769951.126870] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769951.333017] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769951.539588] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769951.745539] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769951.950849] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769952.156009] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769952.361379] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769952.567737] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769952.773507] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769952.980501] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421769953.187306] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769953.392724] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421769953.598279] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421769953.803165] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769954.007871] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769954.212852] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769954.420572] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769954.625532] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769954.831432] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769955.036930] 1984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769955.241967] 841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769955.446564] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769955.652257] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421769955.858092] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769956.063761] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769956.268546] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769956.474795] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769956.680673] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769956.886105] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769957.090769] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769957.296665] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769957.503039] 1482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769957.708349] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769957.913633] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769958.118587] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769958.323530] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769958.528860] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769958.734521] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769958.941270] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769959.146471] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421769959.351625] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769959.557328] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769959.763104] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769959.976140] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.79 ms +[1421769960.182416] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769960.387897] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769960.594429] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769960.805733] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.82 ms +[1421769961.010611] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769961.215654] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769961.421816] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769961.627114] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769961.832276] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769962.036878] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769962.241998] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769962.446726] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769962.652977] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769962.858431] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769963.064376] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769963.270345] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769963.475753] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769963.680564] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769963.885334] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769964.090086] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769964.295550] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769964.501260] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769964.706589] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769964.911489] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.00 ms +[1421769965.116000] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421769965.320919] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769965.525953] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769965.731209] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769965.936378] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769966.142388] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769966.347749] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421769966.554198] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421769966.759845] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769966.964934] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769967.169990] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769967.376081] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769967.580890] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769967.786298] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421769967.993147] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421769968.198644] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421769968.405090] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769968.610710] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421769968.817101] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769969.021916] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769969.227339] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769969.432261] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769969.637374] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769969.842754] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769970.048496] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769970.253330] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769970.458805] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769970.664902] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769970.869996] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769971.074658] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769971.281130] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421769971.491102] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.62 ms +[1421769971.703271] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.18 ms +[1421769971.918636] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.4 ms +[1421769972.135052] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421769972.354208] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421769972.560633] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769972.766294] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769972.971875] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769973.180849] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.93 ms +[1421769973.414940] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.9 ms +[1421769973.621481] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769973.826937] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769974.031051] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769974.237201] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769974.442248] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769974.648378] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769974.855306] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421769975.060340] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421769975.266629] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769975.472910] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421769975.678524] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769975.885624] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769976.090828] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769976.296113] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769976.501047] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769976.706059] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769976.912150] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421769977.118481] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421769977.324105] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769977.530854] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769977.736544] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769977.941552] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769978.146690] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769978.352220] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769978.557649] 1261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769978.763071] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769978.967931] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769979.173140] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769979.377998] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769979.583250] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769979.788623] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769979.994027] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769980.199053] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769980.405573] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769980.611953] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769980.817697] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421769981.022571] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769981.227789] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769981.433041] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769981.639583] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421769981.845346] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421769982.050259] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769982.255241] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769982.460919] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769982.666503] 1330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769982.872721] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421769983.078388] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769983.283643] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769983.489471] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769983.695028] 1175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769983.900396] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769984.105107] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769984.310334] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769984.517098] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769984.723457] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421769984.929268] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769985.134634] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769985.339852] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769985.545617] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769985.752038] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421769985.958605] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769986.164670] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769986.370716] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769986.605198] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.0 ms +[1421769986.810610] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769987.021267] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.95 ms +[1421769987.226762] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769987.431733] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769987.636980] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769987.843740] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769988.048918] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769988.254269] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769988.460710] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769988.666286] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769988.872422] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769989.077578] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769989.282808] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769989.489013] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769989.695196] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769989.919905] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421769990.126218] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769990.331701] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769990.538024] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769990.744448] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769990.993714] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.6 ms +[1421769991.205777] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.61 ms +[1421769991.411334] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769991.618246] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769991.825124] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769992.030092] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769992.236078] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769992.442649] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769992.649155] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.92 ms +[1421769992.855186] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421769993.060772] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769993.266225] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769993.471546] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769993.676920] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421769993.882380] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769994.087438] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769994.292530] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769994.499146] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421769994.704802] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769994.910977] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769995.116104] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769995.321295] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769995.532308] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.09 ms +[1421769995.737981] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769995.943922] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421769996.171243] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421769996.386547] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421769996.592313] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421769996.798209] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769997.003884] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769997.209219] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769997.418830] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.34 ms +[1421769997.625300] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769997.830702] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769998.035480] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769998.255961] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421769998.461422] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769998.677655] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.9 ms +[1421769998.883538] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769999.090309] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769999.296071] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769999.501452] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769999.706864] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769999.912058] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770000.116911] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770000.322174] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770000.527311] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770000.733520] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770000.939152] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770001.144344] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421770001.349527] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770001.555693] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770001.761233] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770001.966789] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770002.173647] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770002.380029] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770002.585122] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770002.791026] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421770002.997244] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770003.202615] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770003.407993] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770003.613590] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770003.818939] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770004.024250] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770004.229235] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770004.434118] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770004.639161] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770004.845307] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770005.050066] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770005.255409] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770005.461605] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770005.668073] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770005.873268] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770006.078141] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770006.283159] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770006.488463] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770006.693714] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770006.898518] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770007.103041] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770007.308104] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770007.513248] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770007.718238] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770007.923174] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770008.128914] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421770008.334800] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770008.540100] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770008.745614] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421770008.951733] 1932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770009.156866] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770009.361913] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770009.568536] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770009.774144] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770009.979752] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770010.186056] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770010.391205] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770010.596806] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421770010.802500] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770011.007583] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770011.212760] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770011.419208] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770011.640166] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421770011.845691] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770012.050374] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770012.255566] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770012.461280] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770012.666664] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770012.871991] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770013.077382] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421770013.282646] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770013.488914] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770013.694861] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421770013.900634] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770014.105981] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770014.311480] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770014.517428] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770014.722728] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770014.928352] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770015.135171] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770015.340979] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770015.546993] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770015.752735] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421770015.958815] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770016.164322] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770016.370108] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770016.575328] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770016.780361] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770016.985207] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770017.190586] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770017.396058] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770017.602150] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770017.807607] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770018.012600] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770018.218650] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770018.423518] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770018.628471] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770018.833710] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770019.039569] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770019.244783] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770019.450224] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770019.655918] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770019.861949] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770020.067250] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770020.273250] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770020.478894] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770020.684726] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770020.890161] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770021.095410] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770021.301468] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770021.508120] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770021.714767] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770021.920475] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770022.126124] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770022.331191] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770022.536531] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770022.743060] 1984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421770022.948476] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770023.154156] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770023.359168] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770023.564443] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770023.769884] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770023.975915] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770024.182153] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421770024.387555] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770024.592709] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770024.798389] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770025.003639] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770025.208724] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770025.414709] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770025.620867] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770025.826706] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770026.031635] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770026.236921] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770026.442405] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770026.648070] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770026.855394] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421770027.060838] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770027.266280] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421770027.473374] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.94 ms +[1421770027.678454] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770027.884683] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770028.090053] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770028.295305] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770028.501262] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770028.707320] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770028.913963] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.95 ms +[1421770029.119348] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770029.324604] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770029.529748] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770029.735356] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770029.941444] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770030.148787] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.82 ms +[1421770030.354122] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770030.560900] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421770030.767829] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770030.973253] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770031.178515] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770031.384472] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421770031.589558] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770031.795221] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770032.001693] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770032.207178] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770032.412821] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770032.618126] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770032.823645] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770033.028910] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770033.234501] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770033.439798] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770033.644496] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770033.850701] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770034.058523] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.34 ms +[1421770034.265323] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770034.471376] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770034.676993] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770034.882333] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770035.088263] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770035.294453] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770035.499424] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770035.704665] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770035.910100] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770036.115713] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770036.321251] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770036.527019] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770036.732226] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770036.937517] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770037.143864] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770037.349471] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770037.555716] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770037.761597] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421770037.968006] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421770038.173949] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421770038.380455] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770038.586438] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770038.791681] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770038.996743] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770039.202351] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770039.408302] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770039.614268] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770039.820797] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770040.025595] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770040.231930] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770040.437579] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770040.642965] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770040.849661] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.79 ms +[1421770041.054208] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770041.259172] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770041.464124] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770041.669104] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770041.875465] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770042.080463] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770042.285713] 1148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770042.492019] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770042.697491] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770042.902813] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770043.108096] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770043.313490] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770043.521252] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.47 ms +[1421770043.730871] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.60 ms +[1421770043.943086] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.40 ms +[1421770044.161109] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421770044.381965] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421770044.607960] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421770044.813815] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770045.018729] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770045.223567] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770045.428696] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770045.633754] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770045.840370] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770046.046216] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770046.251243] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770046.456630] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770046.661873] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770046.867673] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770047.073159] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770047.279159] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770047.484730] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770047.690043] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770047.896861] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770048.101910] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770048.307800] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770048.513134] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770048.718238] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770048.923890] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770049.130514] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770049.336825] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770049.542974] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770049.748568] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770049.954741] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770050.159878] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770050.366234] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770050.571765] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770050.777359] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770050.983809] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770051.189161] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770051.394348] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770051.600456] 1913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770051.806041] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770052.011205] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770052.217287] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770052.422749] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770052.629067] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770052.834584] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770053.040037] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770053.245118] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770053.450517] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770053.656154] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770053.861286] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770054.066447] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770054.271965] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770054.477688] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770054.684234] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770054.889249] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770055.094244] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770055.299810] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.94 ms +[1421770055.505976] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770055.711740] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770055.919594] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.77 ms +[1421770056.125116] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770056.331367] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770056.537152] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770056.742517] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770056.948700] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421770057.155079] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770057.360318] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770057.565016] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770057.770243] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770057.975870] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770058.181500] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770058.388027] 1932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770058.593159] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770058.799679] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770059.004866] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770059.210132] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770059.415477] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770059.621427] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770059.827425] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770060.033639] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770060.238878] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770060.444701] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770060.650266] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770060.855267] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770061.060324] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770061.265387] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770061.471008] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770061.676248] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770061.882694] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770062.087414] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770062.292673] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770062.497977] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770062.703435] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770062.909037] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770063.115237] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770063.320613] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770063.526796] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770063.733210] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421770063.938506] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770064.145399] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770064.350775] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770064.555863] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770064.762110] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770064.968536] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770065.173929] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770065.378995] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770065.584433] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421770065.790392] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421770065.996186] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770066.202604] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770066.407495] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770066.613808] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770066.819352] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770067.023899] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770067.231912] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.28 ms +[1421770067.456136] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421770067.668595] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.90 ms +[1421770067.888634] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421770068.106194] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.1 ms +[1421770068.329082] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421770068.556747] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421770068.777375] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421770069.061350] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.9 ms +[1421770069.266926] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770069.471881] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770069.679548] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.64 ms +[1421770069.884471] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770070.090004] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770070.295223] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770070.500884] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770070.706215] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770070.913001] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.86 ms +[1421770071.122555] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.35 ms +[1421770071.336672] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.3 ms +[1421770071.585893] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.1 ms +[1421770071.801401] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421770072.006456] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770072.211419] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770072.416364] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770072.621637] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770072.827476] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770073.032507] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770073.239073] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770073.444641] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770073.650709] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770073.856834] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770074.062417] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770074.268744] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421770074.474258] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770074.679598] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770074.884566] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770075.089668] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770075.295923] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421770075.501488] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770075.707431] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770075.912884] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770076.117787] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770076.323054] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770076.528653] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770076.733520] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770076.938697] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770077.143675] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770077.349167] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770077.554382] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770077.760837] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770077.965795] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770078.171226] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770078.376482] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770078.581614] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770078.786761] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770078.991711] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770079.198416] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770079.403206] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770079.609335] 1932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770079.814731] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770080.019593] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770080.224609] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770080.430237] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770080.635840] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770080.841362] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770081.046009] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770081.251328] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770081.458134] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421770081.663640] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770081.869197] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770082.074479] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770082.279366] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770082.484864] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770082.690337] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770082.896346] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770083.101624] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770083.307826] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770083.513432] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770083.719480] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770083.925183] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770084.131408] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770084.336539] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770084.541745] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770084.747081] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770084.952724] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770085.158205] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421770085.363161] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770085.569276] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770085.774513] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770085.979641] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770086.184671] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770086.390520] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770086.595753] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770086.800742] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770087.005553] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770087.212068] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770087.417407] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770087.622814] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770087.828766] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421770088.033437] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770088.238368] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770088.443606] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770088.649109] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770088.855428] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770089.060584] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770089.266884] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421770089.472313] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421770089.677968] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770089.883569] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770090.088879] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770090.293981] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770090.500486] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770090.706032] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770090.912695] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770091.119379] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770091.324660] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770091.530371] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770091.736256] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770091.942159] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770092.147370] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770092.352682] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770092.558553] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770092.764486] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770092.970302] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770093.176681] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770093.382036] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770093.587356] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770093.793103] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770093.999790] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770094.205439] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770094.411187] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770094.616041] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770094.820824] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770095.027490] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421770095.233412] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770095.439701] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770095.644673] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770095.850180] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770096.055788] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770096.261236] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770096.466415] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770096.672796] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770096.878585] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770097.083825] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770097.289263] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770097.495844] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770097.702396] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770097.908618] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770098.114007] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770098.320682] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421770098.527487] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.92 ms +[1421770098.733025] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770098.938830] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770099.144302] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770099.349403] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770099.555709] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770099.761998] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770099.967969] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770100.174807] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770100.380114] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770100.586670] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770100.792951] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770100.999372] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770101.204857] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770101.409597] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.03 ms +[1421770101.614733] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770101.820066] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770102.025397] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770102.231523] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770102.436925] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770102.642386] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770102.848048] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770103.053563] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421770103.258745] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770103.463991] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770103.669658] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770103.875416] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770104.080366] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770104.285883] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770104.491261] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770104.696498] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770104.901992] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770105.106882] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770105.311833] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770105.516946] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770105.722471] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770105.929470] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770106.134819] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770106.340295] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770106.545976] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770106.751835] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770106.956759] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770107.162114] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770107.367783] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770107.573152] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770107.779937] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770107.986484] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770108.192715] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770108.398716] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770108.604089] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770108.809548] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770109.014368] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770109.219581] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770109.424933] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770109.631295] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770109.837147] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770110.042200] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770110.247180] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770110.452586] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770110.659042] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770110.864083] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770111.068775] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770111.274660] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770111.479778] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770111.685396] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770111.891268] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770112.096443] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770112.301856] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770112.507031] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770112.712632] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770112.919330] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421770113.124995] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770113.330150] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770113.535632] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770113.741513] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770113.947186] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770114.152650] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770114.359181] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770114.564877] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770114.770148] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770114.976415] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770115.181528] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770115.387547] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770115.592974] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770115.798567] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770116.004755] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770116.211272] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770116.417285] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770116.623802] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770116.829010] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770117.034055] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770117.238732] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770117.443792] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770117.648957] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770117.855216] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770118.059895] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770118.265102] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770118.471511] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770118.677579] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770118.883300] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770119.087780] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770119.292838] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770119.497947] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770119.703667] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770119.909305] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770120.114689] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770120.321215] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770120.530404] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.70 ms +[1421770120.757810] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421770120.972838] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421770121.227718] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=50.6 ms +[1421770131.636341] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770131.841472] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770132.046305] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770132.251588] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770132.457573] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770132.662893] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770132.869853] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421770133.074592] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770133.279290] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770133.484577] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770133.690033] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770133.895446] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770134.099845] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770134.305193] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421770134.510874] 1175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.92 ms +[1421770134.716196] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770134.921623] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770135.126146] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770135.330975] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770135.536762] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770135.742886] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770135.948682] 1451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770136.154159] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421770136.359975] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770136.565070] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770136.770057] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770136.976528] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421770137.191151] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.3 ms +[1421770137.396825] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770137.602296] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770137.808829] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770138.013337] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770138.218448] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770138.423694] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770138.635221] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.42 ms +[1421770138.841698] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770139.046225] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770139.250972] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770139.455975] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770139.661323] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770139.866469] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770140.071398] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770140.276859] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770140.482715] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770140.688207] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770140.894162] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770141.099454] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770141.305818] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770141.512407] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770141.718968] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770141.924541] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770142.129647] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770142.334952] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770142.541254] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770142.746897] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770142.953242] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421770143.159244] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770143.364648] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770143.571036] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770143.776891] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770143.982064] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770144.187892] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770144.393238] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770144.598799] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770144.804724] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770145.010078] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770145.215229] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770145.420648] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770145.626384] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770145.832017] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770146.037682] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770146.243895] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770146.449558] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770146.654877] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770146.860906] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770147.066139] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770147.272442] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770147.477917] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770147.683836] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421770147.889835] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421770148.094939] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770148.300157] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770148.506112] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770148.711102] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770148.916232] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770149.120781] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770149.325855] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770149.531703] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770149.737351] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770149.942133] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770150.148732] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.76 ms +[1421770150.354322] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421770150.559268] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770150.764351] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770150.970724] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421770151.175968] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770151.381900] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770151.587401] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770151.793598] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770152.000415] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770152.205947] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770152.410855] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770152.615377] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770152.820976] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770153.026198] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770153.231584] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770153.436756] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770153.642079] 512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770153.848664] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770154.053750] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770154.259597] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770154.465600] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770154.671255] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770154.876443] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770155.082290] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770155.287522] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770155.492801] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770155.698330] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770155.904956] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770156.110069] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770156.315383] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770156.521483] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.99 ms +[1421770156.726623] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770156.931723] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770157.136725] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770157.342878] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770157.548088] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770157.754795] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421770157.960857] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421770158.166317] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770158.371650] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770158.577704] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770158.783662] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421770158.989146] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770159.194787] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770159.400994] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770159.606702] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421770159.811815] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770160.017587] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770160.222974] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770160.427996] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770160.633199] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770160.838453] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770161.043418] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770161.248429] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770161.454632] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770161.661801] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770161.867936] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770162.073016] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770162.279238] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770162.484310] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770162.690061] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770162.895954] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770163.101342] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770163.306887] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770163.512452] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770163.718098] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770163.923322] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770164.128557] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770164.334543] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770164.540474] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770164.745855] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770164.951712] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770165.157344] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770165.363478] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770165.568731] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770165.773764] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770165.979486] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770166.184945] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770166.391255] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770166.596380] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770166.803301] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770167.008213] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770167.213086] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770167.419477] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421770167.626176] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770167.831462] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770168.037281] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770168.242521] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770168.447763] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770168.652963] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770168.859300] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770169.066086] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421770169.272627] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770169.478375] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770169.684065] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.91 ms +[1421770169.899943] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421770170.111183] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.64 ms +[1421770170.324572] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.65 ms +[1421770170.541717] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421770170.764955] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421770170.987804] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421770171.211175] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421770171.416454] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770171.621628] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770171.826616] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770172.034614] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.64 ms +[1421770172.246412] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.86 ms +[1421770172.489565] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.5 ms +[1421770172.695845] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770172.900922] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770173.106108] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770173.312648] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421770173.518302] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770173.723441] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770173.928867] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770174.134104] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770174.339249] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770174.544402] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770174.750261] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770174.956135] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770175.160887] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770175.366277] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770175.572735] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770175.778033] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770175.984696] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770176.190861] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770176.396987] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770176.602836] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421770176.809531] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770177.014398] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770177.220034] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770177.425857] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770177.630974] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770177.837671] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421770178.042853] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770178.248072] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770178.453504] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770178.658303] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770178.863640] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770179.068600] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770179.273617] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770179.479846] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770179.685481] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770179.891320] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770180.096181] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770180.301735] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770180.507580] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770180.712968] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770180.919775] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421770181.125216] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770181.330497] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770181.536418] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770181.741879] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770181.948112] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770182.153259] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770182.359464] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770182.564640] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770182.770101] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770182.975789] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770183.182095] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421770183.387226] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770183.592457] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770183.797750] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770184.003877] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770184.208922] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770184.414596] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770184.620100] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770184.826357] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770185.032415] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421770185.237671] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770185.443366] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421770185.648723] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770185.853796] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770186.058835] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770186.265236] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770186.471886] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770186.677566] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770186.882996] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770187.087688] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770187.292740] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770187.499403] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770187.705253] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770187.911982] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770188.118363] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770188.323296] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770188.528388] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770188.733969] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770188.939521] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770189.145957] 1482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770189.350882] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770189.555790] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770189.761673] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.98 ms +[1421770189.966895] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770190.173013] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770190.378179] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770190.583417] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770190.788774] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770190.995505] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421770191.201009] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770191.406781] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770191.612447] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770191.818067] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770192.022875] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770192.228486] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770192.434477] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421770192.640889] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770192.846960] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770193.051790] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770193.257020] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770193.462554] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770193.669003] 1720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770193.874609] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770194.079173] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770194.284596] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770194.489989] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770194.695364] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770194.900516] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770195.106896] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770195.312138] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770195.518366] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770195.723691] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770195.929617] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770196.134954] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770196.340838] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770196.547131] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770196.752556] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770196.957957] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770197.163896] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770197.369184] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770197.574714] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770197.780118] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770197.986684] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421770198.191845] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770198.396886] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421770198.601862] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770198.807244] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770199.012020] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770199.217414] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770199.423955] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770199.629743] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770199.836590] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770200.042607] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770200.247877] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770200.454453] 1716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770200.660647] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421770200.867192] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770201.072194] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770201.277121] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770201.482534] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421770201.687581] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770201.893864] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770202.098919] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770202.304507] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421770202.510230] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770202.715243] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770202.922468] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770203.127915] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770203.334075] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770203.539133] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770203.745234] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770203.950598] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770204.156110] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770204.361123] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770204.566687] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770204.771851] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770204.978402] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770205.184086] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770205.390121] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770205.596696] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770205.802676] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770206.007944] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770206.212954] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770206.418264] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770206.623725] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770206.829534] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770207.035629] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770207.241961] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770207.448355] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770207.654546] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770207.859982] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770208.066002] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770208.270991] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770208.476205] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770208.682294] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421770208.888147] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770209.093378] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770209.299304] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770209.505402] 1897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770209.710684] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770209.916033] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770210.121124] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770210.326652] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770210.532236] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421770210.737857] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770210.944160] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770211.149516] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770211.355127] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770211.559903] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770211.764827] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770211.970189] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770212.175470] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770212.380999] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770212.586503] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770212.791555] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770212.997778] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770213.203564] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770213.408857] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770213.613973] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770213.819342] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770214.024249] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770214.229672] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770214.435481] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770214.641231] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770214.846855] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770215.053027] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770215.258423] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770215.463643] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770215.669884] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770215.874621] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770216.079537] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770216.285171] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770216.490648] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770216.695892] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770216.901384] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770217.107932] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770217.313663] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770217.519045] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770217.724249] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770217.929438] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770218.134569] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770218.339986] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770218.546380] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770218.752089] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770218.957720] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770219.163309] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770219.368502] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770219.573702] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770219.778974] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770219.984216] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770220.190866] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770220.396168] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770220.601647] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770220.806838] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770221.011277] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770221.216232] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770221.421829] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770221.627415] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770221.834280] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770222.039078] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770222.243781] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770222.449004] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770222.654958] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770222.861183] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421770223.066785] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770223.271897] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770223.477871] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421770223.683367] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770223.889050] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770224.094095] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770224.299423] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770224.504752] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770224.710112] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770224.915522] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770225.120427] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770225.325191] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770225.530388] 555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770225.736819] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770225.942261] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770226.147535] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770226.352651] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770226.558665] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770226.764588] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770226.970258] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770227.175679] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770227.380893] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770227.586579] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770227.791983] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421770227.998303] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770228.204477] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421770228.410809] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770228.616069] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770228.822331] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770229.027276] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770229.232571] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770229.438944] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770229.644214] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770229.849992] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770230.055583] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770230.260863] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421770230.469784] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.78 ms +[1421770230.691207] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421770230.897562] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.99 ms +[1421770231.102723] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770231.308107] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770231.514119] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770231.720462] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421770231.925878] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770232.131967] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770232.338014] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770232.543540] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770232.748655] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770232.954498] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421770233.161029] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421770233.366363] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770233.572499] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770233.777622] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770233.982934] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770234.188592] 1410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770234.394680] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770234.599740] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770234.804907] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770235.009787] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770235.215931] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770235.421221] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770235.626172] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770235.831846] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770236.037187] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770236.242276] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770236.447351] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770236.652438] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770236.857197] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770237.062331] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770237.282196] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421770237.515808] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.1 ms +[1421770237.760989] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=40.8 ms +[1421770237.982324] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421770238.203462] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421770238.480700] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.5 ms +[1421770238.709527] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421770238.934919] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421770239.158980] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421770239.385315] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421770239.670585] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.5 ms +[1421770239.900896] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.2 ms +[1421770240.127183] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421770240.333585] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770240.539095] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770240.744586] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770240.952750] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.87 ms +[1421770241.177246] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421770241.412368] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.4 ms +[1421770241.628187] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421770241.849865] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421770242.072641] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421770242.294735] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421770242.527183] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.3 ms +[1421770242.811682] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.5 ms +[1421770243.035756] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421770243.320413] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.9 ms +[1421770243.525365] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770243.731112] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770243.936414] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770244.142860] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770244.348090] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770244.553769] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421770244.763927] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.59 ms +[1421770244.976836] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.43 ms +[1421770245.189106] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.00 ms +[1421770245.410251] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421770245.631664] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421770245.910359] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.4 ms +[1421770246.116348] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770246.321736] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770246.528488] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770246.734376] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421770246.942727] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.50 ms +[1421770247.155864] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.19 ms +[1421770247.371640] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421770247.628665] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=52.7 ms +[1421770247.901678] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=68.8 ms +[1421770248.124741] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421770248.344622] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.7 ms +[1421770248.569137] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421770248.844024] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.3 ms +[1421770249.049023] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770249.279406] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.5 ms +[1421770249.555618] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.0 ms +[1421770249.761030] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770249.967260] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770250.173972] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770250.379700] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770250.585779] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770250.792703] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770250.998558] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770251.203872] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770251.409258] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770251.614242] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770251.820589] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770252.026309] 30 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770252.231687] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770252.437109] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770252.643437] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770252.848983] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770253.054284] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421770253.259604] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421770253.465196] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770253.671588] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770253.877610] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770254.082571] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770254.289459] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770254.495419] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770254.700662] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770254.906211] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421770255.111844] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421770255.318880] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.18 ms +[1421770255.529205] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.19 ms +[1421770255.741053] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.02 ms +[1421770255.956994] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.9 ms +[1421770256.174231] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421770256.380631] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770256.587155] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770256.792911] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770257.003447] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.49 ms +[1421770257.217704] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.26 ms +[1421770257.431838] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.1 ms +[1421770257.653591] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421770257.875367] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421770258.098302] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421770258.320194] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421770258.539309] 814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421770258.768957] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.4 ms +[1421770258.992574] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421770259.216469] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421770259.422749] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770259.627967] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770259.832640] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770260.038366] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770260.243504] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770260.450881] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.56 ms +[1421770260.660409] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.64 ms +[1421770260.878994] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770261.096558] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421770261.318692] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421770261.544239] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421770261.749550] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770261.954790] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770262.160066] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770262.366771] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770262.572771] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770262.778465] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770262.985316] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421770263.190762] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770263.395782] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770263.601189] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770263.806348] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770264.011999] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770264.217391] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770264.423308] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770264.628782] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770264.834538] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770265.040535] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770265.246317] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770265.451579] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770265.656962] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770265.863092] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770266.068131] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770266.274203] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770266.479323] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770266.685276] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770266.891917] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770267.098061] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770267.303391] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770267.509332] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770267.715167] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770267.920694] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770268.126210] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770268.332247] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770268.539737] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.23 ms +[1421770268.745710] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770268.951476] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770269.158474] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.88 ms +[1421770269.364990] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770269.570651] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770269.776425] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770269.982731] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770270.189242] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770270.394113] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.01 ms +[1421770270.599531] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770270.806462] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421770271.011890] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421770271.218205] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421770271.423517] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770271.628725] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770271.843965] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421770272.058309] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421770272.272120] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.80 ms +[1421770272.484422] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.33 ms +[1421770272.697264] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.78 ms +[1421770272.921009] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421770273.145342] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421770273.371845] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421770273.653684] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.2 ms +[1421770273.872909] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.2 ms +[1421770274.098780] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421770274.318291] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421770274.607638] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.3 ms +[1421770274.826075] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421770275.108063] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.5 ms +[1421770275.385925] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.9 ms +[1421770275.614578] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421770275.843324] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421770276.048334] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770276.253680] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770276.460856] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.86 ms +[1421770276.666924] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421770276.879133] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.92 ms +[1421770277.117167] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.0 ms +[1421770277.335812] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421770277.558779] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421770277.782446] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421770278.010116] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421770278.236485] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421770278.453178] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421770278.681398] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421770278.910099] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421770279.137813] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421770279.423606] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.2 ms +[1421770279.651104] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421770279.856059] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770280.080196] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421770280.307642] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421770280.537240] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.5 ms +[1421770280.742587] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770280.947858] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770281.153029] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770281.360434] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.39 ms +[1421770281.568732] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.88 ms +[1421770281.774267] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770281.979974] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770282.185014] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770282.390879] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770282.596563] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770282.801910] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770283.007159] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770283.213631] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421770283.419057] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421770283.624219] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770283.829790] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770284.034834] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770284.240001] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770284.445161] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770284.650098] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770284.855788] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770285.060891] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770285.265992] 1261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770285.471508] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770285.676955] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770285.883236] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770286.088400] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770286.293824] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770286.499973] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770286.705028] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770286.910977] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770287.115816] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770287.320479] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770287.525610] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770287.731167] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770287.937205] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421770288.142993] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770288.349112] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770288.554524] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770288.759910] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770288.966595] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770289.173106] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770289.378368] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770289.584465] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770289.790481] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770289.995967] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770290.201497] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770300.610084] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770300.815289] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770301.020435] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770301.225752] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770301.431143] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770301.636167] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770301.841460] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770302.046504] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770302.251279] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770302.456565] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770302.663090] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421770302.869254] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770303.074561] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770303.280081] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770303.485622] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770303.691490] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770303.896819] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770304.102180] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770304.307759] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770304.514919] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.07 ms +[1421770304.720526] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770304.926142] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770305.132453] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770305.337348] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770305.542177] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770305.747411] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770305.953182] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770306.158516] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770306.364876] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770306.571005] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770306.776504] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770306.981983] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770307.187025] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770307.392553] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770307.598721] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770307.803572] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770308.008638] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770308.215000] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770308.420852] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770308.626371] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770308.831529] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770309.036504] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770309.241929] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770309.448211] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770309.654633] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421770309.860758] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770310.065738] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770310.271716] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770310.476908] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770310.683023] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770310.888377] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770311.093763] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770311.300305] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770311.505422] 161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770311.710711] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770311.916586] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770312.122695] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770312.327773] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770312.535236] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.05 ms +[1421770312.741006] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770312.946650] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421770313.152758] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770313.358751] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770313.564156] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421770313.770523] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421770313.977541] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.76 ms +[1421770314.184520] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.83 ms +[1421770314.390161] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770314.595809] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770314.801652] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770315.007705] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770315.212727] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770315.418401] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770315.623538] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770315.829636] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770316.034577] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770316.240990] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421770316.446792] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770316.652492] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770316.859046] 1888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770317.064106] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770317.269512] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770317.476013] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770317.681009] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421770317.886777] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770318.091530] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770318.296629] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770318.502031] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770318.707042] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770318.913560] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770319.118636] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770319.325159] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770319.530604] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770319.736549] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770319.941781] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770320.147200] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770320.352134] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770320.557214] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770320.762154] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770320.968049] 1133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770321.173465] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770321.378899] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770321.585739] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770321.791358] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770321.996736] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770322.205519] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.48 ms +[1421770322.417686] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.22 ms +[1421770322.635068] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421770322.876237] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.9 ms +[1421770323.090418] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.1 ms +[1421770323.314297] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421770323.540169] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421770323.745867] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770324.032789] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.5 ms +[1421770324.258743] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421770324.477319] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421770324.683873] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421770324.889794] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770325.095080] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770325.301026] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770325.506483] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770325.711702] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770325.918076] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421770326.123483] 1072 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770326.328979] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770326.534129] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770326.739316] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770326.945240] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.93 ms +[1421770327.155844] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.58 ms +[1421770327.391536] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.7 ms +[1421770327.642256] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.5 ms +[1421770327.906666] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.4 ms +[1421770328.111987] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770328.317252] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770328.522835] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770328.729623] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.03 ms +[1421770328.938656] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.36 ms +[1421770329.152790] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.80 ms +[1421770329.371341] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421770329.592939] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421770329.867095] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.0 ms +[1421770330.089807] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421770330.317586] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421770330.600652] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.8 ms +[1421770330.828258] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421770331.103524] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.3 ms +[1421770331.331591] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421770331.559728] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421770331.788840] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421770332.076967] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.8 ms +[1421770332.304695] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421770332.534342] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421770332.745600] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.09 ms +[1421770332.951258] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770333.157212] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770333.364771] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.45 ms +[1421770333.574716] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.49 ms +[1421770333.790604] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421770334.007441] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421770334.270832] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.1 ms +[1421770334.490673] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421770334.774159] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.4 ms +[1421770335.002553] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421770335.229215] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421770335.455903] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421770335.681028] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421770335.888103] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421770336.107369] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421770336.332191] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421770336.563704] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.0 ms +[1421770336.769605] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770336.974956] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770337.180537] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421770337.387000] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770337.592673] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770337.797979] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770338.004537] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770338.210168] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770338.415458] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770338.622011] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770338.827620] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770339.033419] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770339.239097] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770339.444515] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770339.651436] 1175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421770339.871089] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421770340.099622] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421770340.305872] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770340.510917] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770340.716149] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770340.921964] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770341.129116] 1156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.00 ms +[1421770341.353509] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421770341.566679] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.94 ms +[1421770341.784871] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421770342.006759] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421770342.230827] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421770342.437375] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770342.643861] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770342.850007] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770343.054814] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770343.259867] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770343.465452] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770343.672444] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.80 ms +[1421770343.879224] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.67 ms +[1421770344.085499] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770344.291663] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770344.497005] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770344.702230] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770344.907769] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770345.112686] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770345.319371] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770345.525615] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770345.731733] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770345.937569] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770346.143390] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770346.348574] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770346.554822] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770346.760114] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770346.965323] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770347.170294] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770347.375708] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770347.584057] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770347.790869] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770347.996311] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770348.201863] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770348.407142] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770348.612451] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770348.818696] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770349.023830] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770349.228982] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770349.433869] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770349.639741] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770349.845269] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770350.050502] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770350.255793] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770350.462206] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770350.668635] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770350.874318] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770351.079685] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770351.285875] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770351.492291] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770351.697630] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770351.903017] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770352.108869] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421770352.314741] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770352.521223] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770352.726707] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770352.932125] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770353.137616] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770353.342896] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770353.548310] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770353.754045] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770353.961404] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.83 ms +[1421770354.167770] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770354.374594] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.75 ms +[1421770354.580018] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770354.785201] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770354.990729] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770355.195892] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770355.401622] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770355.606563] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770355.813487] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770356.018480] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770356.223858] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770356.429484] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770356.634772] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770356.840895] 1913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770357.045746] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770357.252163] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770357.457491] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770357.663213] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770357.869817] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770358.074902] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770358.280591] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770358.485969] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770358.691577] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770358.896945] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770359.102178] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770359.307220] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770359.512768] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770359.718558] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770359.924468] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421770360.129659] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770360.335718] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770360.542132] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770360.747723] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770360.952914] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770361.158292] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770361.363768] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770361.568814] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770361.774001] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770361.979802] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770362.185594] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770362.391069] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770362.596463] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770362.802972] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770363.007968] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770363.213325] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770363.418743] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770363.625042] 1566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770363.831008] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770364.035867] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770364.240996] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770364.447942] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421770364.653473] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770364.860321] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770365.066488] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770365.272816] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770365.478506] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770365.684334] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770365.896818] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.19 ms +[1421770366.101696] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770366.306785] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770366.512246] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770366.718698] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770366.923973] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770367.129191] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770367.334254] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770367.540815] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770367.747223] 1984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770367.952696] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770368.157945] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770368.363999] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770368.569529] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770368.774845] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770368.981218] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770369.187716] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770369.392927] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770369.598136] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770369.803738] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770370.008503] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770370.213559] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770370.419912] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421770370.625603] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770370.831064] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770371.037350] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421770371.242253] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770371.447653] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770371.653634] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770371.860035] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770372.064967] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770372.270045] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770372.476522] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421770372.681780] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770372.887773] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770373.094254] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.91 ms +[1421770373.320155] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421770373.553102] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.8 ms +[1421770373.765923] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.74 ms +[1421770373.988498] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421770374.211831] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421770374.495392] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.4 ms +[1421770374.722009] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421770374.949811] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421770375.235234] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.0 ms +[1421770375.463874] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421770375.692580] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421770375.897800] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770376.102730] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770376.308037] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421770376.517649] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.64 ms +[1421770376.731461] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.31 ms +[1421770376.946607] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421770377.160299] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.79 ms +[1421770377.381006] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421770377.650540] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=65.4 ms +[1421770377.932793] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.2 ms +[1421770378.156790] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421770378.376841] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421770378.594479] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421770378.799796] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770379.004589] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770379.210819] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421770379.416074] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770379.621291] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770379.826507] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770380.031338] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770380.236518] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770380.441733] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770380.647600] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770380.853474] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770381.058179] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770381.263075] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770381.469601] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770381.674695] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770381.881403] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770382.086146] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770382.292194] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770382.497742] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770382.702903] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770382.908596] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770383.113764] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770383.319146] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770383.524763] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770383.730630] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770383.935900] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770384.141783] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770384.346823] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770384.552187] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770384.757620] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770384.963315] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770385.168461] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770385.373648] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770385.579198] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770385.784869] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770385.990490] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770386.195420] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770386.401110] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770386.607739] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770386.813419] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770387.019204] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770387.225570] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770387.431190] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770387.637007] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770387.843244] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770388.049095] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770388.254329] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770388.459241] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770388.664900] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421770388.870769] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770389.076803] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770389.282078] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770389.487451] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770389.693004] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770389.899273] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770390.104904] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770390.310970] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421770390.516890] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770390.723332] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770390.928768] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770391.135025] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770391.340515] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770391.546400] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770391.753217] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770391.958928] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421770392.164075] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770392.370286] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421770392.576931] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421770392.782091] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770392.987938] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770393.195130] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.03 ms +[1421770393.401660] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421770393.607213] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770393.813215] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.94 ms +[1421770394.018145] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770394.224010] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770394.429226] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770394.636464] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770394.842743] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770395.048262] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770395.253391] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770395.459626] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421770395.664951] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770395.870108] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770396.074890] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770396.280155] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770396.486163] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770396.691736] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770396.898386] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770397.103654] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770397.308856] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770397.514485] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770397.720017] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770397.925023] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770398.131032] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770398.337132] 1880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770398.542630] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770398.748760] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770398.954282] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770399.160893] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770399.366046] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770399.571887] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770399.777582] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770399.984494] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.67 ms +[1421770400.191138] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421770400.397122] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770400.602211] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770400.808690] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770401.014474] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770401.220473] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770401.425936] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770401.631000] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770401.837410] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770402.042702] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770402.248055] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770402.453940] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770402.659260] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770402.864183] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770403.069310] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770403.274528] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770403.480646] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770403.686819] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770403.892423] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770404.099000] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421770404.304087] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770404.509661] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770404.715353] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770404.920832] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770405.126430] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770405.331582] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770405.538055] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770405.743746] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770405.949215] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770406.154593] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770406.360967] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770406.566419] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770406.771827] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770406.977154] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770407.182384] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770407.387460] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770407.592685] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770407.798877] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770408.004907] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770408.210318] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770408.416768] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421770408.622188] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770408.827757] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770409.033249] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770409.238783] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770409.443935] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770409.649160] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770409.854678] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770410.059611] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770410.265586] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770410.471965] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770410.677288] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770410.883115] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421770411.088489] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770411.294673] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770411.500653] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770411.706080] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770411.911625] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770412.116748] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770412.322869] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770412.528058] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770412.734916] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770412.940178] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770413.146741] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770413.352254] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770413.558050] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421770413.763337] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770413.968621] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770414.175108] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770414.380698] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770414.586490] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770414.791878] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770414.998460] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770415.204196] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770415.409770] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770415.615666] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770415.821070] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770416.025646] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421770416.230823] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770416.435638] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770416.641648] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770416.846716] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770417.051660] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770417.257920] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770417.464849] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770417.670731] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770417.876525] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770418.081608] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770418.286497] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770418.491492] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770418.697874] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770418.903081] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770419.109081] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770419.314356] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770419.519619] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770419.726399] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770419.932632] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421770420.138059] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770420.344283] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770420.550269] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770420.756196] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770420.961769] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770421.170793] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.98 ms +[1421770421.376181] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770421.582703] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770421.788484] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770421.994341] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770422.199909] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770422.405332] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770422.610852] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770422.815886] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770423.021655] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421770423.226979] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770423.433201] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421770423.639598] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421770423.845173] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770424.049746] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770424.254377] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770424.459740] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770424.665483] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770424.871324] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770425.076392] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770425.281558] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770425.487844] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770425.694323] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421770425.899935] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770426.105736] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770426.311909] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770426.517324] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770426.722313] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770426.928727] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770427.134220] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770427.340489] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770427.546069] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770427.751395] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770427.957191] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770428.162730] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770428.367704] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770428.573816] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770428.781034] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.99 ms +[1421770428.987093] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.95 ms +[1421770429.192687] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770429.399216] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770429.605277] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770429.811516] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770430.016592] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770430.221998] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770430.427313] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770430.632732] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770430.837758] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770431.042740] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770431.247903] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770431.453373] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770431.658716] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770431.863550] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770432.069154] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770432.274238] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421770432.480383] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770432.685683] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770432.891407] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770433.096756] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770433.302716] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770433.509302] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770433.715078] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770433.921045] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770434.126198] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770434.331961] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770434.538818] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770434.743885] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770434.949501] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421770435.155121] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770435.361147] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770435.566666] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421770435.771848] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770435.978247] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421770436.183795] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770436.388953] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770436.594280] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770436.800097] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770437.005515] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770437.210929] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770437.416058] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770437.622225] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770437.827479] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770438.032187] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770438.237319] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770438.442917] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770438.648547] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770438.854624] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770439.060804] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770439.265891] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770439.472290] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421770439.677878] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770439.883435] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770440.088988] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770440.294285] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770440.499783] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770440.705239] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770440.910467] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421770441.116399] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770441.321802] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770441.526854] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770441.732544] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770441.938023] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770442.143968] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770442.349531] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770442.555265] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770442.761560] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770442.966718] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770443.173467] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421770443.378971] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770443.584437] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770443.789824] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770443.995700] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770444.202331] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770444.408466] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770444.613357] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770444.819546] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770445.024774] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770445.229911] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770445.435360] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770445.640793] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770445.847137] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770446.052130] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770446.257040] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770446.462131] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770446.667445] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770446.874432] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770447.081217] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.86 ms +[1421770447.286588] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770447.492373] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770447.697622] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770447.904172] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770448.109839] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770448.315223] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770448.520531] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770448.725955] 555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770448.932268] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421770449.137414] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770449.344315] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.88 ms +[1421770449.549448] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770449.773970] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421770449.990841] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421770450.203557] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.72 ms +[1421770450.422636] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421770450.646550] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421770450.870473] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421770451.075241] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770451.280227] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770451.486641] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770451.694866] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.56 ms +[1421770451.905053] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.73 ms +[1421770452.118306] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.53 ms +[1421770452.330297] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.70 ms +[1421770452.547788] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421770452.767618] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421770453.045473] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.0 ms +[1421770453.250993] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770453.471009] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421770453.676684] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770453.883260] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421770454.088465] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770454.293554] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770454.503208] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.62 ms +[1421770454.736368] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.1 ms +[1421770454.951723] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421770455.204902] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.5 ms +[1421770455.421738] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421770455.627520] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770455.832838] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770456.038176] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421770456.243437] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770456.449011] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770456.654726] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770456.860822] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770457.066177] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770457.272678] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770457.477592] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770457.682971] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770457.889096] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770458.094822] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770458.299993] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770458.505432] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770458.710399] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770458.916762] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770459.122314] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770459.328270] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770459.533389] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770459.738730] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770459.945000] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770460.151257] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770460.357215] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421770460.562485] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770460.767840] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770460.973460] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770461.179269] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770461.386304] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770461.591927] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770461.797256] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770462.002644] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770462.208006] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770462.413230] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770462.618458] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770462.824136] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770463.030022] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770463.235000] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770463.440428] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770463.647025] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770463.852825] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770464.057313] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770464.263642] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421770464.477036] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.26 ms +[1421770464.681776] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770464.887042] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770465.092958] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770465.298393] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770465.503836] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770465.709243] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770465.914303] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770466.119369] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770466.325924] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770466.532565] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770466.739009] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770466.944195] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770467.149493] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770467.354973] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770467.560831] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770467.767106] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770467.972080] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770468.178078] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770468.384125] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770468.589971] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770468.796161] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421770469.002186] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770469.207675] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770469.413138] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770469.618941] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770469.823819] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770470.028972] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770470.234439] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770470.441042] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770470.647750] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770470.853214] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770471.058111] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770471.263761] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770471.470255] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770471.676634] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770471.883387] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770472.088801] 1026 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770472.293962] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770472.499594] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770472.705430] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770472.910936] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770473.117787] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421770473.323103] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770473.528447] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770473.733568] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770473.938749] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770474.144667] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770474.349928] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770474.555019] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770474.761532] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770474.966519] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770475.171410] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770475.376653] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770475.583619] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.74 ms +[1421770475.789711] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770475.995483] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770476.201048] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770476.406461] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770476.612850] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770476.818236] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770477.023927] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770477.229323] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770477.434674] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770477.640383] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770477.846419] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770478.051029] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770478.255995] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770478.461777] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770478.667229] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770478.874158] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770479.079297] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770479.284057] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770479.489193] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770479.694574] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770479.900028] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770480.106423] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421770480.312736] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770480.517824] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770480.723206] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770480.929476] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770481.134856] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770481.340570] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770481.546307] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770481.752082] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770481.957771] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770482.163187] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770482.368841] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770482.574490] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770482.779835] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770482.986205] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770483.191914] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770483.397135] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770483.602823] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770483.808101] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770484.012718] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770484.218788] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770484.425145] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421770484.630513] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770484.836046] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770485.040862] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770485.246030] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770485.450870] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770485.657328] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770485.862511] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770486.068329] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770486.273589] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770486.478701] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770486.683952] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770486.889468] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770487.094532] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770487.299688] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770487.504515] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770487.710342] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770487.916331] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770488.121387] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770488.326704] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770488.532307] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770488.738282] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770488.943084] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770489.148193] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770489.353417] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770489.558649] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770489.763731] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770489.968336] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770490.172970] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770490.378194] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770490.586554] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.40 ms +[1421770490.792219] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770490.998562] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770491.203978] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770491.410186] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770491.616217] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770491.821408] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770492.027178] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770492.232318] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770492.437681] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770492.643350] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770492.848571] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770493.054485] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770493.259894] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770493.465424] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770493.671201] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770493.876682] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770494.083147] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421770494.303867] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421770494.530959] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421770494.816084] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.7 ms +[1421770495.021269] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770495.226094] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770495.431178] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770495.636445] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770495.843101] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421770496.048519] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770496.253558] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421770496.459244] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421770496.663999] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770496.868820] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770497.073542] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770497.278412] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770497.483894] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770497.689460] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770497.895142] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770498.101462] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770498.306779] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770498.512206] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770498.718265] 1566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770498.923730] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770499.129311] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770499.335433] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770499.540940] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770499.746695] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770499.951880] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770500.157156] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770500.362912] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770500.568777] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770500.774424] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770500.979864] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770501.185188] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770501.391124] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770501.595813] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770501.802342] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770502.007290] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770502.213110] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770502.417967] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770502.622397] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770502.828157] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421770503.035174] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770503.241799] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770503.447297] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770503.653294] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770503.859579] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.05 ms +[1421770504.065519] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770504.270817] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421770504.475479] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770504.680111] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770504.889711] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770505.097961] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770505.303076] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770505.507749] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770505.712278] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770505.917814] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421770506.123082] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770506.328000] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770506.533218] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770506.746095] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.92 ms +[1421770506.951739] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770507.156666] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770507.361946] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770507.567822] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770507.773150] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770507.978631] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770508.185318] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770508.391833] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770508.597159] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770508.803350] 1870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770509.008966] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770509.214255] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770509.420597] 1612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770509.625304] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770509.830899] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770510.036733] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770510.241676] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770510.446728] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770510.653160] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770510.858595] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770511.065213] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421770511.270899] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770511.475829] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770511.681220] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770511.886707] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770512.091743] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770512.297240] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770512.503299] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.92 ms +[1421770512.710748] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.05 ms +[1421770512.916046] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770513.121745] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421770513.327257] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770513.533811] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770513.739827] 1133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770513.945837] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421770514.151640] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770514.357649] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770514.563385] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770514.769109] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421770514.974125] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770515.179942] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770515.384397] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770515.589212] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770515.795054] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770516.001360] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421770516.207081] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770516.412638] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770516.618335] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770516.823499] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770517.028187] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770517.234614] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770517.439620] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770517.645020] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770517.850040] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770518.055012] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770518.259688] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770518.464906] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770518.670099] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770518.876604] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770519.082319] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770519.286999] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770519.491872] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770519.697654] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421770519.903372] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421770520.110090] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.96 ms +[1421770520.315557] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770520.520904] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770520.726657] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770520.932025] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770521.139054] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.79 ms +[1421770521.344575] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770521.549978] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770521.755342] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770521.960428] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770522.171410] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.61 ms +[1421770522.376026] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770522.580615] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770522.786854] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770522.993334] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770523.198816] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421770523.404026] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770523.610790] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.72 ms +[1421770523.816393] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770524.022556] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421770524.228254] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770524.433267] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770524.639400] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770524.845148] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770525.050272] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770525.255470] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770525.461532] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770525.667283] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770525.880842] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.26 ms +[1421770526.093410] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.33 ms +[1421770526.298744] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770526.505590] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770526.730646] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421770526.935733] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770527.140762] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770527.346003] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770527.551422] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770527.757829] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770527.964415] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770528.169094] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770528.374390] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770528.579949] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770528.785624] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770528.992069] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421770529.198612] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.69 ms +[1421770529.404968] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770529.611211] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770529.817580] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421770530.024012] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770530.229013] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770530.433988] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770530.638761] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770530.844426] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770531.049379] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770531.254062] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770531.459338] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770531.664785] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770531.871261] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770532.077152] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770532.281924] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770532.488184] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770532.693812] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421770532.898649] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770533.103284] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770533.308119] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770533.512830] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770533.717869] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770533.923426] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770534.128943] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770534.334913] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770534.540172] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770534.745397] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770534.950482] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770535.156173] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770535.361418] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770535.567257] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770535.773199] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770535.978834] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421770536.192670] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421770536.397764] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770536.602552] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770536.808269] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770537.013189] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770537.219461] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770537.424899] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770537.630186] 1075 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770537.835473] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770538.040629] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770538.247293] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770538.453257] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770538.659462] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770538.865893] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770539.071798] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770539.277225] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770539.482660] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770539.689496] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770539.895222] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770540.101724] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770540.306828] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770540.512353] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421770540.717286] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770540.922599] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770541.128144] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770541.334590] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421770541.539338] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770541.744676] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770541.949937] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770542.155068] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770542.360209] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770542.565454] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770542.770582] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770542.976534] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770543.182069] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770543.388888] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.81 ms +[1421770543.594657] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770543.800717] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770544.005780] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770544.211689] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770544.416958] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770544.622277] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770544.828047] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770545.033178] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770545.238383] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770545.443144] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770545.647902] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770545.853247] 1075 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770546.058590] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770546.263405] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770546.468585] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770546.673496] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770546.878797] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770547.083776] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770547.289865] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770547.495017] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770547.700017] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770547.904907] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770548.109825] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770548.315992] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770548.521353] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770548.727670] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770548.933021] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770549.138439] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770549.343637] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770549.548735] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770549.755069] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421770549.960779] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770550.167524] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770550.372393] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421770550.577664] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770550.786909] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.45 ms +[1421770550.993547] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770551.218840] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421770551.424034] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421770551.632359] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.53 ms +[1421770551.837718] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770552.044048] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770552.250320] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770552.455409] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770552.660705] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770552.865682] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770553.070537] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770553.275372] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770553.480576] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770553.686995] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770553.892301] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770554.097624] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770554.303096] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770554.508297] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770554.713583] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770554.920261] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770555.126093] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770555.331583] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770555.537047] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421770555.742909] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770555.948991] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770556.155411] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770556.360571] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770556.565937] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770556.771939] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.87 ms +[1421770556.979096] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.85 ms +[1421770557.184645] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770557.389721] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770557.595931] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770557.802512] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770558.009258] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770558.214543] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770558.419529] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770558.624793] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770558.831169] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770559.037672] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421770559.242979] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770559.448830] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770559.654357] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770559.859328] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770560.065005] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770560.270293] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770560.475529] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770560.681337] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770560.887861] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770561.093433] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770561.300261] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770561.505375] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770561.710712] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770561.915593] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770562.120707] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770562.325877] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770562.530947] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770562.736648] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770562.941555] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770563.147651] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421770563.352471] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770563.557198] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770563.763177] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770563.968008] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770564.172762] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770564.378116] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770564.583405] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770564.788853] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770564.993896] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770565.198817] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770565.405333] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770565.611243] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770565.816528] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770566.021670] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770566.227720] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770566.433506] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770566.639946] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770566.845522] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770567.050763] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770567.256039] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770567.461144] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770567.666195] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770567.871951] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770568.077330] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770568.282393] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770568.487826] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770568.694317] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770568.899953] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770569.105643] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770569.310842] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770569.517278] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770569.723784] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770569.930083] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770570.134782] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770570.341077] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770570.546128] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770570.751486] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770570.956570] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770571.162012] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770571.368410] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770571.574426] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770571.780117] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770571.986864] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421770572.193541] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421770572.402432] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.43 ms +[1421770572.612509] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.40 ms +[1421770572.853501] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.9 ms +[1421770573.109412] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.7 ms +[1421770573.331704] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421770573.559246] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421770573.778775] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770573.984988] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421770574.191052] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770574.396332] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770574.602047] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770574.808764] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770575.014282] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770575.220050] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770575.424853] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770575.630224] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770575.837273] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.93 ms +[1421770576.055762] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421770576.288957] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.7 ms +[1421770576.499172] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.19 ms +[1421770576.718106] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421770576.942421] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421770577.166008] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421770577.392428] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421770577.597992] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770577.803683] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770578.012888] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.69 ms +[1421770578.222610] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.78 ms +[1421770578.462559] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.0 ms +[1421770578.679283] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421770578.885635] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770579.091056] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770579.296072] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770579.501336] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770579.707037] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770579.913666] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421770580.120234] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770580.325362] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770580.530197] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770580.735218] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770580.940114] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770581.146276] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770581.352240] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770581.557669] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770581.763200] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770581.968715] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770582.175564] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770582.380900] 296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770582.585854] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770582.790829] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770582.996062] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770583.201813] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421770583.407345] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421770583.613661] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770583.818741] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770584.023791] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770584.229088] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770584.434068] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770584.640316] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770584.845925] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770585.051277] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770585.256270] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421770585.461774] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770585.667295] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770585.873749] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770586.079136] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770586.283942] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770586.488641] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770586.694796] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770586.900257] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770587.106618] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770587.311225] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770587.516499] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770587.721315] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770587.926249] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770588.132388] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770588.337332] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770588.543612] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770588.749702] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770588.955722] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770589.160910] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770589.367073] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421770589.572836] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770589.778409] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770589.984122] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770590.189293] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770590.395035] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770590.600472] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770590.805136] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770591.009958] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770591.215201] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770591.420073] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770591.625190] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770591.831485] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770592.037195] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770592.242615] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770592.448473] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770592.654236] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770592.860560] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770593.067000] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770593.271946] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770593.477017] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770593.683342] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770593.888838] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770594.093447] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770594.298639] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770594.503652] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770594.709942] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770594.915962] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421770595.121565] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770595.327219] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770595.533041] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770595.738735] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770595.945110] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421770596.151614] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770596.356831] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770596.562439] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770596.767830] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770596.973235] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770597.179010] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770597.385838] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770597.591404] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770597.797174] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770598.003468] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770598.208748] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770598.414647] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770598.621170] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421770598.826242] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770599.031332] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770599.237500] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770599.443952] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770599.651070] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421770599.856947] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770600.061931] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770600.266879] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770600.473624] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770600.679202] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770600.884561] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770601.090832] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770601.296110] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770601.502196] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770601.707099] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770601.912083] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770602.117228] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770602.322048] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770602.529995] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.08 ms +[1421770602.735706] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770602.941232] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770603.146697] 1063 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770603.352370] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421770603.558761] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770603.763959] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770603.969401] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770604.175876] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770604.380873] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770604.586013] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770604.790757] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770604.995566] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770605.200676] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770605.406365] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421770605.611786] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770605.817023] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770606.021980] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770606.227646] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770606.433086] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770606.639074] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770606.845863] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770607.050368] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770607.255386] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770607.460721] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770607.665795] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770607.870897] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770608.075400] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770608.281847] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421770608.487562] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770608.693013] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770608.898549] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770609.103637] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770609.308661] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770609.514232] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770609.719401] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770609.925771] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770610.131298] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770610.336751] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770610.542400] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770610.748667] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770610.955008] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770611.160880] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421770611.366973] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770611.572244] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770611.777834] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770611.983811] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770612.190220] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770612.395881] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770612.601740] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770612.807551] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770613.012933] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770613.218226] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770613.423263] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770613.628050] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770613.834201] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770614.039516] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770614.244653] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770614.451130] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770614.657010] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770614.863771] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770615.068734] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770615.273553] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770615.478992] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770615.685488] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770615.890552] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770616.096299] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770616.301010] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770616.505715] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770616.710385] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770616.915076] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770617.120856] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421770617.326252] 847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421770617.531987] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421770617.737217] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421770617.942545] 1261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770618.147698] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770618.352706] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770618.557802] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770618.762784] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770618.968826] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421770619.173897] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770619.379272] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770619.584221] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770619.788988] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770619.993875] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770620.198827] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770620.404195] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770620.609774] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421770620.815567] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770621.020686] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770621.226082] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770621.432279] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770621.638618] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770621.845221] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770622.050947] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770622.256350] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770622.462563] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770622.668650] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770622.873833] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770623.079688] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770623.285089] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770623.490553] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770623.695917] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770623.901210] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770624.107073] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770624.313363] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770624.518171] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770624.722766] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770624.927894] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770625.133338] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770625.339808] 1888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770625.545221] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770625.750365] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770625.955398] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770626.160610] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770626.365704] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770626.571215] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770626.778203] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421770626.983511] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770627.188634] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770627.393911] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770627.598650] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770627.803802] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770628.009373] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770628.214786] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770628.420477] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770628.625568] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770628.831052] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770629.035560] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770629.240536] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770629.446669] 1913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770629.652970] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770629.858244] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770630.064184] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770630.268818] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770630.474188] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770630.679201] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770630.884190] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770631.088944] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770631.294634] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770631.500912] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770631.706037] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770631.911134] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770632.115977] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770632.321120] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770632.526294] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770632.732529] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770632.938816] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770633.143806] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770633.350401] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421770633.556220] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421770633.762784] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770633.968103] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770634.173023] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770634.378613] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770634.585083] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421770634.791311] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770634.997210] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421770635.202030] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770635.407480] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770635.613947] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770635.819009] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770636.023753] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770636.228900] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770636.434573] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770636.640930] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770636.846163] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770637.052088] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770637.257210] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770637.463242] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770637.668526] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770637.873437] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770638.078671] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770638.284502] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770638.496816] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.21 ms +[1421770638.701978] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770638.908199] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770639.114643] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770639.320473] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421770639.525411] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770639.750476] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421770639.955726] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770640.164163] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.77 ms +[1421770640.369673] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770640.596479] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421770640.802195] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770641.007809] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770641.213345] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770641.419126] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770641.624807] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770641.829800] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770642.035468] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421770642.241567] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770642.447142] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770642.653195] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770642.861408] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.07 ms +[1421770643.083567] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421770643.329712] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.2 ms +[1421770643.542078] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.20 ms +[1421770643.752354] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770643.958196] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770644.163429] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770644.368516] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770644.574675] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770644.779702] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770644.984491] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770645.189418] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770645.394983] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770645.601318] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421770645.814049] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.36 ms +[1421770646.027531] 814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.85 ms +[1421770646.240309] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.72 ms +[1421770646.445851] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770646.651020] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770646.863320] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.25 ms +[1421770647.068711] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770647.273353] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770647.479730] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770647.686273] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770647.891976] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770648.097522] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770648.303195] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770648.508964] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770648.713983] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770648.919239] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770649.124882] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770649.331184] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770649.537850] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770649.744077] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421770649.950601] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770650.155751] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770650.361039] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770650.566449] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770650.771957] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770650.976832] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770651.181743] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770651.387066] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770651.591927] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770651.797157] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770652.001924] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770652.206843] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770652.412113] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770652.618544] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770652.823963] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770653.029124] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770653.234324] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770653.439997] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770653.645328] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770653.851479] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770654.057623] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770654.263681] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770654.468989] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770654.675318] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770654.880213] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770655.084967] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770655.290353] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770655.496879] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770655.702508] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770655.908619] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770656.114345] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.93 ms +[1421770656.319250] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770656.524621] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770656.729824] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770656.934973] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770657.140559] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770657.345644] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770657.550953] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770657.757461] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770657.962764] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770658.168856] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770658.374028] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770658.578892] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770658.785163] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770658.990424] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770659.195557] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770659.401503] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770659.607313] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770659.813214] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770660.019400] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770660.225078] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770660.429822] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770660.636225] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.69 ms +[1421770660.841290] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770661.046102] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770661.251260] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770661.457270] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770661.662418] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770661.867472] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770662.073794] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421770662.279112] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421770662.484433] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770662.689671] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770662.894824] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770663.100505] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770663.305892] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770663.511142] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770663.716738] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770663.922906] 1716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770664.130113] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770664.337667] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421770664.544370] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770664.750711] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421770664.956298] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770665.161630] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770665.366571] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770665.571840] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770665.777487] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770665.984184] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770666.190984] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770666.397709] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421770666.604412] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770666.809870] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770667.015216] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770667.220698] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770667.425872] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770667.631511] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770667.836859] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770668.043674] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421770668.250134] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770668.455173] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770668.660720] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770668.866179] 837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770669.071285] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770669.276620] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770669.481693] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770669.687091] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770669.893706] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770670.100302] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770670.305308] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770670.510442] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770670.715673] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770670.920954] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770671.126649] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770671.332331] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770671.537912] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770671.743170] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770671.948706] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770672.155467] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770672.360694] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770672.567475] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770672.774084] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770672.979562] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770673.184975] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770673.390584] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770673.595939] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770673.803696] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.46 ms +[1421770674.009104] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770674.214540] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770674.420389] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770674.624952] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770674.829872] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770675.035104] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770675.240218] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770675.446092] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770675.651588] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770675.856966] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770676.061484] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770676.266504] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770676.471853] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770676.677047] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770676.882512] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770677.089234] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770677.295375] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770677.501227] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770677.706963] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770677.913316] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421770678.118820] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770678.324729] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421770678.530406] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770678.735829] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770678.942137] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770679.147535] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770679.352799] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770679.583704] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.8 ms +[1421770679.788822] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770679.993899] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421770680.206987] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.83 ms +[1421770680.412350] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770680.670318] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=53.9 ms +[1421770680.916803] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.3 ms +[1421770681.125785] 904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.36 ms +[1421770681.331241] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770681.543955] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.32 ms +[1421770681.750242] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421770681.956050] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770682.161102] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770682.365815] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770682.572708] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.78 ms +[1421770682.778183] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770682.987062] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.07 ms +[1421770683.192621] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770683.398686] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421770683.604716] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770683.811203] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770684.017790] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770684.222774] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770684.429003] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770684.635223] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770684.840919] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770685.046257] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770685.252256] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770685.457598] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770685.678682] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421770685.884047] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421770686.089767] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770686.295278] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770686.501280] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770686.706791] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770686.920820] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.87 ms +[1421770687.157167] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.5 ms +[1421770687.362169] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770687.567681] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770687.773118] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770687.994303] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421770688.199697] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770688.417114] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421770688.623167] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770688.828484] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770689.033028] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770689.238218] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770689.443472] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770689.649880] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770689.856526] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770690.061710] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770690.267665] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770690.472843] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770690.678506] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770690.883675] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770691.089320] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770691.294993] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770691.501583] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770691.708218] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770691.913658] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770692.119083] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770692.323939] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421770692.529168] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770692.734788] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770692.941050] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421770693.149142] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.87 ms +[1421770693.354450] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770693.560421] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770693.767040] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770693.972175] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770694.177559] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770694.383770] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770694.589442] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770694.795407] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770695.002772] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.72 ms +[1421770695.208480] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770695.414027] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770695.619709] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770695.825227] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770696.030216] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770696.235692] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770696.440679] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770696.645840] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770696.851858] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421770697.056949] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770697.262112] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770697.467608] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770697.673096] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770697.878589] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770698.083590] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770698.289014] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770698.495443] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770698.701808] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770698.908884] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770699.114868] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770699.319915] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770699.525136] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770699.730203] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770699.936559] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770700.141622] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770700.347969] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770700.553646] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770700.759364] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770700.965319] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770701.170821] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770701.380720] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.89 ms +[1421770701.586936] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421770701.791930] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770701.998339] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770702.204030] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770702.409384] 1049 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770702.615264] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770702.820645] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770703.025984] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770703.231367] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770703.437083] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770703.642565] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770703.847885] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770704.053092] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770704.258448] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770704.464917] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770704.670696] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770704.876328] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770705.081005] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770705.286385] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770705.492259] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770705.698957] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770705.905192] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770706.110666] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770706.315877] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770706.522590] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770706.728206] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770706.933848] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770707.138926] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770707.344220] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770707.549480] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770707.755491] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770707.961296] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770708.167339] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770708.372509] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770708.578867] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770708.786298] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.94 ms +[1421770708.993025] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770709.198800] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770709.408118] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.58 ms +[1421770709.613571] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770709.819759] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770710.026433] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421770710.232713] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770710.437913] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770710.649911] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.02 ms +[1421770710.854881] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770711.060783] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770711.266206] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770711.471315] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770711.676787] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770711.882668] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770712.087959] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770712.292955] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770712.498307] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770712.703999] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770712.909813] 837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770713.115448] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770713.321604] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421770713.526885] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770713.731905] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770713.937200] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770714.142486] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770714.348414] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770714.553452] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770714.758714] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770714.964087] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770715.168892] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770715.374538] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770715.580911] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770715.786362] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770715.991934] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770716.197319] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770716.402472] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770716.607928] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770716.814387] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770717.019089] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770717.225403] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421770717.431799] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770717.636948] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770717.842727] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770718.048084] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770718.253667] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770718.459649] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770718.665344] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770718.871869] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770719.076870] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770719.282087] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770719.487178] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770719.692318] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770719.897371] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770720.101964] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770720.307032] 555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770720.513119] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770720.718510] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770720.924581] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770721.129047] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421770721.334470] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770721.539670] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770721.745515] 1021 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421770721.950842] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770722.155922] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770722.360852] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770722.565709] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770722.770927] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770722.976471] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770723.181811] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770723.386802] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770723.591687] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770723.796745] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770724.003296] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770724.208558] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770724.413762] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770724.619897] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770724.826319] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421770725.031398] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770725.236543] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770725.442092] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770725.647444] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770725.853815] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770726.058990] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770726.264221] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770726.469591] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770726.675471] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770726.880613] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770727.086393] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770727.291617] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770727.497134] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770727.703102] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770727.908899] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770728.114681] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770728.319975] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770728.525663] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770728.731564] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770728.937708] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770729.144154] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770729.350164] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770729.555524] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770729.761047] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770729.967264] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770730.172735] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770730.377769] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770730.583756] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770730.789476] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770730.995367] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421770731.200487] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770731.406294] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770731.612058] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770731.817879] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770732.022874] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770732.229103] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770732.435281] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770732.640559] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770732.845993] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770733.050578] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770733.255769] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770733.461279] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770733.668354] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770733.873856] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770734.079232] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770734.284140] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770734.489692] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770734.695227] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770734.901504] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421770735.107823] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770735.313083] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770735.518183] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770735.723558] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770735.930131] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770736.135620] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770736.340761] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770736.547665] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770736.753718] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770736.960234] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770737.165015] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770737.370169] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770737.575413] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770737.780905] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770737.986337] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770738.191853] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770738.397434] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770738.603422] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770738.811128] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.28 ms +[1421770739.017412] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770739.223000] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770739.428588] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770739.634150] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770739.840735] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770740.046644] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421770740.251511] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770740.456752] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770740.663489] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770740.868912] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770741.073686] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770741.278806] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770741.484309] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770741.690755] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770741.914424] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421770742.120077] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770742.326095] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770742.530931] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770742.737699] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.95 ms +[1421770742.945360] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.81 ms +[1421770743.150377] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770743.355676] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770743.603844] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.3 ms +[1421770743.819369] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421770744.060425] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=37.6 ms +[1421770744.278265] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421770744.491041] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.24 ms +[1421770744.696126] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770744.900907] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421770745.107196] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770745.312249] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770745.517416] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770745.722655] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770745.928646] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770746.141476] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.48 ms +[1421770746.353732] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.16 ms +[1421770746.559354] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770746.764791] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770746.970330] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770747.175489] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770747.385662] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.36 ms +[1421770747.590866] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770747.796689] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770748.001813] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770748.207080] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770748.421325] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421770748.626202] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770748.831674] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770749.036150] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770749.241212] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770749.446644] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770749.652593] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770749.857794] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421770750.062514] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770750.267213] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770750.472278] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770750.677756] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770750.883265] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770751.088523] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770751.293878] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770751.499668] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770751.711457] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.30 ms +[1421770751.916845] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770752.122148] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770752.327282] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770752.533696] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770752.738869] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770752.943315] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770753.149468] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770753.355442] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421770753.560814] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770753.766065] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770753.971320] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770754.177329] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770754.382631] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770754.587586] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770754.792910] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770754.998067] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770755.204350] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421770755.410072] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770755.615262] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770755.822167] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421770756.027437] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770756.233555] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770756.439126] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770756.644359] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770756.851281] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770757.056573] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770757.262070] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770757.467075] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770757.672135] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770757.877337] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770758.083634] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770758.288743] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770758.493714] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770758.699816] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770758.905166] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770759.110435] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770759.315658] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770759.521208] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770759.727902] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770759.933287] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770760.139401] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770760.344656] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770760.550137] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770760.755742] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770760.961088] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770761.165938] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770761.371456] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770761.576301] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770761.781551] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770761.988217] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421770762.194506] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770762.400963] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770762.607091] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770762.813074] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770763.021629] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.35 ms +[1421770763.231744] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.99 ms +[1421770763.446845] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421770763.652603] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770763.859079] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770764.065052] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770764.270046] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770764.476803] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770764.682144] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770764.887380] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770765.092253] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770765.297409] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770765.503734] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770765.709426] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770765.915158] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770766.121991] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421770766.327187] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770766.532782] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770766.737932] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770766.943272] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770767.149106] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770767.354143] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770767.560680] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770767.765934] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770767.971399] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770768.176768] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770768.382858] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770768.588160] 1330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770768.793338] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770768.998916] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770769.205463] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770769.410911] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770769.616774] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770769.823470] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770770.028666] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770770.234176] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770770.439442] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770770.644394] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421770770.850574] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421770771.055709] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770771.261872] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770771.468388] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770771.674900] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770771.880777] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770772.086017] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770772.291491] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770772.497077] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770772.703466] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770772.908552] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421770773.113407] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770773.318781] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770773.525493] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770773.731263] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770773.937865] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770774.143221] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770774.348216] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770774.553505] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770774.758878] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770774.963724] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770775.169884] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770775.375523] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770775.580949] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770775.785630] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421770775.991593] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770776.197571] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770776.403810] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770776.608975] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770776.815796] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770777.021086] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770777.226148] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770777.431945] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770777.637926] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770777.844735] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770778.050868] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770778.255830] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770778.461174] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770778.666814] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770778.872058] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770779.076767] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770779.282233] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770779.489278] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770779.694700] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770779.900118] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770780.105082] 161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770780.310441] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770780.516800] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770780.722490] 1026 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770780.929034] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770781.134593] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770781.339887] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770781.556532] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.2 ms +[1421770781.761753] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770781.966927] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770782.172161] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770782.377618] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770782.582806] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770782.788237] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770782.993866] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770783.199459] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770783.405036] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770783.612270] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421770783.817961] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770784.022582] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770784.227697] 1133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770784.432644] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770784.637832] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421770784.844419] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770785.048931] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770785.254217] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770785.459939] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770785.665029] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770785.870451] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770786.075482] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770786.280646] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770786.485828] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770786.691456] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770786.897471] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770787.102215] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770787.308308] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770787.514520] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770787.719858] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770787.926004] 1522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421770788.131664] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770788.337490] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770788.542840] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770788.748056] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770788.954394] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421770789.159716] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770789.364983] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770789.570534] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770789.775990] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770789.981161] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770790.186467] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770790.393084] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770790.598490] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770790.805049] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770791.010407] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770791.216624] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770791.421932] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770791.627091] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770791.832641] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770792.037495] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.02 ms +[1421770792.242895] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770792.448757] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.07 ms +[1421770792.654030] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770792.859451] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770793.065716] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770793.270952] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770793.476750] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421770793.682326] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770793.887635] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770794.093500] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770794.298955] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770794.504522] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770794.709852] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770794.915646] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770795.121576] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770795.327076] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770795.532108] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770795.737225] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770795.943038] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421770796.148466] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770796.354881] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421770796.561885] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770796.766887] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770796.973493] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770797.178776] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770797.383779] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770797.589787] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770797.794912] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770798.000920] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421770798.206467] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770798.411535] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770798.616790] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770798.822154] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770799.027415] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770799.233613] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770799.439046] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770799.645835] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421770799.851809] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421770800.056493] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770800.262429] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770800.467648] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770800.672997] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770800.878154] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770801.083059] 1261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770801.288069] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770801.493940] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770801.699728] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770801.904928] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770802.109731] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770802.316012] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770802.521858] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770802.728360] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770802.934248] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770803.139280] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770803.346347] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421770803.552069] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770803.757869] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770803.964314] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770804.171020] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770804.377096] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770804.583619] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770804.788965] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770804.994659] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770805.200448] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770805.405151] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770805.611031] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770805.817481] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770806.022312] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770806.227346] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770806.432482] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770806.637394] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770806.842532] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770807.047478] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770807.252740] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770807.458310] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770807.664675] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770807.869986] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770808.074838] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770808.280016] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770808.485602] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770808.691060] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770808.896920] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770809.101847] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770809.307212] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770809.514152] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770809.721073] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770809.926965] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770810.132657] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770810.339481] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770810.544693] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770810.750423] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770810.955767] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770811.161155] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770811.366646] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770811.571562] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770811.776268] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770811.981462] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770812.186843] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421770812.393726] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421770812.599601] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770812.804668] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770813.011437] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770813.216734] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770813.422132] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770813.629220] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770813.834967] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770814.040035] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770814.245600] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770814.453087] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421770814.660231] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770814.866615] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770815.071351] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770815.276530] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770815.482599] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770815.687944] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770815.893691] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770816.098464] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770816.304795] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421770816.510544] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421770816.727679] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421770816.932644] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770817.137833] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770817.343406] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770817.549782] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770817.755306] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770817.961168] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770818.166433] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770818.371776] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770818.578067] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770818.784594] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770818.989817] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770819.194729] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770819.400059] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770819.605767] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770819.811687] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770820.016806] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770820.221733] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770820.427958] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770820.634258] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770820.839724] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770821.045708] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421770821.251022] 1238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770821.457311] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770821.663807] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770821.869620] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770822.074956] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421770822.281629] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421770822.488173] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421770822.693649] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770822.899948] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770823.104720] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770823.309818] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770823.515879] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770823.722474] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770823.928065] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770824.133898] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770824.339004] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770824.544101] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770824.749250] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770824.954766] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770825.160623] 1392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770825.366023] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770825.571382] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770825.776234] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770825.981792] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770826.187527] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770826.394190] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.72 ms +[1421770826.600054] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421770826.805782] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770827.011748] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421770827.217966] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770827.424545] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770827.631219] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770827.836623] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770828.041466] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770828.246525] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770828.452015] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770828.657833] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770828.864530] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770829.070263] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421770829.275682] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770829.482685] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770829.688376] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770829.894172] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770830.098849] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770830.304132] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770830.511235] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421770830.717234] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770830.923829] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770831.128971] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770831.335325] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770831.541099] 1297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770831.747030] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421770831.952700] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770832.158246] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770832.363429] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770832.568828] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.02 ms +[1421770832.775185] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770832.981948] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770833.187821] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770833.393347] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770833.598834] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770833.804981] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770834.010201] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770834.215942] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770834.421958] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770834.627163] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770834.832241] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770835.036846] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770835.242454] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770835.448992] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770835.653954] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770835.861997] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.09 ms +[1421770836.073373] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.79 ms +[1421770836.279785] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421770836.485538] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770836.690857] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770836.896672] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770837.102284] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770837.307423] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770837.512893] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770837.718651] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770837.925366] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770838.131027] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770838.336440] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770838.541980] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770838.747168] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770838.953367] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770839.158166] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770839.363436] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770839.570089] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770839.775921] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770839.981380] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770840.186225] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770840.392539] 1670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421770840.598548] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770840.803765] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770841.010485] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421770841.216784] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770841.430877] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.3 ms +[1421770841.636878] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770841.843147] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770842.048302] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770842.253298] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770842.458747] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770842.664494] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770842.870872] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770843.076704] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770843.282189] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421770843.487315] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770843.692468] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770843.899217] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421770844.105427] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770844.310171] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421770844.515312] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770844.721834] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770844.928241] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770845.133545] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770845.339008] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770845.547447] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.82 ms +[1421770845.777706] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421770846.012072] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.1 ms +[1421770846.231493] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421770846.454554] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421770846.659995] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770846.866078] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770847.070986] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770847.276328] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770847.481533] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770847.686830] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770847.891683] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770848.096650] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770848.301700] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770848.507994] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770848.713611] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770848.919461] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770849.125895] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770849.331693] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770849.537537] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770849.743604] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770849.949190] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770850.154340] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770850.360699] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770850.566830] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770850.773091] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770850.979188] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770851.184648] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770851.390238] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770851.597263] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770851.803140] 1330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770852.009622] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770852.215974] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770852.421649] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770852.627142] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770852.833133] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770853.037861] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770853.243507] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770853.448842] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770853.654783] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770853.860199] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770854.067229] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770854.273683] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770854.479008] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770854.685499] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770854.891155] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770855.096291] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770855.302577] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770855.509560] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421770855.715379] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770855.921853] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770856.128051] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770856.334331] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770856.540138] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770856.749570] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.54 ms +[1421770856.955745] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770857.160916] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770857.366520] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770857.572251] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770857.777735] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770857.983843] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770858.189764] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770858.396417] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421770858.601877] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421770858.807250] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770859.012901] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770859.218314] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770859.424602] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770859.630049] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770859.835441] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770860.041014] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770860.245993] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770860.451329] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770860.657635] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770860.863359] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770861.069525] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770861.274943] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770861.481150] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421770861.687247] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770861.893008] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770862.097456] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770862.303727] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770862.509621] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770862.715991] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770862.921247] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770863.127456] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770863.332779] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770863.538524] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770863.744530] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421770863.951120] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770864.156489] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770864.361667] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770864.566980] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770864.773774] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770864.979914] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770865.185629] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770865.390859] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770865.596887] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770865.802229] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770866.007352] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770866.212585] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770866.418170] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770866.623695] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770866.828882] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770867.033378] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770867.238511] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770867.443712] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770867.649113] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770867.857479] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.58 ms +[1421770868.068356] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.31 ms +[1421770868.279692] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.49 ms +[1421770868.498115] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421770868.717161] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421770868.940017] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421770869.223727] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.6 ms +[1421770869.448705] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421770869.673850] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421770869.895428] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421770870.100290] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770870.305503] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770870.512178] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770870.718836] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770870.926682] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.50 ms +[1421770871.136470] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.95 ms +[1421770871.341642] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770871.547108] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770871.754102] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.98 ms +[1421770871.965412] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.13 ms +[1421770872.170962] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770872.377172] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770872.582502] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770872.789012] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770872.994860] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770873.200320] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770873.407055] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421770873.612852] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770873.817816] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770874.022561] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770874.227697] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770874.433876] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770874.640261] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770874.846849] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770875.051942] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770875.256753] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770875.462394] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770875.667800] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770875.873715] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770876.078464] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770876.284022] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770876.489825] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421770876.695536] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770876.901103] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770877.106153] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770877.312118] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770877.517524] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770877.723053] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770877.930032] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770878.135904] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770878.341428] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770878.547547] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770878.753178] 1392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770878.959083] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770879.164334] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770879.369687] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770879.576187] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770879.781771] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770879.987138] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770880.193538] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770880.399773] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770880.605167] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770880.811821] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770881.017082] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770881.222400] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770881.428739] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770881.633869] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770881.840372] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770882.045443] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770882.250750] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770882.457576] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421770882.664520] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.85 ms +[1421770882.869706] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770883.074434] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770883.279905] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770883.485055] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770883.690586] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770883.896260] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770884.101435] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421770884.306891] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770884.513586] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770884.719104] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770884.924656] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770885.130253] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770885.335901] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770885.541521] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770885.747403] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770885.953510] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770886.159887] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770886.364941] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770886.570215] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770886.776562] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421770886.982095] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770887.187411] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770887.393281] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770887.599056] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770887.804756] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770888.010209] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770888.216090] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421770888.421724] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770888.627772] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770888.834119] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770889.039760] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770889.244646] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770889.450273] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770889.655851] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770889.862247] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770890.067190] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770890.273334] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770890.478419] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770890.684095] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770890.889613] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770891.094365] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770891.299722] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770891.505742] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770891.712338] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770891.917518] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770892.122594] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770892.327955] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770892.533630] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770892.738770] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770892.944280] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770893.150650] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770893.356234] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770893.562340] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770893.768377] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770893.973853] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770894.180389] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770894.385764] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770894.591034] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770894.796452] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770895.002737] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770895.207609] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421770895.412951] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770895.619351] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770895.825362] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770896.030163] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770896.235494] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770896.442331] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770896.647629] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770896.853444] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770897.058659] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770897.265041] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770897.470229] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770897.676017] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770897.881568] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770898.086881] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770898.292019] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770898.497556] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770898.703088] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770898.908557] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770899.116883] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421770899.323079] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770899.528985] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421770899.734339] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770899.939649] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770900.145140] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770900.350038] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770900.555588] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770900.762343] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770900.968212] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770901.173308] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770901.378379] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770901.583515] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770901.789287] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770901.995370] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770902.201129] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770902.407423] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770902.612849] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770902.818547] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770903.023443] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770903.228574] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770903.434044] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770903.639224] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770903.844958] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770904.050796] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421770904.255572] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770904.461286] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770904.666505] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770904.871331] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770905.078076] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421770905.284470] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770905.490422] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770905.695898] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770905.902492] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770906.107698] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770906.312984] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770906.518570] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770906.724604] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770906.931233] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770907.137020] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770907.343574] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770907.549235] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770907.754446] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770907.959419] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770908.164573] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770908.371282] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770908.577663] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770908.782895] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770908.988898] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770909.193658] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770909.399195] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770909.604629] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770909.810474] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770910.016543] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770910.222679] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770910.429019] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770910.635300] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770910.841028] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770911.045681] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770911.250850] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770911.455597] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770911.660670] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770911.866217] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770912.071746] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770912.277101] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770912.482683] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770912.688374] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770912.893623] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770913.099280] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770913.305674] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770913.511137] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770913.717824] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770913.923702] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770914.129630] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770914.335088] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770914.539934] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770914.744540] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770914.949660] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770915.154200] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770915.360391] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770915.565343] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770915.771095] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770915.977046] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770916.182812] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770916.388465] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770916.593575] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770916.798970] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770917.004357] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770917.209647] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770917.414995] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770917.621412] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770917.826061] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770918.030654] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770918.235618] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770918.440568] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770918.645709] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421770918.850564] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770919.055186] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770919.260117] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770919.466624] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.91 ms +[1421770919.677152] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.55 ms +[1421770919.888161] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.88 ms +[1421770920.105985] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421770920.321986] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421770920.541442] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421770920.766515] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421770920.996274] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421770921.279587] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.2 ms +[1421770921.503130] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421770921.730023] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421770921.951372] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421770922.179149] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421770922.384110] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770922.589533] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770922.795261] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770923.000949] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770923.206615] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770923.412507] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770923.617892] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770923.823607] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421770924.030209] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770924.235565] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770924.443111] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.39 ms +[1421770924.662792] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421770924.868684] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770925.074447] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770925.281887] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.88 ms +[1421770925.493348] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.81 ms +[1421770925.698432] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770925.903253] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770926.108379] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770926.313181] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770926.518578] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770926.723861] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770926.928976] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770927.134697] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770927.341418] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770927.546763] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770927.752426] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770927.958862] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770928.165708] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770928.371884] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770928.578069] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770928.783304] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770928.989098] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770929.195394] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770929.401018] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770929.606533] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770929.812980] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770930.018549] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770930.224051] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770930.429545] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770930.635459] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770930.840693] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770931.047112] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770931.252500] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770931.458688] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770931.663853] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770931.869628] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770932.074981] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770932.280024] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770932.486385] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770932.692580] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770932.899272] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770933.105814] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770933.311695] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770933.517257] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421770933.723354] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421770933.928973] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770934.134715] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770934.339781] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770934.545144] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770934.750347] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770934.955726] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770935.161675] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770935.366909] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770935.572728] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770935.779796] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770935.985768] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770936.191190] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770936.397090] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770936.602583] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770936.807860] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770937.013053] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770937.218489] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421770937.424504] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770937.630126] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770937.836110] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770938.041656] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770938.246697] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770938.452909] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421770938.657929] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770938.864068] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770939.069264] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770939.274755] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770939.479540] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770939.684446] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770939.890042] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770940.095918] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770940.301490] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770940.507395] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421770940.713862] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421770940.919420] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770941.124311] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770941.328915] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770941.533518] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770941.738385] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770941.944070] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770942.149796] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770942.355765] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770942.561268] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770942.766870] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421770942.972511] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770943.177765] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770943.384433] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.80 ms +[1421770943.589234] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770943.794000] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770943.999732] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770944.206108] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770944.411843] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770944.616766] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770944.823152] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770945.028791] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770945.234015] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770945.439702] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770945.645499] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770945.851015] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770946.056405] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770946.262278] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770946.467673] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770946.672644] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770946.878352] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770947.084019] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770947.289943] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421770947.494970] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770947.700093] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770947.905412] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770948.111203] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770948.317473] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421770948.523669] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770948.729265] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770948.934234] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770949.139029] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770949.344581] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421770949.549083] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770949.753503] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770949.957861] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770950.163956] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770950.370077] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770950.575943] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770950.781150] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770950.986438] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770951.191582] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770951.397308] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770951.603121] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770951.808709] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770952.013599] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770952.219670] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770952.425240] 1880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770952.630747] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770952.835957] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770953.040219] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770953.245711] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770953.451270] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770953.656954] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770953.862234] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770954.067308] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770954.272890] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770954.478164] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770954.684574] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421770954.890279] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770955.097022] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770955.302304] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770955.511347] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.46 ms +[1421770955.722800] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.17 ms +[1421770955.935964] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.38 ms +[1421770956.154817] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421770956.374890] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421770956.594321] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421770956.876217] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.2 ms +[1421770957.161097] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.7 ms +[1421770957.366854] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770957.572508] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770957.778486] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770957.990842] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.66 ms +[1421770958.212662] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.7 ms +[1421770958.433012] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.7 ms +[1421770958.655597] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421770958.937635] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421770959.168048] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.1 ms +[1421770959.457639] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=86.0 ms +[1421770959.662672] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770959.870209] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770960.076237] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770960.283646] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.62 ms +[1421770960.509306] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421770960.721175] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.08 ms +[1421770960.933925] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.24 ms +[1421770961.152816] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421770961.377627] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421770961.605338] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421770961.811644] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770962.025820] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421770962.244422] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421770962.467658] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421770962.695261] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421770962.925679] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.4 ms +[1421770963.208794] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.2 ms +[1421770963.489084] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.3 ms +[1421770963.716267] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421770963.941578] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421770964.169690] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421770964.397142] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421770964.617840] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421770964.823043] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770965.028616] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770965.233895] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770965.446928] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.40 ms +[1421770965.658389] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.78 ms +[1421770965.898185] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.6 ms +[1421770966.104841] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770966.310603] 837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770966.515780] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770966.720922] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770966.925942] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770967.130609] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770967.335529] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770967.541297] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770967.747006] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770967.951597] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770968.156723] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770968.361896] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770968.566791] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770968.772346] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770979.181651] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421770979.387392] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770979.593261] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770979.799098] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770980.004720] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770980.209797] 145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421770980.415827] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770980.621696] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770980.826923] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770981.032380] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770981.238021] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770981.443195] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770981.649096] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421770981.855894] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421770982.061152] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770982.267716] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770982.473545] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770982.679389] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770982.884879] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770983.091517] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770983.298118] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770983.504284] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770983.710246] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421770983.915266] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770984.119643] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770984.325728] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770984.531132] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770984.736551] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770984.941479] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770985.147080] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770985.353270] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770985.557994] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770985.762968] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770985.967767] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770986.173716] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770986.379002] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770986.584280] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770986.789220] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770986.995756] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770987.201040] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770987.407463] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770987.613331] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770987.818285] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770988.023014] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770988.229259] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770988.434292] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770988.639628] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770988.844939] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770989.050442] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770989.255719] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770989.460705] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770989.665929] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770989.871524] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770990.077419] 1913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770990.282541] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770990.487985] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770990.693331] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770990.899112] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770991.105254] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770991.311019] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770991.516463] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770991.723043] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770991.928484] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770992.134883] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770992.340637] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770992.546533] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770992.753237] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770992.958312] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770993.162834] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770993.367741] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770993.573686] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421770993.778642] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770993.984603] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421770994.189257] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421770994.394147] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770994.600211] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770994.806025] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770995.010516] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770995.215604] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770995.420733] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770995.625580] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770995.831125] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770996.037219] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421770996.243495] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770996.448907] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770996.654942] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770996.860181] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770997.064895] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770997.270462] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770997.475666] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770997.680511] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770997.886276] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421770998.092573] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770998.297692] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770998.502344] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770998.707146] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770998.912437] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770999.119399] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770999.325317] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770999.531879] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770999.738278] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770999.944632] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421771000.150243] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771000.355830] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421771000.561748] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421771000.768628] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421771000.974545] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421771001.179841] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421771001.385437] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771001.591959] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421771001.797962] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421771002.003530] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421771002.209237] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421771002.414787] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421771002.620111] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771002.826769] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421771003.032465] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421771003.237744] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421771003.443889] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421771003.649507] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421771003.855143] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421771004.060614] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421771004.265989] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421771004.471299] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771004.676253] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771004.881128] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771005.087022] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421771005.292056] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771005.497586] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421771005.702847] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421771005.907682] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771006.112754] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421771006.317861] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771006.523545] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421771006.728304] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771006.933192] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421771007.139224] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421771007.344254] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421771007.551747] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.14 ms +[1421771007.757767] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421771007.963237] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771008.168980] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771008.374422] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771008.580079] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421771008.786772] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421771008.993363] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421771009.198332] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771009.403851] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771009.609682] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771009.815253] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421771010.021212] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771010.226556] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421771010.431855] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771010.637207] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771010.844912] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.39 ms +[1421771011.050019] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771011.255117] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771011.460896] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421771011.666443] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421771011.871765] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771012.077813] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421771012.282940] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421771012.488864] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421771012.694768] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771012.900101] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771013.105688] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421771013.311067] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771013.517659] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421771013.723845] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421771013.929617] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421771014.134417] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771014.339593] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771014.545391] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421771014.750627] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771014.956506] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771015.162608] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771015.368036] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421771015.573501] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771015.778590] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771015.983306] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771016.188989] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421771016.393802] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771016.599041] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771016.804005] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421771017.009444] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421771017.214532] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771017.420831] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421771017.626081] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771017.831444] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421771018.037054] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771018.242287] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771018.446993] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421771018.652758] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421771018.858613] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421771019.064589] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421771019.269685] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771019.474919] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771019.680502] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771019.886599] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421771020.092982] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421771020.297876] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771020.503565] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421771020.708512] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421771020.914559] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421771021.120555] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421771021.325496] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771021.530534] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421771021.736129] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421771021.942329] 1566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421771022.147316] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421771022.353074] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421771022.558516] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771022.764911] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421771022.971098] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421771023.177452] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421771023.382564] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421771023.587801] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771023.793132] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421771023.998087] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771024.203397] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771024.409163] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421771024.615070] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421771024.819866] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421771025.025604] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421771025.231781] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421771025.437542] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421771025.643249] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421771025.848789] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421771026.054434] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421771026.260198] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421771026.466181] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771026.672446] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421771026.877877] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771027.083686] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771027.288914] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421771027.494338] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421771027.699564] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771027.904999] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771028.110903] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771028.315961] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421771028.521101] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771028.725958] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771028.931092] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771029.136190] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771029.341129] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421771029.545949] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771029.751621] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421771029.958068] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421771030.162962] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421771030.369070] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421771030.574094] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771030.780420] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421771030.985909] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771031.191124] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421771031.396542] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771031.602888] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421771031.809777] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421771032.016311] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421771032.221865] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771032.426851] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421771032.632721] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771032.838122] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421771033.043550] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771033.248742] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771033.454719] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421771033.661195] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421771033.866542] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771034.072309] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421771034.277863] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771034.483013] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771034.688754] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421771034.894146] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771035.099791] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421771035.306427] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421771035.512076] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771035.717767] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771035.923460] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771036.129152] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771036.334692] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421771036.540906] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421771036.745802] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771036.950488] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421771037.155430] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421771037.361087] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421771037.566397] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421771037.771373] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421771037.976189] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421771038.181275] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771038.387693] 1670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421771038.592838] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771038.798169] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771039.005791] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.04 ms +[1421771039.211107] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421771039.417233] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421771039.622118] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771039.826775] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421771040.031699] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771040.236942] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771040.442744] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421771040.647867] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771040.853137] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421771041.057949] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421771041.263143] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771041.468192] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771041.677189] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.37 ms +[1421771041.901608] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421771042.116288] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421771042.335165] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421771042.598246] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=58.9 ms +[1421771042.804294] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421771043.010713] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421771043.215909] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771043.420994] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771043.626548] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421771043.831561] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771044.036876] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771044.242718] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421771044.448093] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771044.653635] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421771044.860232] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421771045.067143] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421771045.272052] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771045.478205] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421771045.683195] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421771045.888968] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771046.094241] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421771046.299562] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421771046.505446] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421771046.710837] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771046.916390] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421771047.123231] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421771047.329108] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421771047.536683] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.12 ms +[1421771047.742295] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421771047.947555] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421771048.152704] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771048.359025] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421771048.564048] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421771048.769395] 904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771048.974929] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771049.181138] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421771049.386163] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771049.591277] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771049.796892] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771050.002089] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421771050.208069] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421771050.413568] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771050.618791] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771050.823720] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771051.028964] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771051.235138] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421771051.440517] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421771051.645444] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421771051.850711] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421771052.055665] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421771052.260836] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771052.466281] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771052.671600] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421771052.876372] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421771053.081869] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771053.287147] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771053.492489] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771053.697706] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771053.903352] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421771054.108918] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421771054.313289] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421771054.518478] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421771054.723456] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421771054.928361] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771055.134549] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421771055.339405] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771055.544707] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421771055.750205] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421771055.956568] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421771056.162658] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421771056.367654] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771056.572899] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421771056.778388] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771056.984012] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771057.189216] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421771057.395130] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421771057.601881] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421771057.807312] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771058.012919] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421771058.218242] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771058.423644] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421771058.631685] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.24 ms +[1421771058.838561] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421771059.043515] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421771059.248506] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421771059.453237] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421771059.658795] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771059.865031] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421771060.071063] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421771060.277053] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421771060.482748] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421771060.687954] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771060.893958] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421771061.098886] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771061.303623] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421771061.508575] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421771061.714742] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421771061.919794] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421771062.124714] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771062.330854] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421771062.536292] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771062.743193] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421771062.948146] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421771063.153189] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771063.358374] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771063.564370] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421771063.770134] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771063.975459] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771064.182348] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421771064.387431] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771064.592973] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421771064.798514] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771065.003684] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771065.210103] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421771065.415917] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421771065.620623] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771065.826176] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421771066.032747] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421771066.239969] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421771066.445495] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421771066.652244] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421771066.858079] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771067.063058] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421771067.268976] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421771067.474651] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421771067.681582] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421771067.887590] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421771068.092723] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771068.297196] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421771068.502005] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421771068.708268] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421771068.913730] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421771069.119265] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771069.324402] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771069.529076] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771069.734428] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421771069.941101] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421771070.146689] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771070.352047] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771070.556735] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771070.762946] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421771070.968694] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421771071.173938] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421771071.380215] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421771071.586915] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421771071.792760] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421771071.998771] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421771072.203914] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771072.409090] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771072.614228] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421771072.819292] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421771073.025226] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421771073.230934] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421771073.435847] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771073.641225] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771073.846929] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421771074.051916] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421771074.256424] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771074.461434] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771074.666798] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421771074.872919] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421771075.078443] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421771075.283602] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771075.489053] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421771075.695705] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421771075.901159] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771076.106104] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421771076.311108] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421771076.518089] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421771076.722922] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771076.928013] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421771077.133822] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421771077.338948] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771077.544296] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771077.749841] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421771077.960259] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771078.166286] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421771078.371301] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771078.576784] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421771078.782421] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771078.987659] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771079.192105] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421771079.397999] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771079.604004] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771079.810161] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421771080.018168] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.54 ms +[1421771080.227363] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421771080.432656] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421771080.637795] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421771080.844262] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771081.049221] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421771081.254254] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771081.459439] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421771081.664610] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421771081.869784] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771082.075780] 1482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421771082.280970] 30 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421771082.486203] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771082.691295] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421771082.896317] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771083.102209] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421771083.307036] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771083.511724] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771083.716374] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771083.922650] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421771084.128840] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421771084.334684] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421771084.539838] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421771084.745047] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421771084.950222] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421771085.154945] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421771085.360058] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771085.565495] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771085.771510] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421771085.976528] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771086.182144] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421771086.387913] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421771086.592610] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771086.797510] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771087.002228] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771087.208115] 1522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421771087.412674] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421771087.617512] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421771087.822108] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421771088.026798] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771088.233810] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421771088.439076] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421771088.644183] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771088.849445] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771089.054757] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771089.259571] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771089.465155] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421771089.671098] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421771089.875817] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421771090.080761] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771090.286325] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421771090.492244] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421771090.698552] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421771090.903959] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771091.109735] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421771091.315840] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421771091.521661] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771091.728315] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421771091.934323] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421771092.140274] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421771092.345206] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771092.550498] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771092.755756] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421771092.961456] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421771093.167005] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771093.373029] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421771093.578673] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421771093.784193] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421771093.988803] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771094.193461] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421771094.398718] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771094.604208] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771094.810995] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421771095.017014] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771095.223145] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421771095.429157] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421771095.634448] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421771095.839869] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771096.044662] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421771096.249992] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771096.455129] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771096.660881] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421771096.866742] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771097.071707] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771097.276841] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771097.483393] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421771097.689044] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771097.893701] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771098.098416] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421771098.303186] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421771098.507878] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421771098.713390] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771098.918775] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771099.124087] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771099.329011] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771099.533865] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771099.739798] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421771099.946382] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421771100.151423] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771100.356523] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771100.561729] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421771100.767851] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421771100.973462] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771101.178434] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771101.384199] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421771101.589320] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771101.794968] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421771102.000393] 1021 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421771102.205688] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771102.412964] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421771102.619476] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421771102.824444] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771103.029494] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771103.234896] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771103.440388] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421771103.646402] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421771103.851471] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771104.056081] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421771104.261204] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421771104.466011] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421771104.672379] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421771104.877852] 89 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421771105.083650] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421771105.289334] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421771105.495339] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421771105.700737] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421771105.906317] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421771106.111792] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771106.316858] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421771106.522134] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421771106.727590] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421771106.934521] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421771107.140230] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771107.344944] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771107.550675] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421771107.756004] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771107.961085] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771108.167723] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421771108.373116] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421771108.578416] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421771108.784113] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421771108.989700] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421771109.195445] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421771109.400331] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771109.605749] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771109.811266] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771110.015858] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421771110.220985] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771110.426033] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421771110.631581] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421771110.838386] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421771111.044582] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421771111.250411] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771111.455867] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771111.663025] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421771111.868705] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421771112.074744] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771112.280294] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421771112.485656] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771112.690974] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771112.897340] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421771113.103777] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421771113.309109] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771113.515000] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421771113.720035] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421771113.924706] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771114.131664] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.49 ms +[1421771114.337190] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771114.542663] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771114.749144] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421771114.954381] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771115.159736] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421771115.364230] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421771115.568968] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421771115.774075] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771115.979257] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771116.184901] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771116.390805] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421771116.596164] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421771116.801953] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421771117.006800] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421771117.212562] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421771117.417425] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421771117.622555] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771117.827986] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771118.032826] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421771118.237482] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421771118.443333] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.87 ms +[1421771118.648864] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421771118.854619] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771119.060454] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421771119.265902] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771119.472435] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421771119.677663] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771119.883593] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421771120.088305] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771120.294171] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771120.499460] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771120.704820] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771120.909938] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771121.115161] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771121.329974] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421771121.536666] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421771121.742103] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771121.947611] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421771122.153755] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421771122.359240] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421771122.564648] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421771122.770256] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771122.975202] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421771123.180418] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771123.386741] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421771123.593113] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421771123.798796] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421771124.005653] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421771124.212490] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421771124.417679] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771124.623921] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421771124.829378] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771125.034680] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421771125.239401] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421771125.444842] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421771125.652116] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.82 ms +[1421771125.862332] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.88 ms +[1421771126.075803] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.48 ms +[1421771126.323002] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.0 ms +[1421771126.542480] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421771126.760529] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421771126.984453] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421771127.203747] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421771127.409146] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421771127.615942] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421771127.831270] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421771128.041440] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.15 ms +[1421771128.282772] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=37.4 ms +[1421771128.499156] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421771128.722795] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421771128.941625] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421771129.167937] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421771129.389690] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421771129.667243] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.4 ms +[1421771129.898475] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.1 ms +[1421771130.127412] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421771130.334174] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421771130.540406] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421771130.745492] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771130.951354] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771131.156804] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421771131.361909] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771131.566761] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771131.772033] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421771131.978971] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.75 ms +[1421771132.185233] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421771132.392012] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421771132.598654] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421771132.805004] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421771133.010111] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771133.215201] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771133.420619] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421771133.625785] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771133.831848] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421771134.039597] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.35 ms +[1421771134.248759] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.16 ms +[1421771134.454295] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.91 ms +[1421771134.659566] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771134.864953] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421771135.070279] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771135.276009] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771135.480932] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771135.687077] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421771135.892665] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421771136.097451] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421771136.302338] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421771136.507569] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771136.713266] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421771136.918078] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421771137.122879] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421771137.327745] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771137.532481] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421771137.737103] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421771137.942163] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771138.147586] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421771138.360417] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.78 ms +[1421771138.568174] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.44 ms +[1421771138.774489] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421771138.979569] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421771139.184900] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771139.389787] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421771139.595655] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421771139.801013] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771140.006218] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771140.211835] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421771140.417413] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771140.623390] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421771140.829092] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421771141.034420] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771141.239323] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771141.444939] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421771141.649914] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771141.855245] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771142.060305] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771142.265727] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771142.471511] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421771142.677460] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421771142.883470] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771143.090375] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421771143.296039] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421771143.501805] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771143.708079] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771143.913981] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771144.119325] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771144.324309] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421771144.528888] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421771144.734405] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421771144.940096] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771145.145863] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771145.351991] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421771145.558215] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421771145.764231] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421771145.970131] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421771146.175063] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421771146.380063] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421771146.584936] 1330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421771146.791028] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421771146.996327] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771147.201840] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771147.407836] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421771147.613578] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421771147.819471] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421771148.025217] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771148.231655] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421771148.436766] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421771148.642242] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771148.847556] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771149.053299] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771149.258415] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421771149.463760] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771149.669126] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421771149.874993] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771150.082662] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771150.287884] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771150.494332] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421771150.700246] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771150.905605] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421771151.111176] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771151.317164] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421771151.522172] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771151.727891] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421771151.933342] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421771152.139009] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421771152.343772] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771152.548747] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421771152.755230] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421771152.960745] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771153.165773] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771153.371192] 841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771153.576264] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421771153.782545] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421771153.987866] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421771154.193125] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771154.397974] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771154.603377] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421771154.808529] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421771155.013401] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771155.219143] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421771155.423967] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771155.628469] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421771155.833297] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771156.038101] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421771156.243975] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421771156.449815] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421771156.655770] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421771156.860672] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771157.065600] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771157.270548] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771157.475468] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421771157.680176] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421771157.884762] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771158.089513] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771158.295726] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421771158.501859] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771158.706931] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771158.913396] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421771159.119056] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771159.325663] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421771159.530426] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421771159.737096] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421771159.943781] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421771160.150849] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.25 ms +[1421771160.356074] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421771160.561494] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421771160.766910] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771160.972323] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421771161.178741] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421771161.383873] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771161.588703] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771161.795061] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421771162.000527] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421771162.206564] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421771162.411792] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421771162.617055] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771162.822790] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421771163.028002] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771163.233170] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421771163.438230] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421771163.643958] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421771163.849757] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421771164.055146] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421771164.261380] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421771164.466995] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421771164.673207] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421771164.878917] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421771165.084394] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421771165.290351] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771165.495898] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771165.701180] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421771165.907967] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421771166.113694] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771166.318683] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771166.524801] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421771166.729936] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771166.934928] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421771167.139911] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421771167.345095] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771167.551507] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421771167.758159] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421771167.967067] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.28 ms +[1421771168.172506] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771168.377915] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771168.583301] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421771168.789715] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421771168.995412] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771169.200643] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771169.406638] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421771169.612831] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421771169.819191] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421771170.025599] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421771170.231366] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771170.436396] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421771170.642854] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421771170.848587] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421771171.053253] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421771171.258926] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421771171.464672] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421771171.669684] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421771171.874271] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771172.079048] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771172.283606] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421771172.490165] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421771172.695387] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421771172.901046] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421771173.106147] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421771173.310593] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421771173.515611] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771173.721033] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421771173.926916] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421771174.131560] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771174.336733] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771174.541401] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421771174.745591] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421771174.950728] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771175.155935] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421771175.361256] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421771175.566991] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421771175.771771] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421771175.976511] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421771176.181252] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771176.387540] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421771176.592343] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771176.797709] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771177.002514] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421771177.208018] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421771177.414160] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421771177.619528] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421771177.824798] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771178.029745] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771178.234443] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771178.440797] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421771178.647909] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421771178.853834] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771179.059401] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771179.265694] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421771179.472487] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421771179.678077] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421771179.883478] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771180.088778] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421771180.295587] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421771180.510603] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421771180.743715] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.8 ms +[1421771180.949053] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421771181.155685] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421771181.362095] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.98 ms +[1421771181.569409] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.01 ms +[1421771181.780805] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.45 ms +[1421771181.998869] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421771182.248969] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.9 ms +[1421771182.512386] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=58.5 ms +[1421771182.717961] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421771182.923292] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421771183.129965] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421771183.335449] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421771183.540901] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421771183.747983] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421771183.954099] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421771184.159879] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421771184.365815] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421771184.571516] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771184.777325] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771184.983905] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421771185.188976] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771185.394275] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421771185.600745] 1503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421771185.805877] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421771186.011910] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421771186.222729] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.02 ms +[1421771186.429007] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421771186.634747] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421771186.840222] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms diff --git a/module3/exo3/liglab2.log b/module3/exo3/liglab2.log new file mode 100644 index 0000000..96e1325 --- /dev/null +++ b/module3/exo3/liglab2.log @@ -0,0 +1,44413 @@ +[1421761682.052172] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421761682.277315] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421761682.502054] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421761682.729257] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421761682.934648] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761683.160397] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421761683.443055] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.7 ms +[1421761683.672157] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421761683.899933] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421761684.122687] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421761684.344135] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421761684.566271] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421761684.770828] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421761684.998504] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421761685.205172] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.45 ms +[1421761685.414106] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.85 ms +[1421761685.620117] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761685.824949] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761686.029177] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421761686.234464] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421761686.438772] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761686.643208] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761686.848323] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421761687.053400] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761687.257704] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761687.463275] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761687.668423] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761687.874230] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761688.078667] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761688.283655] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761688.488688] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421761688.694652] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421761688.899867] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421761689.104455] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761689.309556] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761689.514744] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761689.719832] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761689.924690] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761690.129358] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761690.335289] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421761690.539871] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761690.744599] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421761690.950126] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421761691.154491] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761691.359824] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421761691.564541] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761691.769042] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761691.974735] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421761692.179329] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421761692.385087] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761692.590174] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761692.796199] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761693.001785] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421761693.206838] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761693.412630] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421761693.617385] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761693.822314] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761694.026605] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761694.231410] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761694.437334] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421761694.642193] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761694.847858] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421761695.052302] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761695.257005] 512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761695.461769] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761695.666562] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761695.871355] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761696.075667] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761696.280338] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761696.485200] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421761696.690050] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761696.894632] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761697.100078] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421761697.304909] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761697.509838] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761697.714894] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761697.920064] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761698.125197] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761698.331417] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761698.536727] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421761698.742762] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421761698.947941] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421761699.155385] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761699.359987] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761699.565169] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761699.770438] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761699.982619] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.42 ms +[1421761700.188009] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761700.392946] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761700.598661] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761700.803687] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761701.008266] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421761701.213666] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761701.419059] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761701.623733] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761701.829634] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761702.035954] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421761702.240981] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761702.446091] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761702.650918] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761702.855846] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761703.061669] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761703.268273] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761703.474617] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421761703.680266] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761703.885115] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761704.091277] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421761704.296808] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761704.503007] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421761704.707934] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761704.912619] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761705.117528] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761705.323251] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761705.529295] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421761705.735273] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761705.941534] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761706.146320] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421761706.351121] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761706.556586] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421761706.761920] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761706.966750] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761707.172027] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761707.377527] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421761707.582574] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421761707.788031] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421761707.992751] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761708.197163] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421761708.402183] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421761708.607134] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761708.812241] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761709.016955] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421761709.225273] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.43 ms +[1421761709.430411] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761709.635543] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421761709.840290] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761710.046390] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421761710.251601] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761710.457126] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421761710.662268] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761710.867782] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761711.073227] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761711.279403] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761711.484182] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761711.688760] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761711.894860] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421761712.099849] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761712.305514] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761712.510874] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421761712.716494] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761712.921543] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761713.126565] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761713.331767] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421761713.537871] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761713.743928] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421761713.948627] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761714.153575] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761714.359544] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421761714.564865] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761714.770326] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421761714.975586] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761715.180823] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761715.385814] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761715.591089] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761715.796202] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761716.000492] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761716.205696] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761716.411835] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421761716.617739] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421761716.823266] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421761717.028586] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761717.233891] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761717.438906] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421761717.645537] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421761717.850789] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761718.056229] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421761718.260980] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761718.466891] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761718.671777] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761718.876946] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761719.082422] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761719.292131] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.98 ms +[1421761719.502305] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.18 ms +[1421761719.734514] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.2 ms +[1421761719.982146] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.0 ms +[1421761720.200177] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421761720.421753] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421761720.652041] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.3 ms +[1421761720.874167] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421761721.096519] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421761721.322726] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421761721.606876] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.2 ms +[1421761721.824601] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421761722.104619] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.0 ms +[1421761722.331740] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421761722.584391] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.5 ms +[1421761722.789322] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761722.994312] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761723.199120] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761723.407829] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.81 ms +[1421761723.618538] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.17 ms +[1421761723.833136] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421761724.047823] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421761724.268097] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421761724.489741] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421761724.717047] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421761724.941489] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421761725.226425] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.0 ms +[1421761725.444491] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.1 ms +[1421761725.702386] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=54.0 ms +[1421761725.972423] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=66.0 ms +[1421761726.193757] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421761726.409496] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.0 ms +[1421761726.690815] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.5 ms +[1421761726.896057] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761727.101952] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761727.308555] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421761727.513751] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761727.721169] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.60 ms +[1421761727.927251] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421761728.132460] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421761728.340179] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.93 ms +[1421761728.551046] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.71 ms +[1421761728.763466] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.64 ms +[1421761728.982393] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421761729.234814] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.9 ms +[1421761729.453893] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421761729.734276] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.7 ms +[1421761730.015486] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.3 ms +[1421761730.238203] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421761730.462232] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421761730.747962] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.0 ms +[1421761730.962467] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421761731.192213] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421761731.421581] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.4 ms +[1421761731.637458] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.7 ms +[1421761731.860904] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421761732.086337] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421761732.291315] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761732.497027] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761732.702007] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761732.916108] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421761733.128032] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.17 ms +[1421761733.342753] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421761733.563241] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421761733.830290] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=63.1 ms +[1421761734.108867] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.7 ms +[1421761734.334379] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421761734.621139] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.7 ms +[1421761734.907312] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.1 ms +[1421761735.194861] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.8 ms +[1421761735.474599] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.1 ms +[1421761735.700996] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421761735.916686] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421761736.121792] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761736.327584] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421761736.532650] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761736.738710] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761736.944881] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421761737.151450] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421761737.357458] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761737.562533] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761737.768716] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761737.973554] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761738.178555] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761738.383386] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761738.588769] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761738.793558] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761738.998791] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761739.204364] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761739.411516] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.98 ms +[1421761739.616669] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421761739.822160] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761740.027560] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421761740.232677] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761740.438670] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761740.644356] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761740.849692] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761741.054738] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761741.260662] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421761741.466845] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421761741.672831] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421761741.877992] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761742.082998] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761742.288937] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421761742.493798] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761742.698623] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761742.903576] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761743.108921] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761743.315210] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421761743.520344] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761743.724987] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761743.929396] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761744.135130] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761744.339939] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761744.545030] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761744.750195] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421761744.955378] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761745.160292] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421761745.365214] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421761745.569861] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761745.775325] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761745.980164] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761746.184966] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761746.390275] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761746.595685] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761746.800661] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761747.006721] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761747.211824] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761747.416738] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761747.621724] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761747.827007] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421761748.032090] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761748.238199] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761748.443331] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761748.647974] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421761748.853401] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761749.058661] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421761749.263828] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761749.469199] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761749.674684] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761749.880164] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761750.085143] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761750.291760] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761750.497247] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761750.702363] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761750.907597] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761751.114018] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761751.318876] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761751.523732] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761751.728830] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761751.933947] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761752.139494] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761752.344950] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761752.551285] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421761752.756540] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761752.962439] 1880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761753.167347] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761753.373040] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421761753.578274] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421761753.783696] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761753.990161] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761754.197340] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.41 ms +[1421761754.402561] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761754.608098] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421761754.813211] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421761755.018185] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761755.223174] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761755.428435] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421761755.633237] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761755.839557] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421761756.045044] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761756.250234] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761756.455532] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421761756.662528] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.91 ms +[1421761756.868299] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761757.073743] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761757.280278] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421761757.485259] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761757.691814] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421761757.896690] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761758.103162] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421761758.308834] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421761758.515496] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421761758.720904] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761758.927293] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421761759.131814] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761759.336333] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761759.541249] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761759.746723] 1417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761759.951889] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761760.157894] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761760.362784] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761760.567872] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761760.772506] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761760.977430] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761761.182435] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761761.387402] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761761.592982] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761761.797972] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761762.002248] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421761762.207118] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421761762.413080] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421761762.619187] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421761762.825775] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761763.031502] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421761763.237767] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761763.443321] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421761763.649023] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761763.853971] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421761764.059647] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421761764.265043] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421761764.471659] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.16 ms +[1421761764.677888] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421761764.884288] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761765.090480] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761765.295486] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761765.500817] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761765.706232] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421761765.911043] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761766.115691] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761766.320793] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761766.527190] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421761766.732873] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421761766.939411] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421761767.144687] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761767.349779] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761767.555079] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761767.760324] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761767.965096] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761768.170067] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761768.375391] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761768.580415] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421761768.785638] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421761768.992220] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421761769.197903] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761769.403117] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421761769.608772] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421761769.813931] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761770.018687] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761770.223470] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761770.428906] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761770.634726] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761770.839236] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761771.044838] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421761771.250207] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761771.456712] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421761771.661122] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761771.867075] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421761772.072901] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421761772.277974] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761772.484210] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421761772.689007] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761772.894574] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421761773.100667] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761773.305832] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761773.511715] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761773.716729] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761773.922649] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421761774.128969] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421761774.334070] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761774.540041] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761774.745208] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761774.950235] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761775.155925] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421761775.361522] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421761775.566847] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421761775.772195] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761775.977277] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761776.183369] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421761776.388533] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761776.595000] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421761776.800119] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421761777.005017] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761777.209733] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761777.415245] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421761777.620703] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421761777.826314] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761778.031543] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761778.236574] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761778.441659] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761778.646764] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761778.852661] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761779.057385] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761779.262988] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421761779.467798] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761779.672824] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761779.878318] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761780.083469] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761780.288871] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421761780.494783] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761780.701590] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421761780.906517] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761781.111407] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761781.317633] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421761781.523891] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761781.728446] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421761781.932871] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421761782.137599] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761782.343227] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761782.549491] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761782.754959] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761782.959771] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421761783.164728] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421761783.369648] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761783.575320] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761783.780435] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761783.985400] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761784.191179] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421761784.397342] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421761784.602093] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761784.807184] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761785.013444] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761785.218915] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421761785.423781] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761785.628502] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761785.833400] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421761786.038145] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761786.242957] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761786.448989] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421761786.654189] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761786.859823] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761787.064776] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761787.270397] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761787.475176] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761787.680573] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761787.885982] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761788.090842] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761788.295851] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761788.500516] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421761788.706862] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421761788.912441] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761789.117809] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421761789.322719] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761789.528174] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761789.733415] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421761789.938566] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761790.144331] 1566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421761790.349327] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761790.555248] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421761790.761047] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421761790.966761] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761791.172649] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761791.377724] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761791.583865] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761791.789089] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761791.994651] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761792.200055] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761792.405255] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761792.610795] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761792.816014] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761793.020799] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761793.226483] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761793.431210] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761793.635938] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761793.840839] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761794.045282] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421761794.250251] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761794.455311] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761794.660294] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421761794.865385] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761795.071451] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761795.276134] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761795.480913] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761795.687483] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421761795.893567] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421761796.098215] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761796.302759] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761796.508776] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421761796.713630] 1026 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761796.918336] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421761797.124123] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761797.328933] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761797.535318] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761797.740545] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421761797.945721] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761798.150316] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421761798.355908] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761798.560724] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761798.765684] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761798.970332] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761799.174943] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761799.379490] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761799.584790] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421761799.789982] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761799.994958] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761800.200235] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761800.405270] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761800.611149] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421761800.816371] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761801.021483] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761801.226597] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761801.431378] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761801.635988] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761801.841231] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761802.046361] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761802.251195] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761802.456777] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421761802.661699] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761802.866616] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761803.072480] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421761803.277661] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761803.483915] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421761803.689859] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761803.895512] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761804.100486] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761804.305285] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761804.510123] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761804.715708] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761804.920601] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761805.126314] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761805.331125] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421761805.536822] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761805.743224] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761805.948655] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421761806.153817] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761806.358293] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761806.564780] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421761806.770912] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421761806.975360] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421761807.181577] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421761807.386244] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761807.591299] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421761807.797420] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421761808.002355] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421761808.207450] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761808.412419] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761808.617199] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761808.824843] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.38 ms +[1421761809.034632] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.53 ms +[1421761809.239423] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761809.444291] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761809.657915] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421761809.866912] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.97 ms +[1421761810.081539] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421761810.300129] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421761810.516136] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421761810.791066] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.8 ms +[1421761811.018013] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421761811.294795] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.1 ms +[1421761811.517563] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421761811.743160] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421761811.972091] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.5 ms +[1421761812.177174] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761812.383396] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421761812.588674] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761812.793595] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761812.998224] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761813.203906] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421761813.409295] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421761813.614916] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421761813.819382] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761814.024081] 1075 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421761814.229814] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761814.434724] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761814.639411] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761814.844586] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761815.049767] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761815.255943] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421761815.461405] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421761815.668206] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.76 ms +[1421761815.873618] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761816.079690] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421761816.284774] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761816.489540] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761816.694008] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761816.899193] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421761817.104346] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761817.308839] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421761817.513563] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761817.718385] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761817.924196] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421761818.129164] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421761818.333889] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761818.539354] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761818.744810] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761818.949696] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761819.155722] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761819.360595] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761819.565841] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761819.771116] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761819.975676] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421761820.180474] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421761820.385813] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761820.590414] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421761820.795432] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761821.001136] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421761821.205958] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761821.410556] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761821.615658] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761821.820569] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761822.025360] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761822.230386] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761822.435414] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761822.639932] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761822.845829] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421761823.050883] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761823.257350] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.77 ms +[1421761823.462300] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761823.667424] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761823.872494] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761824.077149] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761824.282130] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761824.487394] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421761824.699493] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.30 ms +[1421761824.904158] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761825.108636] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761825.313458] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761825.519692] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421761825.724842] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761825.929664] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761826.134484] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761826.340116] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761826.545134] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761826.750888] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421761826.957484] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421761827.163625] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421761827.368680] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761827.574452] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421761827.779545] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761827.984543] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761828.189660] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761828.396032] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421761828.601028] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761828.806560] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761829.011934] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761829.217533] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421761829.424272] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421761829.629371] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761829.834222] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761830.039982] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421761830.244855] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761830.449591] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761830.654677] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761830.859910] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761831.064604] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421761831.270104] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421761831.475258] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761831.681441] 1482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761831.887155] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421761832.091424] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761832.295959] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761832.501864] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421761832.708208] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421761832.913234] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761833.119135] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421761833.324433] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761833.529989] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761833.735180] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761833.940507] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761834.146231] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761834.350819] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761834.556072] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421761834.762340] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761834.967305] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761835.172272] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761835.378292] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421761835.582974] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761835.789251] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421761835.994500] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761836.199954] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761836.404940] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761836.611430] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421761836.817126] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761837.022478] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421761837.228354] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421761837.433450] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761837.638700] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761837.845360] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.83 ms +[1421761838.049952] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761838.254810] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761838.460515] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421761838.665189] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421761838.869778] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761839.075686] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421761839.280428] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761839.485826] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761839.692090] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761839.897160] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761840.102506] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761840.307073] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761840.513106] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421761840.722705] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.17 ms +[1421761840.928085] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761841.132927] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761841.338920] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421761841.543994] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761841.749135] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761841.955028] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421761842.159941] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761842.364367] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761842.569512] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761842.774473] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761842.980543] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421761843.185468] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761843.390903] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761843.596743] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761843.802097] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761844.007156] 1075 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761844.213205] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421761844.418068] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761844.624091] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761844.829358] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761845.034406] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421761845.240024] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761845.444920] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761845.649910] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761845.854989] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761846.061193] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761846.267146] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761846.472400] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761846.678331] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421761846.884510] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421761847.089211] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761847.294463] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421761847.499752] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421761847.705821] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761847.910455] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761848.115252] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761848.319887] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761848.524473] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761848.729178] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761848.934299] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761849.139691] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421761849.345793] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421761849.550908] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761849.756392] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421761849.961797] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421761850.166932] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761850.371560] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761850.576919] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421761850.782244] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761850.987400] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761851.193890] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421761851.399298] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421761851.604815] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761851.809880] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761852.016355] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421761852.221485] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761852.426411] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761852.631240] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761852.837728] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421761853.043056] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421761853.248622] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761853.453393] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761853.658317] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761853.863021] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421761854.067377] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761854.272987] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761854.478407] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761854.683611] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761854.888415] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761855.094344] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421761855.298681] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421761855.503507] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761855.708252] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761855.914012] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761856.119477] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761856.324789] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421761856.531333] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421761856.736955] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421761856.941830] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761857.146581] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761857.351744] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761857.556661] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761857.762898] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421761857.968404] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761858.174814] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761858.379632] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761858.584439] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761858.789243] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761858.994650] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761859.199610] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421761859.404925] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761859.610225] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761859.815705] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761860.020883] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761860.225875] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761860.431136] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761860.636804] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421761860.841736] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761861.047983] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761861.253527] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761861.459423] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421761861.664498] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761861.870478] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421761862.075602] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761862.280727] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421761862.486032] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761862.691120] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421761862.896319] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761863.101164] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761863.306417] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421761863.511878] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761863.717303] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761863.922877] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421761864.128711] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421761864.333574] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761864.539254] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761864.743952] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761864.949385] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761865.154337] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761865.360333] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421761865.565375] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761865.771492] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761865.977173] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761866.182295] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421761866.387107] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421761866.592694] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421761866.798014] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761867.003050] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761867.208011] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761867.413121] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421761867.619448] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761867.824407] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761868.030631] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421761868.236420] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421761868.441290] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761868.646147] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761868.852022] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421761869.057150] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761869.262251] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761869.468307] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421761869.674883] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421761869.881530] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421761870.086242] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761870.291480] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761870.496681] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761870.702208] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761870.908776] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761871.114304] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761871.319856] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761871.526403] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421761871.732022] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421761871.936718] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761872.141608] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761872.346811] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761872.553233] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421761872.759748] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761872.965236] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761873.170152] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761873.374727] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761873.580234] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761873.785373] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761873.990528] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421761874.195579] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761874.400818] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421761874.606451] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761874.812346] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421761875.017294] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761875.222509] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761875.427727] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761875.633491] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761875.839788] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421761876.045109] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421761876.251308] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421761876.456928] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421761876.662888] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761876.868417] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761877.073169] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421761877.278482] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421761877.484483] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761877.689733] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421761877.894962] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421761878.099787] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761878.304265] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421761878.509339] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761878.714632] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761878.919363] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761879.124141] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761879.328560] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761879.533887] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421761879.739399] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761879.944362] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761880.149607] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761880.354376] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761880.559503] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761880.764220] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421761880.968978] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761881.173906] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761881.384150] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.65 ms +[1421761881.596103] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.01 ms +[1421761881.802369] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761882.007740] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761882.213252] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761882.418307] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761882.623759] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761882.830197] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761883.035445] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761883.240046] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761883.445370] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421761883.651563] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761883.856714] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761884.061903] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761884.267660] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421761884.472847] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761884.678746] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421761884.883992] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761885.088761] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761885.293718] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761885.498926] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761885.704670] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421761885.909203] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761886.114320] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761886.319148] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761886.524176] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761886.729611] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421761886.935353] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421761887.140562] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761887.346231] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421761887.551338] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761887.756387] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421761887.962754] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421761888.167792] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421761888.372632] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761888.577846] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761888.783380] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761888.989913] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421761889.195616] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421761889.400423] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761889.606504] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421761889.813005] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421761890.017739] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421761890.222631] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761890.427895] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761890.633873] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761890.840111] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421761891.045234] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421761891.250312] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761891.455948] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421761891.661083] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761891.866486] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761892.071930] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761892.277699] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761892.482290] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761892.688385] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761892.893377] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761893.098246] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761893.303165] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761893.508855] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421761893.714343] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761893.919653] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421761894.124842] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761894.329550] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761894.534261] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761894.739556] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761894.945371] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421761895.150995] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421761895.355920] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761895.562118] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761895.766871] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421761895.973204] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421761896.177800] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761896.382475] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421761896.588580] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421761896.793883] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761896.999618] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421761897.205681] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761897.432582] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421761897.651352] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421761897.856700] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761898.062612] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761898.267486] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761898.472691] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761898.677809] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421761898.882503] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761899.088080] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421761899.293205] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761899.498433] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421761899.704907] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421761899.909453] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761900.114574] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761900.319241] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761900.524026] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761900.728885] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761900.933476] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761901.138278] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761901.344088] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421761901.549166] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421761901.753731] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761901.958278] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761902.163201] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761902.368613] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421761902.573224] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761902.779053] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421761902.983974] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761903.188784] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761903.393164] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761903.598198] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761903.803088] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761904.007953] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761904.212787] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761904.417363] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761904.623082] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761904.828294] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761905.032984] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761905.237791] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761905.441960] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761905.646604] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761905.851634] 1063 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761906.055934] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761906.261008] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761906.465886] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761906.670818] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761906.875172] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761907.079873] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761907.284259] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761907.488905] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761907.694059] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421761907.898600] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421761908.104059] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421761908.308693] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761908.512826] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421761908.717480] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421761908.922526] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761909.127715] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761909.333765] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421761909.538765] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761909.743247] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761909.947532] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761910.152483] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761910.357672] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421761910.563519] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421761910.769505] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761910.975116] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761911.179479] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761911.385010] 1670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421761911.591433] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421761911.796520] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761912.001193] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761912.206133] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761912.411525] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761912.616525] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761912.821366] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761913.026822] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421761913.231547] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761913.436042] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761913.640524] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761913.845947] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421761914.050275] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421761914.256038] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761914.460577] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421761914.665207] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761914.869587] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761915.073955] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761915.278953] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761915.484349] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761915.689512] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761915.894239] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761916.099071] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761916.303864] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761916.508636] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761916.713419] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421761916.918271] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761917.124548] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761917.329332] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761917.534701] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421761917.739472] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761917.944461] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761918.149237] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761918.355208] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421761918.560335] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761918.764942] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761918.969432] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761919.174103] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761919.379819] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421761919.585296] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421761919.790353] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761919.996395] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421761920.201032] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761920.406819] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421761920.612865] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421761920.818732] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761921.025124] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421761921.229704] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421761921.434815] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761921.640038] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761921.844985] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761922.051258] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421761922.256695] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761922.461813] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761922.667300] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421761922.872790] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761923.078019] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761923.283136] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761923.488056] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761923.694391] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761923.899707] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761924.105293] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761924.311223] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421761924.517153] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761924.723539] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761924.929750] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761925.135889] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421761925.340351] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761925.545256] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421761925.750284] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761925.955401] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761926.160747] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761926.366326] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761926.571793] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761926.777070] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421761926.983156] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421761927.188052] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761927.394020] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761927.600037] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761927.805284] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761928.011627] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421761928.217012] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761928.422371] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761928.627965] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761928.832878] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761929.038682] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421761929.243597] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421761929.449421] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761929.654720] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761929.859863] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761930.065762] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421761930.270984] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761930.475911] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761930.680795] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761930.885716] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761931.091549] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761931.298195] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421761931.503536] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761931.709943] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421761931.916396] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761932.123201] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421761932.329588] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761932.534995] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761932.740458] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421761932.946210] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761933.152367] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421761933.357069] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761933.561909] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761933.767344] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761933.972739] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761934.177810] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421761934.383793] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761934.589391] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761934.795827] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761935.001458] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421761935.207047] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421761935.411429] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761935.617651] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761935.822057] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421761936.026955] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761936.232992] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761936.438892] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421761936.643856] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421761936.850000] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.85 ms +[1421761937.054659] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761937.260349] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761937.465421] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761937.670389] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761937.875439] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761938.080797] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761938.285514] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761938.490564] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761938.696734] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761938.901754] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761939.106431] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761939.311386] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761939.517271] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421761939.722426] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761939.927985] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761940.133080] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761940.337929] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761940.545784] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.66 ms +[1421761940.751755] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421761940.956969] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761941.162559] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421761941.372863] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.21 ms +[1421761941.607308] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.6 ms +[1421761941.857048] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.7 ms +[1421761942.083925] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421761942.301573] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421761942.517785] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421761942.801648] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.8 ms +[1421761943.051136] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.8 ms +[1421761943.277015] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421761943.483086] 1913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761943.687712] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761943.892404] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761944.097464] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761944.302224] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761944.506761] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761944.712741] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421761944.918430] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761945.123567] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421761945.328144] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761945.532831] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761945.737910] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761945.943419] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421761946.148680] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761946.353555] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761946.559788] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761946.764711] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421761946.970705] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421761947.175133] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761947.383027] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.52 ms +[1421761947.591771] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.18 ms +[1421761947.803406] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.89 ms +[1421761948.020647] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421761948.268582] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.1 ms +[1421761948.485946] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421761948.762674] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.6 ms +[1421761948.989691] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421761949.215868] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421761949.421019] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761949.625855] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761949.831253] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761950.040615] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.31 ms +[1421761950.253191] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.59 ms +[1421761950.469040] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421761950.674131] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761950.880235] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421761951.084873] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761951.289604] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761951.493890] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761951.698833] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761951.904319] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421761952.109080] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761952.314048] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761952.519307] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761952.725550] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761952.930652] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761953.135586] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421761953.340965] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761953.546972] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421761953.751842] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421761953.956851] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761954.162165] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421761954.366416] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761954.570928] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761954.776431] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421761954.982375] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421761955.187535] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421761955.392767] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761955.598326] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761955.804664] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421761956.010514] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421761956.216394] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421761956.421228] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761956.626941] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421761956.831974] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761957.037014] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761957.242931] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761957.450505] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421761957.657430] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421761957.863118] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421761958.068283] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761958.273096] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761958.478090] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761958.683441] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421761958.888926] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761959.093848] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761959.298294] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761959.504192] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421761959.709221] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761959.914697] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761960.119793] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761960.325181] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761960.530658] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761960.736302] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761960.942875] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761961.148833] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421761961.354052] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761961.558908] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761961.764592] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761961.969688] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421761962.174859] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421761962.379633] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761962.584487] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761962.789989] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421761962.995125] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761963.199905] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761963.405460] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761963.610175] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761963.815174] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761964.020543] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761964.225546] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761964.429891] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761964.635757] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421761964.841523] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761965.046615] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761965.251922] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761965.457566] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761965.662513] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761965.867307] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761966.072252] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761966.276691] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761966.482411] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421761966.688430] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421761966.893809] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761967.098745] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761967.303327] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761967.508389] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761967.713823] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761967.919141] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761968.124164] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761968.329257] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761968.534165] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761968.739098] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761968.944029] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761969.149358] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761969.355207] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421761969.560509] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421761969.766841] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761969.973089] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421761970.178516] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761970.383571] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761970.589177] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761970.794437] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761970.999387] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761971.204259] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761971.409845] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421761971.614621] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761971.819524] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761972.024066] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761972.229412] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761972.435930] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421761972.641311] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761972.846659] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761973.051066] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761973.257152] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421761973.462382] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421761973.667464] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761973.872750] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421761974.079291] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421761974.284374] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421761974.489562] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761974.694338] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761974.900241] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421761975.105247] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421761975.310252] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761975.516630] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421761975.721639] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761975.927209] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761976.133908] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421761976.339077] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761976.543673] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761976.749881] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421761976.954680] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761977.159765] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421761977.364422] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761977.569195] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761977.774036] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761977.979116] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761978.184193] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761978.389288] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761978.594835] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421761978.801088] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421761979.006481] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761979.212310] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761979.417509] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761979.622648] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761979.827748] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761980.032082] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761980.236780] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761980.442585] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761980.647856] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761980.852907] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761981.057102] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421761981.262015] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761981.467159] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761981.672138] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761981.877470] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761982.081986] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421761982.287086] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761982.492162] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761982.698023] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421761982.902976] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761983.109052] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421761983.315030] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421761983.520285] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761983.725375] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761983.930577] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761984.135430] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421761984.340663] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421761984.547438] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421761984.753088] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421761984.958494] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761985.164335] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421761985.370026] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421761985.574857] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761985.780105] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761985.986031] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761986.190850] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761986.395550] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761986.600817] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761986.806374] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761987.011802] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421761987.216747] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421761987.421638] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761987.626711] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421761987.831861] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761988.038357] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421761988.243446] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421761988.448054] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761988.652610] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761988.857511] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421761989.062302] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761989.267534] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761989.472598] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761989.677239] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421761989.882861] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421761990.087491] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761990.292545] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421761990.498300] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421761990.703643] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421761990.909415] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421761991.114032] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421761991.318810] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761991.523406] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421761991.727745] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421761991.932563] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761992.138404] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421761992.343642] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421761992.549814] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421761992.755478] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421761992.960655] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421761993.165496] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421761993.370224] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761993.574747] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761993.779410] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421761993.985123] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421761994.190016] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421761994.394707] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421761994.599352] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421761994.803912] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421761995.008743] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421761995.213903] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421761995.419075] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421761995.624171] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421761995.830985] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421761996.036363] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761996.245158] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.11 ms +[1421761996.454922] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.38 ms +[1421761996.660765] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421761996.865701] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761997.070574] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.03 ms +[1421761997.275973] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421761997.480850] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421761997.687431] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421761997.893474] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421761998.098857] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421761998.304482] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421761998.509767] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421761998.715572] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421761998.920592] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421761999.128086] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.71 ms +[1421761999.333157] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421761999.538085] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421761999.742965] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421761999.947728] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762000.152896] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762000.357243] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762000.562983] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762000.768130] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762000.974472] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762001.179757] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762001.385019] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762001.590195] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762001.795176] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762001.999937] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762002.204951] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762002.410058] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762002.615709] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762002.820971] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762003.026451] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762003.231917] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762003.436765] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762003.641054] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762003.846467] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762004.051669] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762004.256499] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762004.461804] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762004.667402] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421762004.872353] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762005.076593] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762005.281260] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762005.485864] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762005.690509] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762005.895056] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762006.099591] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762006.304018] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762006.509020] 296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762006.714475] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421762006.920800] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762007.125161] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762007.329757] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762007.534828] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762007.740009] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762007.945946] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762008.150804] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762008.355406] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762008.560302] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762008.765844] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762008.970925] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762009.175770] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762009.380739] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762009.586332] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762009.791074] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762009.996064] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762010.202127] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762010.407212] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762010.612255] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762010.818673] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421762011.024837] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762011.230331] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762011.436333] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762011.643151] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762011.848833] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762012.054343] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762012.259900] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762012.465133] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421762012.670966] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762012.876399] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762013.082735] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762013.288244] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762013.493882] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762013.700077] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762013.905444] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762014.110986] 1186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421762014.316047] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762014.522261] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762014.728790] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762014.933934] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762015.138904] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762015.344978] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762015.550106] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762015.755434] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762015.960067] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762016.164899] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762016.371031] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762016.577015] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762016.782176] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762016.988488] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762017.195162] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762017.400153] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762017.605952] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762017.810811] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762018.017110] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.88 ms +[1421762018.222411] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762018.428462] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762018.633488] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762018.839228] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762019.045804] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421762019.250267] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762019.455784] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762019.661040] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762019.866407] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762020.071585] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762020.276981] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762020.482106] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762020.688148] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762020.893804] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762021.099061] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762021.303890] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762021.509198] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762021.714603] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762021.919722] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762022.125218] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762022.330574] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762022.535527] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762022.741668] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762022.947207] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762023.152582] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762023.357431] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762023.562813] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762023.767569] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762023.973405] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762024.178495] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762024.383668] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762024.588969] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762024.793501] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762024.998759] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762025.204680] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762025.410977] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762025.616188] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762025.822217] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762026.028010] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762026.233622] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762026.439718] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762026.645635] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421762026.851257] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762027.056124] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762027.261150] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762027.467724] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421762027.674156] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762027.880524] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762028.086715] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762028.292754] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421762028.498439] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762028.704057] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762028.910714] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762029.115998] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762029.321540] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762029.527198] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762029.732271] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762029.937555] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762030.143156] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762030.348735] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762030.555051] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762030.760283] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762030.966754] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762031.172973] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762031.378071] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762031.583562] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762031.788949] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762031.994279] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762032.199394] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762032.404166] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762032.610123] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762032.815417] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762033.020880] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421762033.225693] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762033.431470] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762033.636496] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762033.842597] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762034.048789] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762034.254228] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762034.459340] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762034.664610] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421762034.869721] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762035.074752] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762035.279682] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762035.485331] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762035.690286] 1148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762035.895226] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762036.099656] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762036.304419] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762036.509402] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762036.714861] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421762036.921222] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762037.127344] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762037.332330] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762037.537644] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762037.743126] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762037.947760] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762038.153093] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762038.359650] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762038.566088] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762038.771125] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762038.976951] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762039.182563] 841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762039.388538] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762039.593482] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762039.798686] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762040.003685] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762040.208407] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762040.413082] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762040.618262] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762040.823665] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762041.029647] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762041.234845] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762041.439693] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762041.644349] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762041.849662] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762042.054694] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762042.259819] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762042.465048] 161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762042.670405] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762042.876086] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762043.081776] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762043.288413] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762043.493749] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762043.699220] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762043.905636] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762044.110631] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762044.316221] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421762044.521079] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762044.727069] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762044.932552] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762045.138515] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762045.344684] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762045.549896] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762045.754809] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762045.960333] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762046.165881] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762046.370940] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762046.575669] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762046.781693] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421762046.987165] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762047.192535] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762047.397821] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762047.603243] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762047.809743] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762048.014926] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762048.219509] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762048.425539] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762048.631712] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421762048.836847] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762049.042499] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762049.248140] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762049.453193] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762049.658296] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762049.865657] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.23 ms +[1421762050.071911] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762050.276950] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762050.481648] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762050.687709] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421762050.893961] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762051.099397] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762051.304448] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762051.509858] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762051.714785] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762051.919993] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762052.125175] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762052.329772] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762052.535599] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762052.740197] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762052.945076] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762053.150153] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762053.355619] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421762053.561987] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762053.767718] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762053.972584] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762054.177274] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762054.383170] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762054.587705] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762054.793417] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762054.999105] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762055.205251] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762055.410369] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762055.615217] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762055.821488] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762056.026815] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762056.232196] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762056.438312] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762056.644130] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762056.849675] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762057.055064] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762057.259967] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762057.465002] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762057.671623] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762057.877183] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421762058.082272] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421762058.287299] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421762058.492443] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762058.699048] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421762058.903966] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762059.108551] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762059.314394] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762059.520097] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421762059.725675] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762059.930405] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762060.136264] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762060.341209] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421762060.545659] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762060.750921] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762060.956087] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762061.160973] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762061.366977] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762061.573084] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762061.781350] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.72 ms +[1421762061.993045] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.93 ms +[1421762062.208634] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421762062.424674] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.7 ms +[1421762062.640829] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421762062.913994] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.3 ms +[1421762063.145771] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.9 ms +[1421762063.370243] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421762063.591730] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421762063.816909] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421762064.021422] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762064.227295] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762064.432132] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762064.637606] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762064.846239] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.92 ms +[1421762065.057950] 1133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.73 ms +[1421762065.275675] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421762065.491599] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421762065.756253] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.6 ms +[1421762065.979767] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421762066.205355] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421762066.437547] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.7 ms +[1421762066.659368] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421762066.884297] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421762067.103809] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421762067.308623] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762067.513783] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762067.718708] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762067.923078] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762068.128850] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762068.334984] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762068.539974] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762068.746100] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421762068.953330] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.76 ms +[1421762069.181690] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421762069.397246] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421762069.613291] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.7 ms +[1421762069.833592] 296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421762070.114462] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.3 ms +[1421762070.338127] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421762070.564433] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421762070.769512] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762070.974306] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762071.179703] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421762071.387741] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.12 ms +[1421762071.599690] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.53 ms +[1421762071.813647] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.94 ms +[1421762072.060252] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.5 ms +[1421762072.274943] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421762072.495903] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421762072.722576] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421762072.998083] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.3 ms +[1421762073.283256] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.9 ms +[1421762073.508709] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421762073.734138] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421762073.953760] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421762074.234939] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.4 ms +[1421762074.462744] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421762074.690196] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421762074.917411] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421762075.122370] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762075.327089] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762075.531900] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762075.737765] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762075.945493] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.20 ms +[1421762076.155374] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.20 ms +[1421762076.368445] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.76 ms +[1421762076.583897] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.4 ms +[1421762076.801664] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421762077.023540] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421762077.247834] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421762077.470750] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421762077.696849] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421762077.985383] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.9 ms +[1421762078.190818] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762078.478346] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.8 ms +[1421762078.707898] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421762078.990928] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.9 ms +[1421762079.218532] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421762079.503814] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.3 ms +[1421762079.731248] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421762079.936909] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762080.142901] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762080.347800] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762080.558939] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.87 ms +[1421762080.767732] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.89 ms +[1421762080.981607] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421762081.186826] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762081.393134] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762081.598332] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421762081.803016] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762082.007826] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762082.213962] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762082.419123] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762082.624401] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762082.829218] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762083.033956] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762083.240033] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762083.444784] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762083.650310] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762083.856153] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762084.060693] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762084.266377] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762084.471304] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762084.677131] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762084.881596] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762085.086161] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762085.291168] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762085.496182] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762085.701307] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762085.906507] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762086.111170] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762086.316222] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762086.521050] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762086.725506] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762086.930206] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762087.136185] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762087.340818] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762087.546030] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762087.751130] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762087.956618] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762088.162342] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762088.369820] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762088.574950] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762088.779723] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762088.985663] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762089.190552] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762089.395269] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762089.600886] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762089.806486] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762090.011544] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762090.216301] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762090.422146] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762090.626914] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762090.832669] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762091.038531] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762091.243606] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762091.448460] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762091.653182] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762091.857931] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762092.064074] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421762092.269047] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762092.474458] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421762092.680491] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762092.886325] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762093.091384] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762093.297011] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762093.502299] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762093.707538] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762093.912602] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762094.117428] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762094.322504] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762094.528650] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762094.733794] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421762094.940093] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421762095.145338] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762095.351176] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762095.556076] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762095.762161] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762095.967326] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762096.173749] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762096.378765] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762096.583625] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762096.790246] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421762096.996228] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762097.200722] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762097.406208] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762097.612847] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762097.818641] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762098.023613] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762098.228313] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762098.432729] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421762098.637887] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762098.843345] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762099.050032] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762099.254638] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762099.460470] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762099.665672] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762099.871819] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762100.076928] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762100.281324] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421762100.486060] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762100.691164] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762100.896299] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762101.102490] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762101.307123] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762101.512629] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762101.718621] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762101.924127] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762102.130206] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762102.335760] 1888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762102.540123] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762102.745043] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762102.951011] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762103.155464] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762103.359951] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762103.564542] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762103.770670] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762103.976596] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762104.182219] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762104.386562] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762104.591302] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762104.796649] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762105.001813] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762105.206610] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762105.411206] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762105.615961] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762105.820818] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762106.025520] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762106.230137] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762106.435572] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762106.640618] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762106.846384] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762107.051083] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762107.256349] 1522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762107.462128] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762107.667091] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762107.872869] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762108.078390] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762108.284841] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762108.490494] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762108.695279] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762108.900334] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762109.105955] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762109.310678] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762109.515140] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762109.720265] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421762109.925443] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762110.130490] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762110.335051] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762110.539713] 145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762110.744552] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762110.949958] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421762111.154766] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762111.359535] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762111.565785] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762111.770916] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762111.975652] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762112.180798] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762112.385535] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762112.590328] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762112.795489] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762113.002142] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762113.207926] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421762113.413550] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762113.619272] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762113.825652] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762114.030770] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421762114.235656] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762114.441024] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762114.646180] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762114.851285] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762115.056324] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421762115.260727] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762115.465295] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762115.669921] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762115.875021] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762116.079738] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762116.285025] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762116.490974] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762116.696831] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762116.902653] 1955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762117.107450] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762117.312225] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762117.516869] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762117.721871] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762117.927964] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762118.133169] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762118.339470] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762118.545335] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421762118.750017] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762118.954739] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762119.160129] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421762119.365461] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762119.570948] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762119.775546] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762119.980378] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762120.185153] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762120.390501] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762120.596805] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762120.802116] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762121.006715] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762121.211658] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762121.416486] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762121.620858] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762121.825712] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762122.031135] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762122.236252] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762122.441389] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762122.647463] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762122.852371] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762123.056804] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762123.261579] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762123.466339] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762123.671131] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762123.875982] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762124.080447] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762124.285199] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762124.490364] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421762124.695576] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762124.901292] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421762125.106739] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762125.311750] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762125.516580] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762125.721019] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762125.925640] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762126.130117] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762126.336430] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421762126.541409] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762126.746510] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762126.951434] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762127.156112] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762127.361244] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762127.567268] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762127.772503] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762127.978173] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762128.184319] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762128.388927] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762128.593712] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762128.798664] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421762129.004455] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762129.209233] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762129.413878] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762129.618916] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762129.823728] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762130.029536] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762130.234884] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762130.440276] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762130.645916] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.07 ms +[1421762130.851635] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762131.056586] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762131.262377] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762131.468991] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421762131.675509] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421762131.881754] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762132.087178] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762132.292732] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421762132.497998] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762132.702685] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762132.907918] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762133.112923] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762133.319022] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762133.524116] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762133.729444] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762133.934334] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762134.141923] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.95 ms +[1421762134.346676] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762134.551193] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762134.756183] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762134.961087] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762135.166503] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421762135.371529] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762135.577787] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762135.784172] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421762135.989850] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762136.194639] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762136.400725] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762136.610306] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.50 ms +[1421762136.816608] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421762137.021913] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762137.227808] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762137.432443] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762137.638516] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762137.844705] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762138.049906] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762138.254650] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762138.459043] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762138.665432] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421762138.870694] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421762139.075571] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762139.280119] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762139.484919] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762139.689869] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762139.895899] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762140.101009] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762140.305678] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762140.510649] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762140.716807] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762140.923085] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762141.128190] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762141.333501] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762141.539460] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762141.744365] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762141.950045] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762142.154481] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762142.360610] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762142.565627] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762142.774898] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.70 ms +[1421762142.980857] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762143.186452] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762143.398519] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.57 ms +[1421762143.606734] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.49 ms +[1421762143.821458] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421762144.036096] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421762144.294329] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=54.6 ms +[1421762144.567612] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.5 ms +[1421762144.795717] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421762145.020207] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421762145.304170] 1503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.5 ms +[1421762145.524120] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421762145.750427] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421762145.977326] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421762146.205450] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421762146.432319] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421762146.637434] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762146.842849] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762147.050047] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.50 ms +[1421762147.271476] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421762147.483178] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.89 ms +[1421762147.701423] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421762147.956318] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.4 ms +[1421762148.174021] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421762148.448841] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.2 ms +[1421762148.732718] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.2 ms +[1421762148.962486] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421762149.189542] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421762149.394074] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762149.599991] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762149.805039] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762150.009661] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762150.214862] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762150.419750] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762150.626583] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.41 ms +[1421762150.831969] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762151.037001] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762151.243164] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421762151.449113] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762151.654709] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762151.859540] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762152.064535] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762152.270768] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762152.477023] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762152.682318] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762152.887495] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762153.092102] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762153.298214] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421762153.503176] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762153.708969] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421762153.915269] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421762154.122343] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.38 ms +[1421762154.327326] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762154.532328] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762154.737770] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762154.942970] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762155.149206] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762155.354138] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762155.559445] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762155.764871] 1451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762155.970351] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762156.176400] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762156.381995] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762156.586989] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762156.792000] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762156.997650] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762157.202805] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762157.407830] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762157.613432] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762157.818592] 1238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762158.024606] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762158.229506] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762158.434125] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762158.638992] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762158.844018] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762159.050124] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762159.255491] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762159.460098] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762159.665785] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762159.871854] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421762160.077359] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762160.282445] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762160.487423] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762160.693498] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762160.898986] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762161.104509] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762161.309370] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762161.514363] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762161.719206] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762161.925197] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762162.131356] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762162.336121] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762162.540921] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762162.745692] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762162.950037] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762163.154713] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762163.359919] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762163.564968] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762163.771056] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421762163.976187] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762164.180912] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762164.386876] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762164.591601] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762164.796372] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762165.001965] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762165.206476] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762165.410975] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762165.616785] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762165.822875] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421762166.027578] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762166.231853] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762166.437923] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762166.642957] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762166.848045] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762167.052769] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762167.258452] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762167.463350] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762167.668948] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421762167.874379] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762168.079037] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762168.283622] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762168.488592] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762168.693678] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762168.899652] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762169.104033] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762169.309193] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762169.515392] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762169.722186] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.84 ms +[1421762169.927422] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762170.132373] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762170.338079] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762170.542667] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762170.748013] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762170.953696] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762171.159758] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762171.366081] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421762171.570870] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762171.775744] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762171.981611] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762172.187957] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762172.393456] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762172.598655] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762172.803860] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762173.009001] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762173.215068] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762173.423641] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.36 ms +[1421762173.628625] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762173.834394] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762174.038988] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762174.243664] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762174.449192] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421762174.654756] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762174.860558] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762175.065923] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762175.270635] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762175.475330] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762175.679749] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762175.885855] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421762176.090818] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762176.295711] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762176.500051] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762176.704658] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762176.909696] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762177.114683] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762177.319930] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762177.525102] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762177.730259] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421762177.935209] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762178.140200] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762178.345232] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762178.550289] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762178.754947] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762178.960195] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762179.164781] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762179.370247] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762179.575951] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762179.780651] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762179.985959] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762180.191292] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421762180.397372] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421762180.603791] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762180.809120] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762181.014488] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762181.219447] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762181.424999] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762181.630317] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762181.835698] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421762182.042607] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762182.248459] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762182.453912] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762182.659361] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762182.863911] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762183.069305] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762183.275353] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762183.480500] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762183.685473] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762183.891152] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762184.095779] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421762184.301957] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762184.507697] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762184.712852] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762184.919806] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.00 ms +[1421762185.124611] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762185.329625] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762185.534906] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762185.739841] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762185.944956] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762186.150169] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762186.355169] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762186.559808] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762186.766004] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421762186.971245] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762187.175669] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762187.381011] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762187.586912] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762187.792024] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762187.996761] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762188.201981] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762188.406445] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762188.611232] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762188.815829] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762189.020341] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762189.225420] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762189.430994] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762189.636152] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762189.841333] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762190.046127] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762190.251466] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762190.457826] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762190.663191] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762190.868260] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762191.073918] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762191.278531] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762191.484829] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421762191.690525] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762191.911651] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421762192.121138] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.77 ms +[1421762192.325928] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762192.531245] 1021 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762192.736296] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762192.942314] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762193.148238] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762193.354079] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762193.559776] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762193.765661] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762193.971387] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762194.176280] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762194.381962] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762194.586942] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762194.793050] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421762194.997584] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762195.202466] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762195.408062] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762195.613245] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762195.817984] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762196.022695] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762196.227334] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762196.432986] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.93 ms +[1421762196.639338] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762196.844641] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762197.049893] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762197.254665] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762197.461364] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.31 ms +[1421762197.666319] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762197.871470] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762198.084198] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.68 ms +[1421762198.292591] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.51 ms +[1421762198.498514] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762198.703453] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762198.908492] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762199.114069] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762199.319010] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762199.524152] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762199.729955] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762199.935036] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762200.140036] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762200.344420] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762200.549142] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762200.753981] 145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762200.960519] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762201.166004] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762201.370384] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762201.575215] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762201.780268] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762201.985455] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762202.190102] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762202.395982] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762202.601170] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762202.806480] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762203.011396] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762203.216848] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762203.421622] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762203.626740] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762203.832152] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762204.037375] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762204.242645] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762204.447323] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762204.652001] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762204.856814] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762205.062648] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762205.267178] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762205.472528] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762205.677124] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762205.882099] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762206.086955] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762206.291449] 145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762206.496309] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762206.702178] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762206.907092] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762207.111479] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762207.316827] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762207.522253] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762207.728048] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762207.932968] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762208.137422] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762208.342810] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762208.548112] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762208.753428] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762208.958810] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762209.164793] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762209.369661] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762209.574177] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762209.780332] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762209.985585] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762210.190541] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762210.395478] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762210.601977] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762210.806964] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762211.012829] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762211.217744] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762211.423598] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762211.629586] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762211.834629] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762212.039448] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762212.243956] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762212.448766] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762212.653422] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762212.859299] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762213.064146] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762213.268767] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762213.474411] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762213.679662] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762213.884715] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762214.089791] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762214.295916] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421762214.501802] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762214.707667] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421762214.913503] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421762215.119258] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762215.325724] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762215.532211] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421762215.736942] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762215.941616] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762216.146741] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762216.352901] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762216.558145] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762216.763197] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762216.968328] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421762217.173428] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762217.377715] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762217.582057] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762217.787558] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762217.992543] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762218.198533] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762218.404069] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762218.609155] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762218.813872] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762219.018517] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762219.224575] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.05 ms +[1421762219.432604] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.13 ms +[1421762219.644213] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.56 ms +[1421762219.882555] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.1 ms +[1421762220.099833] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421762220.305088] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762220.510915] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762220.716010] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762220.920420] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762221.126372] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762221.331187] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762221.536470] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762221.742437] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762221.948097] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762222.153051] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762222.358173] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762222.563214] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762222.768123] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762222.973231] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762223.178142] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762223.382844] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762223.587849] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762223.793247] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762223.998774] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762224.204556] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762224.410121] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762224.614780] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762224.819535] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762225.024238] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762225.229438] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762225.435730] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762225.641033] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762225.847393] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762226.053112] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762226.258328] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762226.463577] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762226.668578] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762226.873253] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762227.077724] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762227.284027] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421762227.488574] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762227.693905] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762227.899893] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762228.104554] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762228.309919] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762228.516242] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762228.723114] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421762228.928579] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762229.133340] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762229.338706] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421762229.544121] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762229.748957] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762229.954836] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762230.160732] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762230.366406] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762230.572148] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762230.777608] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762230.984507] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762231.190902] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762231.396524] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762231.603232] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421762231.808408] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762232.012965] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762232.217920] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762232.422659] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762232.627766] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762232.832741] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762233.037976] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762233.242707] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762233.447321] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762233.652215] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762233.857260] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762234.062277] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762234.266861] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762234.471610] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762234.676651] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762234.881546] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762235.086636] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762235.291380] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762235.496268] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762235.701352] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762235.906323] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762236.112710] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762236.317451] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762236.522085] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762236.727883] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762236.933263] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762237.138235] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762237.343959] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762237.548598] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762237.753101] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762237.959284] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762238.163851] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762238.368529] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762238.575272] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421762238.781708] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762238.987268] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762239.192904] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762239.397373] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762239.601683] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762239.807021] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762240.012266] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762240.218166] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762240.423047] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762240.628027] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762240.833221] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762241.038290] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762241.243759] 1720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762241.449468] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762241.654166] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762241.859253] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762242.065064] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762242.270334] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421762242.475687] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762242.681278] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762242.887479] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762243.093272] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762243.299009] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762243.503667] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762243.709657] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762243.915968] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762244.120778] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762244.325009] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762244.531163] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762244.736307] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762244.940886] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762245.146163] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762245.350956] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762245.555404] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762245.760087] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762245.965105] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762246.169992] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762246.375265] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762246.581472] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762246.786692] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762246.992477] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421762247.197173] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762247.401800] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762247.606463] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762247.811204] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762248.017041] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762248.222531] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762248.428882] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762248.634005] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762248.839219] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762249.045508] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421762249.250413] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762249.455560] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762249.660427] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762249.866941] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421762250.072646] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762250.277567] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762250.482082] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762250.687141] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762250.893175] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762251.098276] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762251.303778] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762251.508633] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762251.713791] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762251.918414] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762252.123695] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762252.328832] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762252.534113] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421762252.739036] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762252.944317] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762253.149876] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762253.354914] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762253.560109] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762253.766002] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762253.977606] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.90 ms +[1421762254.183602] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762254.389044] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762254.594672] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762254.800574] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762255.007059] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762255.212131] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762255.417553] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421762255.623626] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762255.828669] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762256.033316] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762256.238416] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762256.443834] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762256.649842] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421762256.854607] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762257.059094] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762257.264218] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762257.468880] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762257.673992] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762257.879428] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762258.084936] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762258.289999] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762258.494984] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762258.700146] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762258.905203] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421762259.109809] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762259.314808] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762259.519672] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762259.726301] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762259.931226] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762260.136461] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762260.342405] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762260.547602] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762260.753212] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762260.958843] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762261.164014] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762261.369873] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762261.575846] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762261.780827] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762261.986348] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762262.191447] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762262.396014] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762262.601925] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421762262.807218] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421762263.012594] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762263.217604] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762263.422861] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762263.627682] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762263.834048] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762264.040385] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762264.246662] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762264.452023] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762264.657190] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762264.862958] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762265.068157] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762265.273223] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762265.478707] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762265.684510] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762265.889151] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762266.094014] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762266.299099] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762266.505095] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762266.709910] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762266.915975] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762267.121028] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762267.325910] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762267.530666] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762267.735497] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762267.940021] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762268.144926] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762268.349998] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762268.554897] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762268.759976] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762268.964477] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762269.170634] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762269.376664] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421762269.582192] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762269.788033] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762269.993578] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762270.198438] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762270.403239] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762270.609229] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762270.814366] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762271.020708] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762271.225422] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762271.430308] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762271.636830] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421762271.842152] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762272.047253] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762272.252036] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762272.456578] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762272.661115] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762272.865663] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762273.070149] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762273.274911] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762273.480854] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762273.685749] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762273.891885] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762274.096763] 825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762274.301581] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762274.506835] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762274.711502] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762274.917188] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421762275.122296] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762275.326860] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762275.531930] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762275.736861] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762275.943064] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762276.148161] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762276.354404] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421762276.559223] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762276.764248] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762276.970183] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762277.176204] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421762277.381669] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762277.587694] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762277.793265] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762278.000063] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762278.206076] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762278.411018] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762278.616298] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762278.821814] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762279.026259] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762279.231094] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762279.437418] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762279.642374] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762279.847417] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762280.052868] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762280.257871] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762280.463325] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762280.668580] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762280.875227] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762281.079875] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762281.286237] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762281.492773] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762281.697733] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762281.902754] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762282.107756] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762282.313557] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762282.520073] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762282.725340] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762282.930187] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762283.135218] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421762283.340243] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762283.544711] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762283.749347] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762283.954860] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762284.160255] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762284.366473] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762284.571928] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762284.777350] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762284.983559] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762285.189005] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421762285.394745] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762285.599342] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762285.804441] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762286.009350] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762286.214274] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762286.420073] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762286.625628] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762286.831381] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762287.035871] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762287.241181] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762287.447049] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762287.652528] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762287.857793] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762288.062316] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762288.269226] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.16 ms +[1421762288.475439] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762288.681001] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762288.887287] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762289.093609] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762289.298567] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762289.503280] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762289.709270] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762289.915718] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421762290.120827] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762290.325097] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762290.529977] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762290.734744] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762290.940591] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762291.145564] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762291.350852] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762291.556272] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762291.761724] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762291.966613] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762292.171442] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762292.376231] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762292.581292] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762292.786550] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762292.992092] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762293.198056] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762293.403104] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762293.608538] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762293.813940] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762294.018965] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762294.224003] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762294.429392] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421762294.634584] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762294.839471] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762295.044386] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762295.249398] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762295.454561] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762295.660160] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421762295.866121] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762296.071040] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762296.276486] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762296.481351] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762296.687164] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762296.892471] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762297.096961] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762297.301375] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762297.506387] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762297.712438] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762297.918220] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762298.122773] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762298.327888] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762298.532756] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762298.738032] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762298.943848] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762299.148657] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762299.353649] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762299.558672] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762299.764693] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421762299.970522] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762300.176516] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762300.381387] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762300.586795] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762300.793339] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762300.998675] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762301.203547] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762301.408445] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421762301.613183] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762301.818417] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762302.023346] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762302.228091] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762302.434416] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762302.639880] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762302.845140] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762303.050075] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762303.254968] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762303.460095] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762303.665478] 1238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762303.870979] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762304.075688] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762304.280585] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762304.485840] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762304.691678] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762304.896660] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762305.100936] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762305.307547] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421762305.512674] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762305.718538] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762305.924335] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762306.129844] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762306.334857] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762306.539797] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762306.744437] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762306.950055] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762307.155222] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762307.361894] 1932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762307.567237] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762307.773784] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762307.979309] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762308.184167] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762308.388797] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762308.593454] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762308.798159] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762309.003115] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762309.208781] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762309.413588] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762309.619018] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762309.823307] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762310.027779] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762310.232476] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762310.437902] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762310.644099] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762310.849650] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762311.054199] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762311.259620] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762311.465015] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762311.669523] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762311.874238] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762312.079791] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762312.284707] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762312.491360] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762312.696304] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762312.900878] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762313.106825] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421762313.311342] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762313.516898] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762313.722007] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762313.928145] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762314.133544] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762314.338429] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762314.543405] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762314.748354] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762314.959296] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.23 ms +[1421762315.172006] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.87 ms +[1421762315.388560] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421762315.607608] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421762315.832393] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421762316.106800] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.3 ms +[1421762316.334139] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421762316.560968] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762316.785671] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421762317.011692] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421762317.235347] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421762317.456354] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421762317.682473] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421762317.909862] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421762318.126624] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421762318.354958] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421762318.581347] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421762318.786362] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762318.992444] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762319.201848] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.57 ms +[1421762319.408739] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.15 ms +[1421762319.635159] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421762319.850194] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421762320.068285] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421762320.285471] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421762320.503126] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421762320.727895] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421762320.933279] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762321.140103] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.74 ms +[1421762321.345258] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762321.550167] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762321.755172] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762321.960174] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762322.165255] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762322.370527] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762322.575953] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762322.780786] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762322.985525] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762323.190500] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762323.396170] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762323.601143] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762323.806325] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762324.012237] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762324.217430] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762324.423292] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762324.629010] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762324.834025] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762325.038917] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762325.244038] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762325.449548] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762325.655893] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762325.861463] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762326.066337] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762326.272012] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762326.477211] 161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762326.682907] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762326.888629] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762327.093497] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762327.298421] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421762327.507917] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.11 ms +[1421762327.719239] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.22 ms +[1421762327.957371] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.5 ms +[1421762328.175827] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421762328.439306] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.8 ms +[1421762328.666101] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421762328.894121] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421762329.120741] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421762329.325876] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762329.531420] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762329.737480] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421762329.942885] 1026 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421762330.149009] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762330.353687] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762330.559043] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762330.766132] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.98 ms +[1421762330.989703] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421762331.194561] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762331.399318] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762331.604034] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762331.811401] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.66 ms +[1421762332.020974] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.12 ms +[1421762332.234357] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.91 ms +[1421762332.446643] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.77 ms +[1421762332.664430] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421762332.884531] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421762333.107483] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421762333.328208] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421762333.553923] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421762333.781499] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421762334.008154] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421762334.213845] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.95 ms +[1421762334.435263] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421762334.662304] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421762334.944833] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.9 ms +[1421762335.167109] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421762335.390924] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421762335.676865] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.1 ms +[1421762335.906287] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.3 ms +[1421762336.111664] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762336.316745] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762336.522790] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762336.728432] 1522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762336.933518] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421762337.138672] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762337.343643] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762337.548493] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762337.753002] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762337.957403] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762338.163243] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762338.372259] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.34 ms +[1421762338.584242] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.05 ms +[1421762338.803127] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421762339.009190] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762339.215109] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762339.419923] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762339.626185] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762339.832667] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762340.037260] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762340.243017] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762340.448293] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762340.653560] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762340.858372] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762341.063162] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762341.267901] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762341.473884] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762341.679083] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762341.883615] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762342.088215] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762342.293065] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762342.499080] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421762342.703802] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762342.909865] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762343.114571] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762343.319337] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762343.524086] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762343.729637] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762343.934163] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762344.139267] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762344.344615] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762344.549891] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762344.755028] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762344.960444] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762345.165668] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762345.370332] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762345.575274] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762345.780572] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762345.987040] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762346.192277] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762346.397620] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762346.602505] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762346.808406] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762347.014506] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762347.219757] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762347.425050] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762347.631303] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762347.836239] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762348.040666] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762348.246304] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762348.452573] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762348.657267] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762348.861829] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762349.068309] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421762349.273418] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762349.479808] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762349.685080] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762349.889838] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762350.095392] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762350.300643] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762350.506537] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762350.711778] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762350.917305] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762351.122936] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762351.327664] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762351.533765] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762351.738980] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762351.944401] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762352.149446] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421762352.355055] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421762352.560022] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762352.765177] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762352.969722] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762353.175795] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762353.381925] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762353.587242] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762353.794057] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.27 ms +[1421762353.999606] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762354.204840] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762354.410363] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762354.616374] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762354.821436] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762355.026941] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762355.232497] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421762355.436869] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762355.642980] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762355.847840] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762356.053014] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762356.299672] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.9 ms +[1421762356.504943] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762356.710268] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762356.915676] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421762357.121050] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762357.326560] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762357.532502] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762357.737490] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762357.942688] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762358.148349] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762358.352990] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762358.557937] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762358.762948] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762358.968503] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762359.173646] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762359.378174] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762359.583193] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762359.787904] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762359.992904] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762360.198606] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762360.403510] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762360.608267] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762360.813345] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762361.018413] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762361.223739] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421762361.428751] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762361.633770] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762361.840264] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421762362.045242] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762362.249906] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762362.454666] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762362.661126] 1984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421762362.866629] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762363.071697] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762363.276043] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762363.481870] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762363.687461] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762363.893146] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421762364.098696] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762364.321015] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421762364.527221] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762364.732291] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762364.943424] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.81 ms +[1421762365.148641] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762365.354266] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421762365.583186] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.3 ms +[1421762365.788357] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762365.993724] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762366.199655] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762366.404967] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762366.610776] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762366.850797] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.4 ms +[1421762367.064895] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421762367.269626] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762367.474964] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762367.681208] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762367.885742] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762368.090816] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762368.297256] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762368.504299] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.08 ms +[1421762368.712324] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.32 ms +[1421762368.918729] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421762369.124589] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762369.330634] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762369.535490] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762369.740243] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762369.945010] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762370.149883] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762370.372042] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421762370.576959] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762370.783074] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762370.988070] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762371.224293] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.5 ms +[1421762371.429373] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762371.634355] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762371.839098] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762372.043626] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762372.269259] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421762372.473698] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762372.687900] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421762372.892510] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762373.097066] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762373.302130] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762373.548765] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.8 ms +[1421762373.753856] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762373.959114] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762374.163693] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762374.368063] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762374.572987] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762374.777614] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762374.982671] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762375.187998] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762375.392650] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762375.597535] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762375.803548] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762376.009214] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421762376.215360] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762376.420728] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762376.625908] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762376.831807] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762377.036358] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762377.241583] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762377.446691] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762377.659961] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.25 ms +[1421762377.865239] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421762378.070478] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762378.275384] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762378.480105] 145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762378.685363] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762378.891667] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762379.097520] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762379.302899] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762379.507972] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762379.714237] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762379.919722] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762380.124693] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762380.329736] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762380.535211] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762380.740558] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762380.945665] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762381.150792] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762381.356613] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762381.562008] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762381.767286] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762381.972406] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762382.178448] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762382.382987] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762382.588209] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762382.793181] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762382.999138] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762383.203942] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762383.408594] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762383.613629] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762383.819775] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762384.025427] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762384.230498] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762384.436518] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762384.642346] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762384.848450] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762385.053921] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421762385.259310] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762385.464017] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762385.669027] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762385.874329] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762386.078984] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762386.284673] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762386.489644] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762386.694938] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762386.899857] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762387.104306] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762387.309466] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762387.514752] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762387.719816] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762387.926632] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762388.131635] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762388.336961] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762388.542000] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762388.746915] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762388.952063] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762389.158156] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762389.363073] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762389.567994] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762389.772839] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762389.978087] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762390.183025] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762390.387473] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762390.592783] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762390.798302] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762391.003917] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762391.208942] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762391.413212] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762391.618434] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762391.824556] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762392.029285] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762392.234041] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762392.438677] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762392.645241] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.98 ms +[1421762392.850356] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762393.055980] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762393.260678] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762393.465285] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762393.670194] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762393.876547] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762394.082149] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762394.287693] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762394.493586] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762394.699357] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762394.903991] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762395.108818] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762395.313777] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762395.518861] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421762395.724956] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762395.931088] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421762396.137146] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762396.342511] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762396.549265] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.81 ms +[1421762396.754636] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421762396.960211] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762397.165229] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762397.370052] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421762397.574963] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762397.780718] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762397.986947] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762398.192067] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762398.397352] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762398.602432] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762398.808923] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762399.014753] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762399.220235] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762399.425356] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762399.631054] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762399.837178] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762400.044188] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.35 ms +[1421762400.251549] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.63 ms +[1421762400.457427] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762400.662246] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762400.867020] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762401.077121] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762401.282275] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762401.487556] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762401.692295] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762401.897598] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762402.102598] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762402.307323] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762402.512266] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762402.717009] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762402.921788] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762403.128155] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421762403.333506] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762403.538624] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762403.757804] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421762403.968719] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.34 ms +[1421762404.181370] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.83 ms +[1421762404.400400] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421762404.664858] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.5 ms +[1421762404.885500] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421762405.111940] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421762405.330981] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421762405.555456] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421762405.783278] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421762406.009626] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421762406.232258] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762406.460339] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421762406.686872] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421762406.892292] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421762407.096992] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421762407.302080] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421762407.508557] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.74 ms +[1421762407.717096] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.64 ms +[1421762407.929429] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.34 ms +[1421762408.148135] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421762408.366031] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421762408.636704] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=66.8 ms +[1421762408.859721] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421762409.086049] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421762409.374094] 1529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.3 ms +[1421762409.594703] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421762409.799408] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762410.054565] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.1 ms +[1421762410.337971] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.5 ms +[1421762410.560416] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421762410.785065] 1392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421762411.068952] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.0 ms +[1421762411.292982] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421762411.497609] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762411.702684] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762411.910396] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.94 ms +[1421762412.119336] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.46 ms +[1421762412.330354] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.51 ms +[1421762412.543730] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421762412.758291] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421762412.981299] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421762413.204453] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421762413.430034] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421762413.655140] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421762413.933581] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.7 ms +[1421762414.156373] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421762414.438122] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421762414.661558] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421762414.886091] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421762415.165006] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.2 ms +[1421762415.394247] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.5 ms +[1421762415.614784] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421762415.838175] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421762416.063239] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421762416.279130] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421762416.484295] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762416.689767] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.92 ms +[1421762416.897131] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.64 ms +[1421762417.107886] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.31 ms +[1421762417.322236] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.3 ms +[1421762417.540680] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421762417.757635] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421762417.979668] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421762418.259927] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.4 ms +[1421762418.482626] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421762418.707642] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421762418.927018] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421762419.151757] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421762419.356288] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762419.580932] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421762419.866405] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.5 ms +[1421762420.151251] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.1 ms +[1421762420.379256] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421762420.601214] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421762420.824171] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421762421.029585] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762421.234902] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762421.440878] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421762421.652161] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.77 ms +[1421762421.861235] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.44 ms +[1421762422.073725] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.91 ms +[1421762422.279038] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421762422.484699] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421762422.689374] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762422.894583] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762423.101300] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421762423.307230] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762423.512481] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762423.718197] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762423.922915] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.03 ms +[1421762424.127925] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762424.364101] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.4 ms +[1421762424.569326] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762424.774435] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762424.979314] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762425.184615] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421762425.390063] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762425.595491] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762425.800210] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762426.006161] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762426.211385] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762426.416308] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762426.621203] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762426.825911] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762427.030425] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762427.236298] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421762427.441657] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421762427.647421] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421762427.852074] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762428.057511] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762428.262464] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762428.467417] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762428.672288] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762428.877024] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762429.081816] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762429.287626] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421762429.492621] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762429.699119] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421762429.904286] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762430.109737] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762430.315812] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762430.521974] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762430.727626] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762430.933026] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762431.137500] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421762431.342554] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762431.547739] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762431.753030] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762431.958687] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762432.163704] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762432.368799] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762432.574963] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762432.779990] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762432.986102] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421762433.190939] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762433.395484] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762433.600826] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421762433.805880] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421762434.011661] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421762434.217998] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762434.423299] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762434.628939] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762434.833871] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762435.039026] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762435.244904] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762435.449977] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762435.655503] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762435.860961] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762436.065374] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762436.271560] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421762436.476701] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762436.682082] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762436.887666] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762437.092825] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762437.297863] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762437.503496] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762437.708597] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762437.913550] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421762438.118098] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762438.324354] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762438.529630] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762438.734648] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762438.939647] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762439.144462] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762439.349484] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762439.554989] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762439.760321] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762439.965910] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762440.171199] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421762440.377540] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421762440.582908] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421762440.789534] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762440.995046] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762441.200846] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762441.406279] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762441.611645] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762441.817636] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762442.022179] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762442.226722] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762442.432273] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762442.638077] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762442.843425] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762443.049633] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762443.254928] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762443.461370] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421762443.666784] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762443.871799] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762444.077770] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762444.283505] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762444.488140] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762444.693405] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762444.898605] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762445.103684] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762445.308504] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762445.513192] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762445.718760] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762445.925095] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762446.130430] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762446.334810] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762446.539992] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762446.744997] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762446.950483] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762447.156110] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762447.361862] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762447.566999] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762447.771797] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762447.977884] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762448.182391] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762448.387676] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421762448.594141] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762448.800387] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762449.005281] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762449.210161] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762449.415782] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762449.620579] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762449.825868] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762450.030300] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762450.236014] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421762450.440418] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762450.646349] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762450.851977] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762451.056745] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762451.261314] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762451.465797] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762451.670972] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762451.876055] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762452.080814] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762452.285308] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762452.490237] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762452.695398] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762452.901667] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762453.106365] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762453.322440] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421762453.527602] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762453.733954] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762453.939332] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762454.145483] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762454.349940] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762454.556044] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762454.761365] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762454.966445] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762455.172045] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762455.377971] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762455.583239] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762455.788186] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762455.993497] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762456.198721] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762456.403485] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762456.609504] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762456.814538] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762457.019675] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762457.226012] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421762457.431237] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762457.636807] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762457.842801] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762458.047797] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762458.253229] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421762458.458124] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762458.663794] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762458.869071] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762459.075340] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421762459.281123] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762459.486299] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762459.691073] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762459.896393] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762460.101268] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762460.306512] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762460.511277] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762460.715825] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762460.921414] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762461.127261] 1932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762461.332443] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762461.628987] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=92.3 ms +[1421762461.834287] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762462.038949] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762462.318946] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.3 ms +[1421762462.728221] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=205 ms +[1421762462.945379] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421762463.152245] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.02 ms +[1421762463.357104] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762463.578977] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421762463.783835] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762463.988846] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762464.193552] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762464.398094] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762464.603260] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762464.809826] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762465.021125] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.98 ms +[1421762465.226943] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762465.433912] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.07 ms +[1421762465.639394] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762465.845610] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762466.055175] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.22 ms +[1421762466.261106] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762466.467235] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762466.672864] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762466.880844] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.70 ms +[1421762467.086618] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762467.302610] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421762467.507539] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762467.742051] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.7 ms +[1421762467.947264] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762468.152622] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762468.358254] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762468.563460] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762468.769437] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762468.974945] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762469.180419] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762469.395483] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.4 ms +[1421762469.601855] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762469.807457] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762470.012497] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762470.217592] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762470.423081] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762470.628303] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762470.833357] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762471.038278] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762471.244350] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762471.450008] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762471.655050] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762471.861390] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762472.067095] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762472.271942] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762472.477464] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762472.682331] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762472.887510] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421762473.092720] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762473.298262] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762473.503187] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762473.708160] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762473.914437] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762474.127246] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.88 ms +[1421762474.332268] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762474.537474] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762474.748568] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.06 ms +[1421762474.999225] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.4 ms +[1421762475.220630] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421762475.426204] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421762475.631524] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421762475.836882] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762476.043085] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762476.248092] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762476.452813] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762476.658902] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762476.864012] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762477.068555] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762477.273818] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421762477.479210] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762477.684042] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762477.889145] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762478.093796] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762478.298736] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762478.505140] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762478.711020] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762478.916699] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762479.121669] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762479.327360] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421762479.532833] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762479.739213] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421762479.944950] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762480.150956] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762480.361328] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.95 ms +[1421762480.566224] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762480.777124] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.96 ms +[1421762480.982481] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762481.187785] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762481.393415] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762481.598712] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762481.803904] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762482.010244] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762482.215382] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762482.421389] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762482.627143] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762482.832531] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421762483.038015] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762483.243343] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421762483.448160] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762483.654185] 1880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421762483.858755] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762484.063620] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762484.269387] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762484.504236] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.7 ms +[1421762484.713766] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.76 ms +[1421762484.924354] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.76 ms +[1421762485.171189] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.9 ms +[1421762485.388562] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421762485.618594] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.1 ms +[1421762485.841087] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421762486.063757] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421762486.341005] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.4 ms +[1421762486.566470] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421762486.850229] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.0 ms +[1421762487.073010] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421762487.300028] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421762487.522194] 1175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421762487.811059] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.1 ms +[1421762488.016491] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762488.221965] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762488.426971] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762488.635819] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.05 ms +[1421762488.863176] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421762489.077584] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421762489.328390] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=47.1 ms +[1421762489.590023] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=57.5 ms +[1421762489.856583] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.7 ms +[1421762490.075000] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421762490.298895] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421762490.583693] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.5 ms +[1421762490.809325] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421762491.035309] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421762491.240783] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421762491.445702] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762491.650793] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762491.855637] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762492.060009] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762492.265578] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762492.471231] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762492.680689] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.10 ms +[1421762492.892822] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.34 ms +[1421762493.139969] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.2 ms +[1421762493.355125] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421762493.573490] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.4 ms +[1421762493.778814] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762493.984809] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762494.189895] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762494.397972] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.74 ms +[1421762494.606275] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.27 ms +[1421762494.818506] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.35 ms +[1421762495.035340] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421762495.254659] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421762495.530371] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.8 ms +[1421762495.813827] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.1 ms +[1421762496.036386] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421762496.258626] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421762496.484495] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421762496.711074] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421762496.928274] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421762497.153837] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421762497.383869] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421762497.589160] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762497.794496] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762497.999486] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762498.204228] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762498.409457] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762498.614951] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762498.819868] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762499.025336] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762499.240160] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421762499.444885] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762499.651088] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762499.856345] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762500.060944] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762500.267194] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762500.472981] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762500.678309] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762500.884640] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421762501.089503] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762501.295682] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762501.500948] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762501.706635] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762501.912320] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762502.117596] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762502.322217] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421762502.526994] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762502.732873] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762502.937828] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762503.143706] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762503.348590] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762503.553421] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762503.761076] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.58 ms +[1421762503.966747] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762504.172785] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762504.378987] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762504.583857] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762504.789842] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421762504.994804] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762505.199246] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762505.404732] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762505.610167] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762505.815564] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762506.021132] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762506.226024] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762506.431512] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762506.636843] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762506.842072] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762507.048756] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762507.254431] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762507.459323] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762507.664324] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762507.869497] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762508.074730] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762508.279252] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762508.484147] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762508.689224] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762508.894726] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762509.099778] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762509.304546] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762509.509314] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762509.715466] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762509.920623] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762510.125458] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762510.330006] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762510.535233] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762510.740461] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762510.945772] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762511.150867] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762511.355710] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762511.560477] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762511.765523] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762511.970269] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762512.174832] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762512.380595] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762512.585400] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762512.791601] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762512.997522] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762513.202351] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762513.407004] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762513.611666] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762513.816883] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762514.022382] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762514.227194] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762514.431748] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762514.636470] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762514.841341] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762515.046278] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762515.250784] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762515.469385] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421762515.674582] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762515.881222] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421762516.086057] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762516.290698] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762516.496215] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762516.701206] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762516.906584] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762517.111314] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762517.315932] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762517.521226] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762517.726187] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762517.931307] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762518.136226] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762518.341538] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421762518.547256] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421762518.753738] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421762518.959207] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762519.165439] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762519.371277] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762519.576789] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762519.781856] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762519.988391] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762520.193292] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762520.399170] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762520.604179] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762520.810258] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762521.015125] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762521.220334] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762521.425013] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762521.631262] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762521.836478] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762522.041729] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762522.247450] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762522.453111] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762522.657626] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762522.863080] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762523.067669] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762523.273538] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762523.479160] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762523.684153] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762523.889005] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762524.093790] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762524.299041] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762524.503490] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762524.707933] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762524.912936] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762525.119279] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762525.324194] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762525.528960] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762525.734579] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762525.939075] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762526.145433] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762526.350421] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762526.555365] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762526.760092] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762526.965653] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421762527.170757] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762527.378243] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.16 ms +[1421762527.583818] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762527.788552] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762527.993447] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762528.198681] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762528.404531] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762528.609857] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762528.815496] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762529.021324] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762529.226346] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762529.431399] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762529.636532] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762529.841270] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762530.045975] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762530.251069] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762530.455686] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762530.661743] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762530.867697] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762531.072131] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762531.277912] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762531.483282] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762531.688696] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762531.893957] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762532.098961] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762532.303703] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762532.509486] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762532.714782] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762532.920225] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762533.126174] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421762533.331445] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762533.536789] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762533.742945] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762533.948501] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762534.153634] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762534.359012] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762534.564256] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762534.768879] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762534.973536] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762535.178684] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762535.384497] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762535.589702] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762535.795048] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762536.017932] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421762536.223380] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762536.428677] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762536.633632] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762536.839648] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762537.044979] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762537.251207] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762537.456397] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762537.661660] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762537.867565] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762538.073094] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421762538.278756] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762538.484299] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762538.690047] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762538.895510] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762539.100401] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762539.306185] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762539.512418] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762539.719004] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762539.925435] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762540.129864] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762540.335206] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762540.540716] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421762540.746090] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762540.952279] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762541.157595] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762541.362795] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421762541.569003] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762541.774379] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762541.979923] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762542.184912] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762542.390088] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762542.595354] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762542.800768] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762543.006469] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762543.211269] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762543.416686] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762543.621653] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762543.828059] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421762544.033237] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762544.239256] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421762544.444900] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762544.649668] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762544.854682] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762545.059881] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762545.264742] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762545.470707] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762545.675994] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762545.881223] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762546.087538] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762546.293306] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762546.498649] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762546.703705] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762546.909099] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762547.114657] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762547.319491] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762547.524666] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762547.731038] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762547.936954] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762548.141788] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762548.347090] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762548.552102] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762548.758194] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762548.963466] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762549.168017] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762549.372326] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762549.578545] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762549.783666] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762549.989006] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762550.194467] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762550.399923] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762550.605668] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762550.812009] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762551.017545] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762551.222050] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762551.426559] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762551.631529] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762551.836238] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762552.040692] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762552.246285] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762552.450810] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762552.655832] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762552.861907] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762553.066942] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762553.271655] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762553.477861] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762553.682616] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762553.887532] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762554.093072] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762554.298451] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762554.503643] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762554.708976] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762554.914847] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421762555.119477] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762555.324094] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762555.529178] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762555.734242] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762555.940677] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762556.145413] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762556.351309] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762556.556127] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762556.761017] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762556.966263] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762557.172750] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.77 ms +[1421762557.379033] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421762557.585557] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421762557.790442] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762557.996346] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762558.201172] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762558.407105] 1888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762558.612598] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762558.818248] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762559.024330] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762559.228812] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762559.434301] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421762559.639937] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762559.845048] 1049 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762560.059746] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.1 ms +[1421762560.264670] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762560.469983] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762560.674688] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762560.881126] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762561.086197] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762561.291319] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762561.495653] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762561.701239] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762561.905806] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762562.110699] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762562.315193] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762562.520808] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762562.725385] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762562.936553] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.56 ms +[1421762563.159472] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421762563.365724] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762563.570908] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762563.778207] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.47 ms +[1421762563.984877] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.86 ms +[1421762564.194499] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.07 ms +[1421762564.408155] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.79 ms +[1421762564.626631] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421762564.832731] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762565.037255] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762565.242417] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421762565.447714] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762565.652978] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762565.859325] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762566.064853] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762566.269737] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762566.474917] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762566.680896] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762566.887110] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762567.091725] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762567.297135] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762567.503515] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762567.708968] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762567.914437] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762568.120147] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762568.325359] 1238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762568.530416] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762568.735536] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762568.940944] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762569.146261] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421762569.352574] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762569.557760] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762569.762605] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762569.967759] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762570.173810] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762570.378211] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762570.584322] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762570.790693] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421762570.995603] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762571.200888] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762571.405915] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762571.611785] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762571.816682] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762572.022377] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762572.227779] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421762572.433918] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762572.640076] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762572.845039] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762573.050909] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421762573.256648] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762573.462711] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762573.668683] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762573.873628] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762574.078786] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762574.284791] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762574.490732] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762574.697334] 1720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762574.902245] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762575.107343] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421762575.313550] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762575.519551] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762575.724532] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762575.929884] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762576.135374] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762576.341631] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762576.547047] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762576.754187] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421762576.959813] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421762577.166118] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762577.371747] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762577.578095] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762577.783167] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762577.989501] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762578.195084] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421762578.399655] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762578.604722] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762578.810197] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421762579.014911] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421762579.219786] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762579.424443] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762579.629600] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762579.835621] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762580.040780] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762580.245579] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762580.450561] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762580.655906] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762580.861077] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762581.067446] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762581.272604] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762581.477688] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762581.682569] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762581.887343] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762582.092295] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762582.297091] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762582.502609] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762582.707702] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762582.913055] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762583.118639] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762583.323310] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762583.528293] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762583.734914] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762583.940305] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762584.145907] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762584.351556] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762584.556619] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762584.761791] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762584.966495] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762585.172140] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762585.378300] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.82 ms +[1421762585.601687] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421762585.806688] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762586.011882] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762586.216679] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762586.421356] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762586.626542] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762586.831589] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762587.036085] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762587.240871] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762587.446786] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.07 ms +[1421762587.651875] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762587.856973] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762588.061661] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762588.266317] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762588.472316] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421762588.677248] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762588.882575] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762589.087266] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762589.291907] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762589.498090] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762589.703187] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762589.908209] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762590.120792] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.19 ms +[1421762590.326058] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421762590.531246] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762590.736722] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762590.942086] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762591.148704] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762591.354420] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762591.559720] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762591.764409] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762591.969086] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762592.175445] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762592.381363] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762592.587467] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421762592.793133] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762592.999625] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762593.204571] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762593.409232] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762593.615171] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421762593.819983] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762594.025802] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762594.230888] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762594.436310] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762594.641899] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762594.847083] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762595.052398] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762595.257314] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762595.463101] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762595.667630] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762595.873362] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762596.077982] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762596.283077] 1175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762596.488558] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762596.693081] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762596.897865] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762597.103738] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762597.308954] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762597.514047] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762597.718763] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762597.924746] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762598.130108] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421762598.335464] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762598.540583] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762598.745208] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762598.949756] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762599.154725] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762599.359763] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762599.566432] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421762599.771065] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762599.975915] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762600.181193] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421762600.387357] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762600.592502] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762600.797165] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762601.001999] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762601.207197] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762601.412699] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421762601.617404] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762601.822889] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762602.028419] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762602.233479] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762602.439838] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762602.646091] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762602.852540] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762603.058053] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762603.263061] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762603.468704] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762603.674962] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762603.880538] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762604.084742] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762604.289661] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762604.495816] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421762604.702179] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421762604.907819] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762605.112642] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762605.317659] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762605.522814] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762605.728330] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762605.933195] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762606.138690] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762606.344313] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762606.549620] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762606.755736] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762606.961335] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762607.166737] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421762607.372445] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762607.577340] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762607.783314] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762607.988276] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762608.193277] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762608.397914] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762608.603029] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762608.808860] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762609.013756] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762609.219936] 1870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762609.425487] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762609.631119] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762609.837709] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762610.042798] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762610.248769] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762610.454696] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762610.660325] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762610.865270] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762611.071597] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762611.276687] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762611.481469] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762611.687209] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421762611.892421] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762612.098850] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762612.303906] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762612.512537] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.39 ms +[1421762612.722790] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.09 ms +[1421762612.938007] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421762613.151504] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.56 ms +[1421762613.369761] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421762613.587235] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421762613.813065] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421762614.040505] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421762614.266776] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421762614.492476] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421762614.719363] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421762614.940914] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421762615.161551] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421762615.381003] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421762615.586523] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762615.791860] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762615.996602] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762616.204714] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.35 ms +[1421762616.414426] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.43 ms +[1421762616.657889] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.9 ms +[1421762616.874784] 1072 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421762617.095837] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421762617.373077] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.6 ms +[1421762617.595065] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.7 ms +[1421762617.822164] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421762618.051392] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421762618.279765] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421762618.485227] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421762618.713683] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421762618.996908] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.1 ms +[1421762619.222140] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421762619.451555] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421762619.677097] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421762619.963648] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.5 ms +[1421762620.169069] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762620.375176] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762620.585981] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.93 ms +[1421762620.802282] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421762621.030317] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421762621.242766] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.48 ms +[1421762621.495284] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.6 ms +[1421762621.717858] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421762621.938459] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421762622.143843] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762622.371749] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421762622.597746] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421762622.804088] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762623.029394] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421762623.237021] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.85 ms +[1421762623.466183] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421762623.746063] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.2 ms +[1421762624.032266] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.5 ms +[1421762624.259276] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421762624.482511] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421762624.768128] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.5 ms +[1421762624.972993] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762625.178194] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762625.384774] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.30 ms +[1421762625.592275] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.22 ms +[1421762625.803202] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.39 ms +[1421762626.042851] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.9 ms +[1421762626.255869] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.42 ms +[1421762626.474259] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421762626.699410] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421762626.934122] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.2 ms +[1421762627.164582] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.6 ms +[1421762627.389891] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421762627.612528] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421762627.891206] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.0 ms +[1421762628.126563] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.7 ms +[1421762628.356143] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421762628.582887] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421762628.865086] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.4 ms +[1421762629.092799] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421762629.317245] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421762629.543289] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421762629.748141] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762629.954198] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762630.159694] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421762630.368264] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.90 ms +[1421762630.579460] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.52 ms +[1421762630.792708] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.72 ms +[1421762631.007938] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421762631.225911] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.1 ms +[1421762631.450404] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421762631.666710] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421762631.949425] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.5 ms +[1421762632.178808] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.5 ms +[1421762632.400385] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421762632.605528] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762632.810645] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762633.015432] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762633.223043] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.86 ms +[1421762633.432275] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.47 ms +[1421762633.640144] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.02 ms +[1421762633.851779] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.62 ms +[1421762634.107900] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=52.3 ms +[1421762634.377502] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=65.7 ms +[1421762634.582464] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762634.787140] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762634.992699] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.94 ms +[1421762635.198357] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762635.403269] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421762635.608798] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762635.814728] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762636.020887] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762636.225602] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762636.432337] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.34 ms +[1421762636.637318] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762636.843561] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762637.049375] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762637.254081] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762637.458706] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762637.665283] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421762637.871623] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762638.076113] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762638.280389] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762638.486272] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762638.692604] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762638.898604] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762639.103379] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762639.309148] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762639.514389] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762639.719640] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762639.925036] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762640.130235] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762640.335581] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762640.541772] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762640.747125] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762640.951707] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762641.157939] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762641.362792] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762641.567369] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762641.772584] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762641.978092] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762642.183229] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762642.388871] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762642.594329] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762642.799412] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762643.004473] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762643.210770] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762643.418277] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.50 ms +[1421762643.632257] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.87 ms +[1421762643.862554] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.6 ms +[1421762644.094418] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.9 ms +[1421762644.304213] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.68 ms +[1421762644.596090] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=88.1 ms +[1421762644.802233] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762645.007269] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762645.212884] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421762645.417929] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762645.622474] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762645.827162] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762646.061753] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.0 ms +[1421762646.266901] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762646.472296] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762646.676784] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762646.881308] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762647.085991] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762647.291313] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762647.496335] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762647.702527] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762647.907287] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762648.112715] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762648.318762] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762648.524646] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762648.729507] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762648.934456] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762649.139027] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762649.344100] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762649.550111] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762649.755428] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762649.960673] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762650.166125] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762650.371770] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762650.580769] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.11 ms +[1421762650.787191] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421762650.992572] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762651.197895] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762651.402517] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762651.608354] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762651.813137] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762652.017516] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762652.222393] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762652.427272] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762652.632313] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762652.837095] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762653.042288] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762653.247640] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762653.453444] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762653.659723] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762653.865774] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421762654.071909] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762654.278147] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762654.484704] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762654.690942] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762654.895820] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762655.100087] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.02 ms +[1421762655.304941] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762655.510274] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762655.717317] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.87 ms +[1421762655.922422] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762656.127158] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762656.332449] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762656.537831] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762656.743045] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762656.948406] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762657.153679] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421762657.360354] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.78 ms +[1421762657.565751] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762657.771720] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762657.977943] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762658.183826] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762658.388335] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762658.593237] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762658.797925] 30 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762659.003186] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762659.208062] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762659.413934] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762659.619538] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762659.824657] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762660.029902] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762660.234684] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762660.439043] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762660.644168] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762660.849395] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762661.054791] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762661.260570] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762661.465336] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762661.670327] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762661.875265] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762662.079785] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762662.285528] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421762662.491334] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762662.697256] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762662.902687] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762663.108055] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762663.313605] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762663.518964] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762663.723702] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762663.929837] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762664.136037] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762664.341992] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762664.547270] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762664.751890] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762664.957794] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762665.162511] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762665.368076] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762665.574356] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.67 ms +[1421762665.780622] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421762665.986235] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762666.191071] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762666.395867] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762666.601734] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762666.807471] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762667.012415] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762667.218630] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.75 ms +[1421762667.424277] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762667.629189] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762667.834307] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762668.039791] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762668.244623] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762668.449207] 1175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762668.655404] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762668.861032] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762669.066203] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762669.270671] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762669.475320] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762669.680441] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762669.885885] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762670.090675] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762670.295461] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762670.501372] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762670.707430] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762670.912872] 1297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762671.117514] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762671.322896] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762671.528107] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762671.734210] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762671.939078] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762672.143744] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762672.348573] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762672.554556] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762672.760395] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762672.966064] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762673.172435] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762673.377588] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762673.582997] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762673.789179] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762673.995725] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762674.201083] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762674.406273] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762674.611759] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762674.817008] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762675.022402] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762675.228588] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762675.433134] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762675.637684] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762675.842584] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762676.047343] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762676.252785] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762676.461053] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.51 ms +[1421762676.666705] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762676.873182] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762677.078826] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762677.284857] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762677.490600] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762677.695734] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762677.902137] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421762678.107446] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762678.312138] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762678.517499] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762678.722609] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762678.928254] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762679.134449] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762679.340783] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421762679.546166] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762679.751146] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762679.955971] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762680.160849] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762680.366123] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762680.572043] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762680.777642] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762680.986354] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.00 ms +[1421762681.198656] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.51 ms +[1421762681.417172] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.4 ms +[1421762681.638979] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421762681.858067] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421762682.081717] 30 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421762682.311899] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.3 ms +[1421762682.539953] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421762682.750644] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.18 ms +[1421762683.027777] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.7 ms +[1421762683.256602] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421762683.482483] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421762683.711156] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421762683.983429] 1482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=68.2 ms +[1421762684.268345] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.4 ms +[1421762684.473397] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762684.678618] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762684.887861] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.37 ms +[1421762685.098275] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.84 ms +[1421762685.311039] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.91 ms +[1421762685.530858] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421762685.791434] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.3 ms +[1421762686.066894] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.4 ms +[1421762686.287544] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421762686.514255] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421762686.736648] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421762687.026057] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.4 ms +[1421762687.306746] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.0 ms +[1421762687.535703] 904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421762687.761774] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421762687.986044] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421762688.216680] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.9 ms +[1421762688.444965] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421762688.673552] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421762688.878313] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762689.083051] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762689.290292] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.96 ms +[1421762689.499481] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.46 ms +[1421762689.711876] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.93 ms +[1421762689.925594] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.50 ms +[1421762690.141965] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421762690.360879] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421762690.635874] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.1 ms +[1421762690.921958] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.0 ms +[1421762691.147346] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421762691.432648] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.1 ms +[1421762691.638066] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762691.843460] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762692.048445] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762692.253606] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762692.459175] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762692.664645] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762692.870182] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762693.076081] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762693.282037] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421762693.489550] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.62 ms +[1421762693.702749] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.31 ms +[1421762693.946896] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=40.2 ms +[1421762694.198009] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=47.3 ms +[1421762694.419788] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421762694.644169] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421762694.849336] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762695.054338] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762695.260454] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762695.465582] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762695.674203] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.80 ms +[1421762695.887001] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.22 ms +[1421762696.100364] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.75 ms +[1421762696.318988] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421762696.537074] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421762696.756964] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421762696.980686] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762697.262308] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.1 ms +[1421762697.485273] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421762697.773114] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.2 ms +[1421762697.979255] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762698.263276] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.5 ms +[1421762698.487102] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421762698.710026] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421762698.937771] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421762699.160530] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421762699.447438] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.5 ms +[1421762699.673585] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421762699.880265] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.69 ms +[1421762700.086909] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421762700.291930] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421762700.499988] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.67 ms +[1421762700.710987] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.12 ms +[1421762700.928194] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421762701.182791] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=50.6 ms +[1421762701.404000] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421762701.625958] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421762701.850450] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421762702.135813] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.9 ms +[1421762702.362136] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421762702.646135] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.8 ms +[1421762702.851586] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762703.056991] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762703.262908] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762703.467541] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762703.672095] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762703.886185] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421762704.113125] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421762704.325497] 89 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.74 ms +[1421762704.538965] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.64 ms +[1421762704.761508] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421762704.966781] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762705.171775] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762705.376333] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762705.583087] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.34 ms +[1421762705.809729] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421762706.022771] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.97 ms +[1421762706.238183] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421762706.461172] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421762706.683686] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421762706.909130] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421762707.194956] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.9 ms +[1421762707.420751] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421762707.647035] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421762707.873941] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421762708.078867] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762708.364610] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.1 ms +[1421762708.646774] 1716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.6 ms +[1421762708.865252] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421762709.089334] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421762709.314798] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421762709.538924] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421762709.743815] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762709.948905] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762710.155583] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.97 ms +[1421762710.381200] 1541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421762710.594134] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.18 ms +[1421762710.845004] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=47.1 ms +[1421762711.110947] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.3 ms +[1421762711.334616] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421762711.612798] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.3 ms +[1421762711.837724] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421762712.066737] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.0 ms +[1421762712.351820] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.3 ms +[1421762712.580958] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421762712.785853] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762712.991279] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762713.196844] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762713.401943] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762713.607773] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762713.812775] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762714.018956] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762714.224296] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762714.429275] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762714.633940] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762714.838835] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762715.044336] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762715.250387] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762715.456672] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762715.661966] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762715.867932] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.99 ms +[1421762716.075251] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.96 ms +[1421762716.287561] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.50 ms +[1421762716.501753] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421762716.717207] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421762716.936332] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421762717.159133] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421762717.364321] 837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762717.569181] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762717.774389] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762717.981210] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421762718.190403] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.75 ms +[1421762718.399844] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.19 ms +[1421762718.610955] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.26 ms +[1421762718.816367] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762719.020715] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421762719.225979] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762719.431090] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762719.636027] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762719.841605] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762720.046446] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762720.252437] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762720.457409] 1075 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762720.662188] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762720.867108] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762721.071806] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762721.277094] 1297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762721.483215] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762721.688423] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762721.894390] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762722.099927] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762722.305189] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762722.510817] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762722.716552] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762722.921917] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762723.127973] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762723.332857] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762723.537883] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762723.743474] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762723.949493] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421762724.155559] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762724.361337] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762724.566584] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762724.772245] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762724.977682] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762725.182694] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762725.388554] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762725.593820] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762725.799218] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421762726.004169] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762726.209458] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421762726.414932] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762726.620186] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762726.826490] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762727.031281] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762727.237278] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762727.443197] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762727.649559] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762727.855721] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762728.060714] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762728.265467] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762728.470180] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762728.676213] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762728.881422] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762729.086263] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762729.291256] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762729.496453] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762729.701763] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762729.907117] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762730.112137] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762730.316892] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762730.522642] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421762730.727849] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762730.933867] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762731.139085] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762731.344797] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762731.549977] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762731.755216] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762731.961400] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762732.166040] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762732.371600] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762732.576495] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762732.781371] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762732.986529] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762733.190900] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762733.395713] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762733.600493] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762733.805751] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762734.011971] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762734.216950] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762734.421701] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762734.626562] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762734.831511] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762735.036025] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762735.240538] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762735.445241] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762735.651323] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762735.856975] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762736.061912] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762736.266572] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762736.472248] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762736.678365] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421762736.885233] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421762737.090862] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762737.295817] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762737.501160] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421762737.706731] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762737.912633] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421762738.117341] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762738.322071] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762738.528134] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762738.734437] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762738.940995] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762739.146953] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762739.352835] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762739.557950] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762739.762715] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762739.968310] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421762740.173554] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762740.378599] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762740.583209] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421762740.789409] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762740.995652] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762741.201216] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762741.406009] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762741.610624] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762741.815808] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762742.021208] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762742.226619] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762742.431540] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762742.636549] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762742.841962] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762743.046679] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762743.251590] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762743.458119] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421762743.662989] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762743.869127] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762744.073825] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762744.278627] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762744.483588] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762744.688327] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762744.893030] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762745.097853] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762745.303019] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762745.508299] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762745.713082] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762745.917610] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762746.122410] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762746.327345] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762746.532298] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762746.736986] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762746.941764] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762747.146993] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762747.352293] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421762747.558311] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762747.763526] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762747.969237] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762748.174157] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762748.379440] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762748.584285] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762748.788988] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762748.995371] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762749.201766] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762749.407340] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421762749.612575] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762749.817958] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762750.022917] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762750.228907] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762750.433655] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762750.639802] 1880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.80 ms +[1421762750.844566] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762751.049836] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762751.254896] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762751.461181] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762751.667797] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421762751.872447] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762752.076942] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762752.282971] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762752.488975] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762752.695109] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762752.901103] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762753.106710] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762753.311665] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762753.517384] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762753.722396] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762753.927379] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762754.132362] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762754.337401] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762754.542695] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762754.747413] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762754.952064] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762755.156693] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762755.361545] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762755.567758] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762755.773549] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762755.979970] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762756.185983] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762756.390560] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762756.595420] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762756.800236] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762757.005471] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421762757.210544] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762757.415543] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762757.620644] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762757.826348] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762758.031229] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762758.236576] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762758.441627] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762758.646382] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762758.853226] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.80 ms +[1421762759.058428] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762759.263363] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762759.468416] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762759.674013] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762759.878636] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762760.083497] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762760.288748] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762760.495282] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.72 ms +[1421762760.700508] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762760.905844] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762761.110582] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762761.315622] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762761.520792] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762761.726596] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762761.932867] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762762.137920] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762762.344148] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762762.550772] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762762.755516] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762762.960253] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762763.165001] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762763.371202] 1503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762763.576589] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762763.781742] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762763.987783] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762764.192929] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762764.398235] 1238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762764.604722] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762764.809546] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762765.014660] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762765.219235] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762765.423802] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762765.628656] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762765.833975] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762766.040355] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762766.246093] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762766.450776] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762766.655871] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762766.860775] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762767.066707] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762767.272731] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762767.478369] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.96 ms +[1421762767.683736] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762767.889129] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762768.093714] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762768.298733] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762768.504806] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762768.709703] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762768.915563] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762769.120890] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421762769.325546] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762769.531396] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762769.736482] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762769.941411] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762770.146863] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762770.352148] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762770.557404] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762770.762407] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762770.968496] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762771.173332] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762771.378971] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762771.583750] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762771.789012] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762771.994185] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762772.198628] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762772.403557] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762772.608355] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762772.813255] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762773.018174] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762773.222789] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762773.428180] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762773.632675] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762773.837875] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762774.043694] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762774.248549] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762774.453410] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762774.658530] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421762774.863595] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762775.068316] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762775.274032] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762775.478515] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762775.683433] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762775.888976] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762776.094518] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762776.301134] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762776.506472] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762776.712803] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762776.918452] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762777.123317] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762777.327938] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762777.533278] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762777.739516] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421762777.944795] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762778.149602] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762778.355120] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762778.561516] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762778.767645] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762778.974260] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762779.179612] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762779.384682] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762779.589901] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762779.794943] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762780.000671] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762780.205792] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762780.410392] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762780.614979] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762780.820867] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762781.026039] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762781.231137] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762781.436235] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762781.642435] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762781.847401] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762782.053986] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762782.259203] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762782.464586] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762782.670734] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762782.876757] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762783.082569] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762783.288386] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762783.493573] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762783.698236] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762783.902919] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762784.108209] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762784.313087] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762784.517933] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762784.722662] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762784.927165] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762785.137549] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.45 ms +[1421762785.343679] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762785.549612] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762785.755173] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762785.960015] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762786.166484] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421762786.372236] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762786.578212] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.94 ms +[1421762786.783095] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762786.988445] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762787.194850] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421762787.401541] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421762787.607930] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762787.812639] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762788.017144] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762788.223453] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762788.429018] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762788.634041] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762788.839328] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762789.044241] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762789.249605] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421762789.454364] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762789.658779] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762789.863165] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762790.067562] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762790.273020] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762790.478014] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762790.682836] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762790.887560] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762791.092271] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762791.297201] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762791.502276] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762791.707344] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762791.912293] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762792.117028] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762792.322406] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762792.527571] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762792.733713] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762792.939186] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762793.144116] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762793.349413] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762793.554249] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762793.759441] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762793.965332] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762794.171323] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762794.375817] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762794.580545] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762794.785892] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762794.991744] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762795.197727] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762795.403316] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421762795.607676] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762795.812303] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762796.017046] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762796.223009] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762796.427965] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762796.633319] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762796.837974] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762797.043741] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762797.248836] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762797.454083] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762797.659130] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762797.864527] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762798.069644] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762798.274549] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762798.480665] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421762798.685611] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762798.889955] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762799.094754] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762799.300733] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762799.506844] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762799.712762] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762799.919137] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762800.124166] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762800.329166] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762800.534379] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762800.739570] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762800.946296] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762801.152322] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762801.358555] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421762801.564540] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762801.769878] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762801.975474] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762802.180984] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421762802.386685] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762802.591515] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762802.796639] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762803.001545] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762803.206790] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762803.412109] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762803.617578] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762803.822867] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762804.028471] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762804.234260] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762804.438999] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762804.643886] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762804.848616] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762805.053858] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762805.258414] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762805.463124] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762805.668058] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762805.873400] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762806.078888] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762806.283742] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762806.489141] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762806.693966] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762806.899251] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762807.103845] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762807.309182] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762807.514593] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762807.720875] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762807.926121] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762808.132641] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762808.337649] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762808.543600] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762808.749556] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762808.954814] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762809.159734] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762809.364458] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762809.569425] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762809.774814] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762809.980084] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762810.185119] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421762810.390653] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762810.596542] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762810.803281] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762811.008268] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762811.213768] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762811.418829] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762811.624701] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762811.830380] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421762812.035719] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421762812.241279] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762812.446700] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762812.653005] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762812.857993] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762813.063873] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762813.268667] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762813.473505] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762813.678617] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762813.883881] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762814.088407] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762814.293047] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762814.497693] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762814.702542] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762814.908951] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762815.114190] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762815.319571] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762815.525317] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762815.730376] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762815.935827] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762816.140591] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762816.345432] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762816.550145] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762816.754915] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762816.960065] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762817.164817] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762817.371295] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421762817.579797] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.25 ms +[1421762817.785809] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762817.991425] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762818.196742] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762818.403542] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762818.608693] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762818.814265] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762819.019775] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762819.226085] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762819.432050] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762819.637030] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762819.843399] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762820.048453] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762820.253081] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762820.458252] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762820.663914] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762820.868983] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762821.075021] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421762821.279860] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762821.484424] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762821.689461] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762821.894772] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762822.100685] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762822.306062] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762822.511565] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762822.716234] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762822.920935] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762823.125781] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762823.331043] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762823.537483] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762823.742399] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762823.948098] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762824.154424] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762824.360782] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762824.565678] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762824.771508] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762824.976688] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762825.185469] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.50 ms +[1421762825.391016] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762825.596729] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762825.801630] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762826.006630] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762826.211877] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762826.418226] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762826.623464] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762826.828466] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762827.033252] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762827.238108] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762827.442536] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762827.647694] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762827.853577] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762828.058118] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762828.262878] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762828.467791] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762828.672694] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762828.877831] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762829.082641] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762829.287300] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762829.493398] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762829.698364] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762829.902931] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762830.108705] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762830.313776] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762830.519917] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762830.726116] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762830.931693] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762831.136774] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762831.342271] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762831.547570] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762831.752600] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762831.957621] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762832.162606] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762832.368054] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762832.574275] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762832.780737] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762832.985870] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762833.192005] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762833.396936] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762833.602131] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762833.808284] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762834.013220] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762834.219323] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762834.424588] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762834.630596] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421762834.835440] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762835.040225] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762835.245237] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762835.450410] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762835.655586] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762835.860964] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762836.067027] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762836.272853] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762836.478296] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762836.683389] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762836.889820] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762837.095674] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762837.301967] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762837.507281] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762837.712528] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762837.917634] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762838.123768] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762838.345692] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421762838.550979] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762838.756725] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762838.961925] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762839.166900] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762839.372825] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762839.578431] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762839.783924] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762839.989494] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762840.195815] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762840.402179] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762840.608107] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762840.813289] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762841.019703] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762841.225513] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762841.431927] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421762841.637456] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762841.843233] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762842.048515] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762842.253429] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762842.458823] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762842.664818] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762842.871198] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762843.077425] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762843.282682] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762843.488813] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762843.694133] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762843.899173] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762844.105263] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762844.310626] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762844.516956] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762844.722252] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762844.927488] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762845.133214] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762845.338017] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762845.542918] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762845.748267] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421762845.953080] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762846.159126] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762846.364726] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762846.570090] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762846.775487] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762846.981874] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762847.188242] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762847.393113] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762847.605107] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.94 ms +[1421762847.810648] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762848.015757] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762848.220932] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762848.426378] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762848.631706] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762848.837386] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762849.041684] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762849.247191] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762849.452941] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762849.658497] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762849.864581] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762850.069152] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762850.275080] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762850.480300] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762850.685847] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762850.897395] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.69 ms +[1421762851.102813] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762851.308559] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762851.514473] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762851.719487] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762851.924540] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762852.130722] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762852.335976] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421762852.542725] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762852.748156] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762852.953097] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762853.158144] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762853.363229] 130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762853.568259] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762853.773435] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762853.978297] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421762854.182979] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762854.388129] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762854.593639] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762854.799096] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762855.004603] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762855.209978] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762855.416688] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762855.622143] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762855.829124] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762856.034292] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762856.239756] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421762856.445485] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762856.651839] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421762856.856560] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762857.061245] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762857.267684] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421762857.472706] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762857.677601] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762857.882948] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762858.088226] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762858.293496] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762858.499583] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762858.705310] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762858.912178] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421762859.117382] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762859.322465] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762859.528217] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762859.733672] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762859.938964] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762860.145772] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421762860.350804] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762860.555715] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762860.761205] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762860.966550] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762861.172185] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762861.378047] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762861.583220] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762861.788273] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762861.993696] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762862.198949] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762862.404507] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762862.610769] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421762862.816215] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762863.021186] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762863.226385] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762863.431630] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762863.636810] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762863.843682] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762864.049462] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762864.254299] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762864.459554] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762864.664549] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762864.869617] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762865.076051] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421762865.281757] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762865.488467] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762865.693714] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762865.899152] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762866.104248] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762866.310171] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762866.515460] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762866.721104] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762866.926620] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762867.131610] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762867.337032] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421762867.542553] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762867.749126] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762867.955134] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762868.160756] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762868.365867] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762868.572087] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762868.778318] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762868.983809] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762869.190350] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762869.395718] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762869.601605] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762869.806667] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762870.011818] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762870.217114] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421762870.422356] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762870.627620] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762870.834628] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762871.041166] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762871.246731] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762871.452026] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762871.658318] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762871.864281] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762872.069496] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762872.274667] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762872.479661] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762872.686081] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762872.892372] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762873.097762] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762873.303147] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762873.509233] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762873.715000] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762873.920362] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762874.127194] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762874.332735] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762874.539143] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762874.747054] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.96 ms +[1421762874.951739] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762875.157504] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762875.362450] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762875.567614] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762875.772590] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762875.978174] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762876.184280] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762876.388783] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762876.594068] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762876.799003] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762877.003960] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.03 ms +[1421762877.209231] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762877.415880] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762877.621181] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762877.826601] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762878.031570] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762878.236205] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762878.442449] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762878.648250] 1612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762878.853733] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762879.058988] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762879.264145] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762879.470113] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762879.675003] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762879.880216] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762880.085198] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421762880.291185] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421762880.495969] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762880.700851] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762880.907266] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762881.112927] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762881.318664] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421762881.524019] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762881.730491] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421762881.936007] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762882.141103] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762882.345978] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762882.551831] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762882.757579] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762882.964134] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762883.170428] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762883.375430] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762883.580432] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762883.786926] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762883.992133] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762884.198458] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762884.404850] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762884.609901] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762884.816431] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762885.021747] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762885.227568] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762885.432589] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762885.637957] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762885.843459] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762886.048485] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762886.254526] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762886.459117] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762886.664738] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762886.869942] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421762887.075855] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762887.280943] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762887.485816] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762887.691129] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762887.897271] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762888.102640] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762888.307335] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762888.512898] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762888.718471] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762888.923871] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762889.129040] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762889.333994] 30 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762889.539269] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762889.746052] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762889.951570] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762890.157866] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762890.363105] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762890.568663] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762890.775015] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762890.980250] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762891.185480] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762891.391268] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762891.595968] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762891.800959] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762892.006896] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762892.213107] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762892.418357] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762892.623582] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762892.829986] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762893.034933] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762893.239661] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421762893.445787] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762893.651954] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762893.857829] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762894.063354] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421762894.268517] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762894.474238] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762894.679682] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762894.884840] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762895.090083] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762895.294965] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762895.500487] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762895.705547] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762895.910871] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762896.115780] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762896.321371] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762896.525784] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762896.731919] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762896.938606] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421762897.148514] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.62 ms +[1421762897.362673] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421762897.575097] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.03 ms +[1421762897.791873] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421762898.012019] 1417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421762898.236758] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421762898.459960] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421762898.685463] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421762898.906545] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421762899.128903] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421762899.334022] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762899.538946] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762899.744919] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421762899.953048] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.77 ms +[1421762900.183986] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.3 ms +[1421762900.397807] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.95 ms +[1421762900.602999] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762900.807978] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762901.014145] 1870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762901.219943] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762901.424700] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762901.630740] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762901.836932] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762902.041725] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762902.246839] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762902.452184] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762902.658805] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762902.865638] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762903.070826] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762903.279439] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.58 ms +[1421762903.484385] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762903.688949] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762903.893722] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762904.099022] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762904.304173] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762904.509545] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762904.714783] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762904.919356] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762905.124378] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762905.329564] 1021 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762905.534629] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762905.740812] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762905.946567] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762906.151838] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762906.357925] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421762906.563362] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762906.767927] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421762906.973830] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762907.180041] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762907.386220] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762907.591617] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762907.796575] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762908.001769] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762908.206894] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762908.412431] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421762908.618830] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421762908.825501] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762909.031328] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762909.236318] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762909.441253] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762909.646821] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762909.853286] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762910.059088] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421762910.263626] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762910.469560] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762910.674127] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762910.878981] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762911.083806] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762911.288494] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762911.493687] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762911.699730] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762911.905574] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762912.110634] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762912.316175] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762912.521711] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762912.728047] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762912.934327] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762913.139158] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762913.355598] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421762913.561988] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762913.766595] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762913.971695] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762914.177147] 1482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762914.381748] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762914.586647] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762914.792477] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762914.998472] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762915.204414] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762915.410040] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762915.616040] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762915.821145] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762916.026263] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762916.231864] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762916.437621] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762916.642196] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762916.848078] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762917.053213] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762917.259362] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421762917.464901] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421762917.670381] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762917.891883] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421762918.097732] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762918.302979] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762918.508523] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762918.713914] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762918.918793] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762919.124200] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762919.330433] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421762919.535905] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421762919.741795] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762919.946763] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762920.151379] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762920.358033] 1984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421762920.563525] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421762920.769183] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762920.974953] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762921.179645] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762921.384890] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762921.590260] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762921.796521] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762922.002291] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762922.207538] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762922.412766] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762922.618992] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762922.825814] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.67 ms +[1421762923.031330] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762923.237420] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421762923.442269] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762923.648305] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762923.853491] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762924.058786] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762924.264400] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762924.469890] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762924.675376] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762924.880610] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762925.085737] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762925.290981] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762925.496469] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421762925.703222] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421762925.908875] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762926.114620] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762926.320266] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762926.526246] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762926.732842] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762926.938285] 1392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762927.143890] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762927.349842] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762927.555487] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762927.761294] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421762927.966996] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762928.173042] 1955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762928.378444] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762928.584894] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762928.791202] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762928.996766] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762929.201558] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762929.407552] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762929.612935] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762929.818252] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762930.023833] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762930.228642] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762930.433905] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762930.639733] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762930.845889] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762931.051089] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762931.256352] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762931.462429] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762931.668147] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762931.874146] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762932.079458] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762932.284436] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762932.490842] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421762932.696428] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762932.901694] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762933.106650] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762933.312408] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762933.517738] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762933.722986] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762933.928774] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762934.134004] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421762934.339179] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762934.544783] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762934.750597] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762934.956156] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762935.162545] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421762935.368311] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762935.575028] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762935.780917] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762935.986180] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762936.191315] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762936.396872] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762936.602389] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762936.808081] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762937.014253] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762937.220363] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762937.425510] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762937.631026] 30 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762937.836457] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762938.042100] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762938.247270] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762938.452763] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762938.658305] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762938.864186] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421762939.069391] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.98 ms +[1421762939.275355] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762939.480480] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762939.685817] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762939.891763] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762940.096757] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762940.301744] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762940.507063] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762940.712923] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762940.919049] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421762941.124035] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421762941.329123] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762941.535895] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421762941.741590] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421762941.947565] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762942.152953] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762942.358907] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762942.563738] 555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762942.768697] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762942.974742] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762943.179677] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762943.384987] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762943.590903] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762943.796309] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762944.002226] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421762944.207460] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762944.412965] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762944.618029] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762944.823326] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762945.028080] 161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762945.233267] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762945.439847] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762945.645195] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762945.851575] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762946.056763] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762946.262218] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762946.467573] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762946.673258] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762946.879716] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421762947.084647] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762947.290594] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762947.496312] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762947.701997] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762947.907609] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762948.114115] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762948.319763] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762948.525458] 1410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762948.731575] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762948.937819] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762949.143052] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762949.348862] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762949.554506] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421762949.760635] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762949.965749] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762950.171190] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762950.376679] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762950.581986] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762950.787645] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762950.993023] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762951.199685] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762951.406420] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762951.612009] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762951.817404] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762952.022491] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762952.228364] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421762952.434778] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421762952.641039] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762952.846449] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762953.051685] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762953.256461] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762953.462194] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421762953.668712] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762953.875669] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762954.081304] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762954.286966] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762954.492874] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421762954.698323] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762954.903924] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762955.109228] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762955.315351] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421762955.520727] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762955.726800] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762955.932160] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421762956.137695] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762956.342857] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762956.549386] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762956.756262] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762956.962089] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762957.167685] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762957.374378] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421762957.581141] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.04 ms +[1421762957.786765] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762957.991839] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762958.198401] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762958.404538] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421762958.613781] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.34 ms +[1421762958.819374] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762959.024881] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762959.231234] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762959.437640] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762959.643881] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762959.849418] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762960.055814] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762960.261172] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762960.466914] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762960.672431] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421762960.877960] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762961.083202] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762961.288316] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762961.494406] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762961.699674] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421762961.905054] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762962.110191] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762962.316576] 1049 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421762962.521884] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762962.727110] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762962.932120] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762963.137081] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762963.343357] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421762963.548887] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762963.754277] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762963.959806] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762964.165305] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762964.370933] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762964.576099] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762964.781194] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421762964.993181] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.50 ms +[1421762965.198878] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762965.405227] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762965.610361] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762965.830378] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421762966.036563] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762966.241334] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762966.446512] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762966.651630] 837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762966.856948] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421762967.063197] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762967.268388] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762967.473794] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421762967.678907] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762967.884765] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762968.090126] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762968.295356] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762968.501339] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762968.707043] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762968.912579] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762969.118511] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421762969.324362] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421762969.530849] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421762969.737475] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762969.943210] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762970.148449] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762970.354124] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762970.559378] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421762970.764985] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762970.970141] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762971.176349] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762971.382104] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762971.587687] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762971.792505] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762971.998881] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762972.204548] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421762972.409943] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421762972.615252] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762972.820925] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421762973.026077] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762973.231265] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762973.436671] 1410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421762973.641913] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762973.849143] 1075 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.09 ms +[1421762974.054121] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762974.259580] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762974.465037] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421762974.671708] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421762974.877464] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762975.082981] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762975.289047] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762975.494027] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762975.699438] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762975.904595] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762976.109670] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762976.314494] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762976.521083] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421762976.726884] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762976.932159] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762977.137562] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762977.343883] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421762977.549265] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762977.754777] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762977.960336] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762978.166252] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762978.372685] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762978.579143] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421762978.785146] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762978.990759] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421762979.196645] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762979.403756] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421762979.609811] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762979.816762] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421762980.023714] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762980.229040] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421762980.434545] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762980.641107] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762980.847579] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421762981.052904] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762981.259339] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421762981.464966] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762981.671403] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762981.876937] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762982.083353] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421762982.288698] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421762982.495281] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421762982.700823] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421762982.906600] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421762983.112130] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421762983.317806] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421762983.523354] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762983.729211] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762983.934810] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762984.140069] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762984.345426] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762984.550681] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421762984.756037] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762984.961551] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421762985.166722] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762985.371981] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762985.577841] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421762985.783125] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762985.988514] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762986.194097] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762986.400118] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421762986.605364] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421762986.811018] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421762987.017525] 1522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421762987.222365] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421762987.428012] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762987.634718] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421762987.840066] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421762988.045407] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762988.250508] 841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421762988.455255] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762988.660531] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421762988.865924] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421762989.071677] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421762989.276859] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421762989.483279] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.85 ms +[1421762989.693115] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.04 ms +[1421762989.898668] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762990.104172] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421762990.309686] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421762990.515118] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762990.721485] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762990.927037] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421762991.132824] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762991.338590] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421762991.543960] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421762991.749583] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762991.954631] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421762992.159535] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762992.364838] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421762992.570635] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762992.777655] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421762992.983414] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421762993.190276] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421762993.395488] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421762993.601847] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762993.807593] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421762994.013437] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421762994.218986] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421762994.425258] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421762994.631874] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421762994.837606] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421762995.043270] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421762995.248580] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762995.453661] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762995.659318] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421762995.864506] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421762996.069643] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762996.274715] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421762996.480021] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421762996.685620] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421762996.891694] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421762997.096626] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421762997.301453] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421762997.506569] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421762997.712878] 1897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421762997.918846] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762998.125266] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421762998.331971] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421762998.540118] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.07 ms +[1421762998.745777] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421762998.950607] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421762999.156614] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421762999.361937] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421762999.568408] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421762999.773689] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421762999.978883] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763000.184255] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763000.389175] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763000.595352] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763000.800445] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763001.009872] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763001.215483] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763001.420822] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763001.626246] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763001.831461] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763002.037131] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763002.242636] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763002.447982] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421763002.653157] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763002.858890] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763003.065023] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763003.270662] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763003.476114] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763003.681528] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763003.886918] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763014.296352] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763014.501892] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763014.706669] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763014.911801] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763015.119953] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.20 ms +[1421763015.325217] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763015.530599] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763015.736306] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421763015.941180] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763016.146927] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421763016.352579] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763016.558485] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763016.765510] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763016.971801] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763017.178156] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763017.383710] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763017.589628] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421763017.796490] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421763018.001516] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763018.206622] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763018.412077] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763018.617703] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763018.824119] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763019.030534] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763019.237293] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763019.442633] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763019.647469] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763019.852951] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763020.058429] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763020.264368] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763020.470069] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763020.675988] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763020.881696] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763021.086779] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763021.293052] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763021.498312] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763021.703270] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763021.908235] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763022.114167] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763022.319420] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763022.525222] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763022.731242] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763022.938246] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763023.143573] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763023.348907] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763023.555004] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763023.760335] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421763023.966378] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763024.171719] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763024.377379] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763024.583851] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763024.789633] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763024.995768] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421763025.202404] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763025.408533] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763025.613322] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763025.819942] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763026.025483] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763026.231125] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763026.437707] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763026.643347] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763026.848623] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763027.054712] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763027.259744] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763027.465221] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763027.670943] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763027.876405] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763028.083154] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763028.288143] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763028.492985] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763028.698611] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421763028.904294] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763029.110150] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763029.316442] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763029.523585] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.94 ms +[1421763029.729498] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421763029.935189] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763030.140774] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421763030.346399] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763030.551219] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763030.756706] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763030.963226] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763031.169554] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763031.375136] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763031.580763] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763031.786888] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421763031.992685] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763032.197692] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763032.403795] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763032.609138] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763032.814521] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763033.019592] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763033.224893] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763033.431018] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763033.637619] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421763033.843197] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763034.048050] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763034.253238] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763034.458295] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763034.663156] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763034.867916] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763035.073756] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763035.279326] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763035.485004] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421763035.691476] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763035.896970] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763036.105491] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.31 ms +[1421763036.316568] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.69 ms +[1421763036.529218] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.41 ms +[1421763036.744545] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421763036.966324] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421763037.189863] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421763037.406688] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421763037.634815] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421763037.859846] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421763038.143297] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.6 ms +[1421763038.349149] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763038.554651] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763038.760204] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763038.969045] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.80 ms +[1421763039.179973] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.48 ms +[1421763039.394615] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.3 ms +[1421763039.610877] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421763039.877562] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.2 ms +[1421763040.101080] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421763040.306449] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763040.512499] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763040.717879] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763040.923980] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763041.139728] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.0 ms +[1421763041.346135] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763041.551463] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763041.756334] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763041.962681] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763042.168456] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763042.374653] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763042.581000] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763042.786135] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763042.991313] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763043.196612] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763043.402153] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763043.607579] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763043.812931] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763044.018596] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763044.223729] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763044.428683] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763044.633960] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763044.839021] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763045.044317] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763045.249336] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763045.455478] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763045.661238] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763045.866815] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763046.072349] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763046.279167] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763046.484735] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763046.690449] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763046.895783] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763047.100870] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763047.306419] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763047.511638] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763047.717437] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421763047.922643] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763048.129486] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763048.335053] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763048.541609] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421763048.747048] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763048.952702] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421763049.158459] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763049.364299] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763049.569816] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763049.775093] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763049.981209] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763050.186984] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763050.392251] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763050.598768] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763050.804025] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763051.009238] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763051.214811] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763051.420002] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763051.625223] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763051.831021] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763052.037925] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421763052.243337] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763052.448425] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763052.654052] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763052.859678] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763053.064840] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421763053.270114] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763053.475211] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763053.681627] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763053.887158] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763054.092623] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763054.298280] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763054.503861] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763054.708982] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763054.915321] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763055.120593] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763055.326588] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421763055.532515] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763055.739093] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763055.944900] 1075 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763056.151345] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763056.356658] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763056.562103] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763056.767618] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763056.973095] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763057.178690] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763057.384719] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763057.591385] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763057.796796] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763058.002407] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763058.208697] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763058.413969] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763058.619583] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763058.825309] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763059.031154] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763059.237371] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763059.443131] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763059.649032] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763059.854563] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763060.060521] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763060.267044] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763060.472203] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763060.677742] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763060.882842] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763061.087967] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763061.293279] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763061.499185] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421763061.706197] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421763061.912094] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763062.117459] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763062.322398] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763062.528529] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763062.734832] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421763062.940628] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763063.146720] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421763063.352246] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763063.558326] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763063.763446] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763063.968582] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763064.175267] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763064.381079] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763064.587052] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763064.792554] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763064.999205] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763065.205630] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763065.411182] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763065.618294] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421763065.824117] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763066.030712] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763066.236988] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763066.442513] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763066.647501] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763066.852511] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763067.057491] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763067.263064] 1049 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763067.469871] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421763067.676378] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763067.882016] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421763068.088770] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763068.293906] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763068.499646] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763068.704644] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763068.909845] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763069.114786] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763069.319527] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763069.525508] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763069.730657] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763069.936833] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763070.142852] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763070.349270] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763070.554832] 1026 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763070.761445] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763070.967854] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763071.173366] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763071.378779] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763071.584179] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763071.789100] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763071.995414] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763072.201655] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763072.407303] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763072.613604] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763072.818752] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763073.025029] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421763073.231822] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763073.438367] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763073.643666] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763073.848661] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763074.054122] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763074.259557] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763074.465417] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763074.670605] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763074.875683] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763075.080942] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763075.286578] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421763075.492457] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763075.697576] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763075.902336] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763076.107931] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421763076.314556] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763076.520925] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763076.725735] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763076.931308] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763077.136785] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763077.342168] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763077.548023] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763077.753349] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763077.959058] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763078.164959] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763078.371498] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763078.576977] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763078.782123] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763078.988307] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763079.193346] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763079.398944] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763079.604064] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763079.810200] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421763080.015799] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763080.221184] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763080.427522] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763080.632903] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763080.838705] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763081.045183] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763081.250615] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763081.457427] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763081.662791] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763081.869685] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763082.074744] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763082.279753] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763082.486322] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763082.692503] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763082.897790] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763083.103162] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763083.308053] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763083.513346] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763083.719969] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763083.925409] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763084.130537] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763084.336486] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763084.542320] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763084.748093] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763084.954234] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763085.160713] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763085.365993] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763085.571239] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763085.775871] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763085.980908] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763086.186117] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763086.391256] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763086.597922] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421763086.803435] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763087.009849] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763087.215238] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763087.420136] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763087.625417] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763087.831376] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763088.037919] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763088.243646] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763088.449837] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763088.656129] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763088.861963] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763089.067593] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763089.273778] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763089.479746] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763089.686206] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763089.891850] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763090.097367] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421763090.302293] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763090.508023] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.94 ms +[1421763090.713334] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763090.919769] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763091.125963] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763091.330923] 296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763091.536538] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763091.741951] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763091.947748] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763092.153168] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763092.358377] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763092.564843] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763092.769849] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763092.975274] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763093.180699] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763093.385646] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763093.590399] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763093.795865] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763094.001894] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763094.207132] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763094.412752] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763094.618512] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763094.824075] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763095.028831] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763095.233784] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763095.439231] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763095.645494] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763095.851192] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763096.056419] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763096.262954] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763096.468673] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763096.674503] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763096.879988] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763097.085323] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.03 ms +[1421763097.290878] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763097.496694] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421763097.702362] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421763097.907250] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763098.112596] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763098.318083] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763098.523446] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763098.728302] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763098.934020] 1410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421763099.139793] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763099.345244] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763099.551938] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763099.757772] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763099.962956] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763100.169389] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.88 ms +[1421763100.374690] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763100.579941] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763100.786677] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763100.993546] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763101.199177] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763101.404723] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763101.611385] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421763101.816772] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763102.021696] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763102.226641] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763102.432345] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763102.650190] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421763102.860957] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.18 ms +[1421763103.101411] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.6 ms +[1421763103.319882] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421763103.539660] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421763103.765994] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421763103.991277] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421763104.218681] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421763104.443011] 1392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421763104.731668] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.7 ms +[1421763104.958468] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421763105.164083] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763105.369459] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763105.576059] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763105.784740] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.53 ms +[1421763106.011297] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421763106.223800] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.40 ms +[1421763106.474237] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.5 ms +[1421763106.697231] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421763106.918328] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421763107.202225] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.9 ms +[1421763107.484674] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.8 ms +[1421763107.766940] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.1 ms +[1421763107.989153] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421763108.195270] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763108.400999] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763108.606541] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763108.812741] 1529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763109.017907] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763109.223151] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763109.428770] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763109.636660] 1451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.89 ms +[1421763109.847387] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.74 ms +[1421763110.081695] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.1 ms +[1421763110.330153] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.2 ms +[1421763110.593369] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.1 ms +[1421763110.816852] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421763111.021888] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763111.226774] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763111.436598] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.01 ms +[1421763111.647838] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.03 ms +[1421763111.861654] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.23 ms +[1421763112.075662] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.3 ms +[1421763112.297027] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421763112.519960] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421763112.800990] 1870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.9 ms +[1421763113.068584] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=63.5 ms +[1421763113.294029] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421763113.517868] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421763113.794998] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.5 ms +[1421763114.000141] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763114.233972] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.2 ms +[1421763114.498996] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=61.3 ms +[1421763114.781875] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.4 ms +[1421763115.005048] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421763115.225130] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421763115.449904] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421763115.671463] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421763115.876939] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763116.081927] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763116.290505] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.91 ms +[1421763116.517746] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421763116.753464] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.4 ms +[1421763116.971942] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.1 ms +[1421763117.189918] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421763117.412802] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421763117.632621] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421763117.916732] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.1 ms +[1421763118.205080] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.4 ms +[1421763118.433653] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421763118.720116] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.3 ms +[1421763118.925788] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763119.131926] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763119.336968] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763119.542763] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763119.748784] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763119.954777] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763120.160227] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763120.366733] 1932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763120.572351] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763120.777859] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763120.983416] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763121.188700] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763121.394372] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763121.599810] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763121.816392] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.0 ms +[1421763122.026655] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.40 ms +[1421763122.239155] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.64 ms +[1421763122.491651] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.7 ms +[1421763122.697479] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763122.903102] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763123.108143] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763123.314020] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.99 ms +[1421763123.523347] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.06 ms +[1421763123.758609] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.2 ms +[1421763123.976514] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421763124.196892] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421763124.402135] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763124.607395] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763124.812869] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763125.018323] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763125.223306] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763125.428690] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763125.634226] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763125.840074] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763126.044884] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763126.251021] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763126.455880] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763126.662339] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763126.869849] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.27 ms +[1421763127.074499] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763127.279816] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763127.485139] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763127.690719] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763127.896339] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763128.100894] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763128.306875] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763128.513207] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763128.719197] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421763128.924669] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763129.130017] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763129.335335] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763129.540799] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763129.746999] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763129.953577] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763130.159853] 1522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421763130.365478] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763130.571089] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763130.776934] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421763130.982219] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763131.187470] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763131.393559] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763131.600050] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763131.805820] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763132.011309] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763132.217076] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763132.422210] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763132.628035] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763132.834217] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763133.040139] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763133.245422] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763133.450648] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763133.657154] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763133.862626] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763134.067743] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763134.272663] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763134.478073] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763134.683591] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763134.888562] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763135.093397] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763135.298624] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763135.503537] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763135.708533] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763135.914037] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763136.119894] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763136.326490] 1522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421763136.531934] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763136.738136] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421763136.943405] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763137.148270] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763137.353501] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763137.559014] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763137.764907] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763137.970462] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763138.176276] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.92 ms +[1421763138.382632] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763138.589016] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763138.795112] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763139.000828] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763139.205644] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763139.410926] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763139.616165] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763139.821340] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763140.026802] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763140.231643] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763140.437194] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763140.642836] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763140.848537] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763141.053362] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763141.258445] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763141.463690] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763141.669198] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763141.875533] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763142.081213] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421763142.286327] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763142.491222] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763142.696487] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763142.902217] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763143.107266] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763143.312283] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763143.517346] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763143.723276] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763143.929777] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763144.135089] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763144.341478] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763144.547095] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763144.752246] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763144.957550] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763145.163753] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763145.370067] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763145.575926] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763145.782626] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421763145.989238] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763146.195463] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763146.401268] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763146.608178] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763146.813373] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763147.018066] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763147.223929] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763147.429418] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763147.635154] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763147.840555] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763148.046473] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763148.252449] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763148.457767] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763148.664346] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763148.870544] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763149.075481] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763149.280514] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763149.487143] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763149.692789] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763149.899240] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763150.104385] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421763150.310245] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763150.515503] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763150.720555] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763150.925906] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763151.131224] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763151.336667] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763151.543398] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763151.749346] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763151.954813] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763152.159541] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763152.366046] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763152.571625] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763152.776695] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763152.981845] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763153.186977] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763153.391855] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763153.597320] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763153.802887] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763154.009646] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763154.214539] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763154.420525] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763154.625498] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763154.830554] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763155.036066] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763155.242075] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763155.446982] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763155.651796] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763155.857104] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763156.062500] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763156.267350] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763156.472673] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763156.678158] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763156.883789] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763157.088457] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763157.293453] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763157.506402] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.56 ms +[1421763157.712210] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763157.918161] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763158.123214] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763158.328538] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763158.534326] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421763158.739897] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763158.945317] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763159.150921] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763159.356346] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763159.561973] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763159.767253] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763159.972611] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763160.178212] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763160.383432] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763160.590045] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421763160.795651] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763161.000800] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763161.207340] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421763161.412635] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763161.618147] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763161.823784] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763162.031719] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.17 ms +[1421763162.243866] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.58 ms +[1421763162.461033] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421763162.674152] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.05 ms +[1421763162.895068] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421763163.115323] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421763163.346310] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.9 ms +[1421763163.571580] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421763163.798562] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421763164.019665] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421763164.243737] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421763164.470829] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421763164.676192] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763164.881489] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763165.087482] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763165.295271] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.88 ms +[1421763165.522666] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421763165.736940] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.2 ms +[1421763165.984921] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.2 ms +[1421763166.205325] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421763166.424465] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421763166.704954] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.5 ms +[1421763166.924278] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421763167.147009] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421763167.352124] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763167.557466] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763167.762542] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763167.968889] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763168.174693] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763168.380317] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763168.586739] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763168.792874] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763168.999488] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421763169.209459] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.85 ms +[1421763169.422905] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.18 ms +[1421763169.628690] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763169.834542] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763170.040019] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763170.245179] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763170.450670] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763170.656304] 1238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763170.861386] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763171.066435] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763171.272649] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421763171.478018] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421763171.683482] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763171.888905] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763172.093905] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763172.299086] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763172.505280] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763172.710422] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763172.915213] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763173.120289] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763173.325151] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763173.530786] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421763173.736498] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421763173.941478] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763174.146735] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763174.352218] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763174.557714] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763174.763943] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763174.969891] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763175.175194] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763175.380578] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763175.586188] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763175.792732] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421763175.998379] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763176.203582] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763176.408558] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763176.613809] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763176.819163] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763177.025162] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421763177.230152] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763177.435016] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763177.640498] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421763177.845981] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763178.052062] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421763178.257354] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763178.462369] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763178.667582] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763178.872383] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763179.077038] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763179.281947] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763179.487048] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763179.692045] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763179.897235] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763180.101950] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763180.306841] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763180.512411] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763180.717915] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763180.923330] 1063 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763181.128328] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763181.334459] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763181.540138] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763181.745590] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763181.951234] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763182.158097] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763182.364919] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421763182.570715] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763182.776797] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421763182.982469] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763183.187544] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763183.393808] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763183.599137] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763183.804751] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421763184.009769] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763184.215197] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763184.420922] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421763184.626591] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763184.832479] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763185.037308] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763185.242458] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763185.448727] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763185.654615] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763185.860710] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763186.066905] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421763186.272148] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763186.477231] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763186.683937] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763186.890448] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763187.095145] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763187.300334] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763187.506502] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763187.713054] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421763187.918289] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763188.123508] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763188.328747] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763188.534264] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763188.739506] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763188.944702] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763189.149946] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763189.355162] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763189.561703] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763189.768033] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763189.973022] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763190.179141] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763190.383794] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763190.589019] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763190.795338] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763191.000805] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763191.205984] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763191.412467] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763191.618564] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763191.824102] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763192.029407] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763192.234600] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763192.439571] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763192.645695] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763192.851180] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763193.057308] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763193.262817] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763193.469147] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763193.674178] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763193.879123] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763194.083903] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763194.288525] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763194.493724] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763194.699199] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763194.904602] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763195.109293] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763195.314249] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763195.519266] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763195.724485] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763195.931039] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763196.136697] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763196.345766] 1503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763196.552318] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421763196.759417] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.81 ms +[1421763196.964625] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763197.169656] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763197.374930] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763197.580696] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763197.785844] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763197.991297] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763198.197350] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763198.402872] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763198.608304] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763198.813682] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763199.018513] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763199.224024] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763199.430254] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763199.635662] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763199.841290] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763200.047369] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763200.253719] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421763200.459001] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763200.665104] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763200.871346] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763201.076848] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763201.282123] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763201.488076] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763201.694915] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763201.900204] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763202.104955] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763202.310622] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421763207.524169] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763207.729690] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763207.935385] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763208.141593] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763208.347005] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763208.553264] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421763208.760049] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763208.965726] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763209.171353] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763209.377105] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763209.582496] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763209.787909] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763209.994649] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763210.200220] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763210.405765] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763210.611497] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763210.817096] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763211.021941] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763211.227054] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763211.432507] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421763211.638942] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421763211.845046] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421763212.050721] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421763212.255627] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763212.460619] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763212.666025] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763212.871356] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763213.076387] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763213.281552] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763213.487328] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421763213.692309] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763213.897574] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763214.103578] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763214.308818] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763214.514601] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763214.720270] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763214.925925] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763215.131238] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763215.336330] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763215.541991] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763215.747576] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763215.953209] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763216.158333] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763216.363446] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763216.568882] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763216.774602] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763216.980469] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763217.185640] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763217.390789] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763217.596019] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763217.801446] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763218.007303] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763218.213038] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763218.418427] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763218.623855] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763218.830216] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763219.035232] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763219.240220] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763219.445770] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763219.652506] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763219.859241] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421763220.064819] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.85 ms +[1421763220.270062] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763220.475401] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763220.681167] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421763220.886576] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763221.091259] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763221.296660] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763221.503223] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763221.708938] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763221.914911] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763222.121104] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421763222.326353] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763222.533174] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763222.739239] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763222.945935] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421763223.152557] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763223.358791] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763223.563759] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763223.768827] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763223.975737] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763224.180972] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763224.386365] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763224.591858] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763224.797119] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763225.002859] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763225.208638] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763225.413738] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763225.618964] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763225.824026] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763226.030002] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763226.236269] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763226.442359] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763226.648905] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763226.855248] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763227.061377] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763227.267611] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763227.472572] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763227.678317] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421763227.883944] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763228.088861] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763228.294195] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763228.499441] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763228.704757] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763228.909686] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763229.115374] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763229.321241] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763229.526636] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763229.731932] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763229.937008] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763230.142019] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763230.347063] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763230.552842] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763230.757788] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763230.962907] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763231.169333] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763231.374421] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763231.580790] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763231.786841] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763231.993128] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763232.198260] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763232.403970] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763232.610636] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763232.815749] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763233.022994] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763233.228013] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763233.433117] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763233.638236] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763233.843874] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421763234.048922] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763234.254397] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763234.460184] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763234.666861] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763234.872255] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763235.077031] 825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763235.281826] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763235.487292] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763235.692825] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763235.897953] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421763236.102603] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763236.307792] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763236.513475] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763236.719507] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763236.925947] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763237.131787] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763237.337644] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763237.543123] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763237.749227] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763237.954460] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763238.159649] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763238.365045] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763238.570298] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763238.775484] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763238.981097] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763239.186656] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763239.391859] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763239.597857] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763239.804604] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763240.009783] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763240.214922] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763240.420073] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763240.625533] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763240.831256] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763241.037385] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763241.242862] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763241.448449] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421763241.654326] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763241.859894] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763242.065051] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763242.270272] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763242.478024] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.61 ms +[1421763242.689768] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.39 ms +[1421763242.907133] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421763243.125627] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.2 ms +[1421763243.330405] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763243.536126] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763243.741451] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763243.955021] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.18 ms +[1421763244.182062] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421763244.395835] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.54 ms +[1421763244.610922] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421763244.832837] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421763245.055656] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421763245.279483] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421763245.567690] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.0 ms +[1421763245.794069] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421763246.022739] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421763246.249453] 1451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421763246.476926] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421763246.763268] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.0 ms +[1421763246.992720] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.2 ms +[1421763247.224623] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.1 ms +[1421763247.429933] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763247.635127] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763247.840686] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763248.045758] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763248.250929] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763248.457632] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763248.668098] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.01 ms +[1421763248.873193] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763249.078008] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763249.283506] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763249.491283] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.48 ms +[1421763249.720164] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421763249.932581] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.01 ms +[1421763250.147856] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421763250.366329] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421763250.644327] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.8 ms +[1421763250.868403] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421763251.093718] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421763251.375777] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421763251.658777] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.7 ms +[1421763251.883953] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421763252.109688] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421763252.392254] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.6 ms +[1421763252.617767] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421763252.899040] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.1 ms +[1421763253.181892] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.7 ms +[1421763253.407740] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421763253.613491] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763253.819195] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763254.024184] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763254.231187] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.20 ms +[1421763254.463716] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.4 ms +[1421763254.679489] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421763254.895728] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421763255.114399] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421763255.337984] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421763255.565430] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421763255.790482] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421763256.011700] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421763256.241076] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.2 ms +[1421763256.526577] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.6 ms +[1421763256.754736] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421763256.973809] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421763257.201683] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421763257.428192] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421763257.646661] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.4 ms +[1421763257.876997] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.1 ms +[1421763258.082027] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763258.286864] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763258.492554] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763258.699386] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763258.906654] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.94 ms +[1421763259.112781] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763259.317932] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763259.523425] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763259.729280] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421763259.934392] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763260.139264] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763260.344987] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763260.550842] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421763260.756262] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763260.961173] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763261.165991] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421763261.371204] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763261.577694] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763261.782879] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763261.987978] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763262.193394] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763262.398655] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763262.605029] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763262.810198] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763263.016797] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763263.222115] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763263.427972] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763263.635333] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.93 ms +[1421763263.845701] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.88 ms +[1421763264.050707] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763264.257283] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763264.463648] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763264.669340] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763264.874811] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763265.079955] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763265.286023] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763265.491000] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763265.695889] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763265.901043] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763266.105932] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763266.310895] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763266.516640] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763266.727870] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.99 ms +[1421763266.933155] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763267.138157] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763267.344471] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421763267.550046] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763267.756438] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763267.962549] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763268.167956] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763268.373419] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763268.578694] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763268.784556] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763268.989860] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763269.195241] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763269.401514] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763269.607276] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763269.812945] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763270.018456] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763270.223515] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763270.429711] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421763270.634803] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763270.839881] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763271.044705] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763271.249971] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763271.456554] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763271.662731] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763271.867887] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763272.073704] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763272.278881] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763272.486032] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.93 ms +[1421763272.691412] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763272.897594] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763273.102922] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763273.308581] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763273.513855] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763273.719257] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763273.924821] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763274.130349] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763274.336652] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763274.542326] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763274.748787] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763274.954835] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763275.160136] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763275.365696] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763275.570887] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763275.775746] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763275.981339] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763276.186761] 1021 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763276.391994] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763276.597114] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763276.803348] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763277.009723] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763277.214858] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763277.421642] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763277.627374] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763277.832323] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763278.037835] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763278.242747] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763278.449203] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763278.655695] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763278.861223] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763279.066193] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763279.272246] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763279.477582] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763279.683162] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763279.888734] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763280.093952] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763280.299385] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421763280.505000] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763280.710480] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763280.915943] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763281.121221] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421763281.326584] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763281.531546] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763281.736874] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763281.942500] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763282.147388] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763282.352916] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763282.559225] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763282.765891] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763282.971276] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763283.176230] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763283.381372] 1063 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763283.587571] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763283.793231] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763283.998486] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421763284.203692] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763284.409113] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763284.614349] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763284.819392] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421763285.025481] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421763285.230651] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763285.435510] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763285.641295] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763285.847117] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763286.052975] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763286.259388] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763286.464750] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763286.669703] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763286.874779] 841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763287.079781] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763287.285147] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763287.490300] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763287.696214] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763287.902699] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421763288.107910] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763288.313541] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763288.519146] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763288.724652] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763288.930514] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763289.135819] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421763289.342031] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763289.547712] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763289.752826] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763289.959633] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763290.165037] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763290.370497] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763290.575793] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763290.780937] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763290.987535] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763291.194012] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763291.398851] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763291.604178] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763291.810203] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421763292.016370] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421763292.221519] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763292.427475] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763292.632972] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763292.838484] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763293.043606] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763293.249414] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421763293.455277] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421763293.660357] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763293.866691] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763294.072732] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763294.278128] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763294.483808] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763294.689368] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763294.895633] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763295.100491] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763295.305852] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763295.511449] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763295.716973] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763295.922207] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763296.127350] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763296.332681] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763296.538396] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763296.743696] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763296.948558] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763297.153720] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763297.361332] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763297.567010] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763297.774148] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421763297.979818] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421763298.185241] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763298.390339] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763298.595289] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763298.801550] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763299.008022] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763299.218418] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.11 ms +[1421763299.424783] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763299.630170] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763299.835827] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763300.040612] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763300.245689] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763300.451389] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763300.657469] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421763300.863049] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763301.067778] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763301.273080] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763301.479760] 1612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.85 ms +[1421763301.695492] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421763301.924343] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421763302.139068] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421763302.345127] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763302.550115] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763302.756050] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763302.961621] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763303.166513] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763303.371839] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763303.576750] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763303.782154] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763303.987249] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763304.192839] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421763304.398144] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763304.603564] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763304.809678] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763305.015273] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763305.220750] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763305.426042] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763305.632060] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421763305.839977] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763306.044642] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763306.249805] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763306.455075] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763306.661050] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763306.867702] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763307.072270] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763307.277715] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763307.484045] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763307.689508] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421763307.895106] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763308.100066] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763308.305328] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763308.510979] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763308.716329] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763308.922961] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763309.128627] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763309.334721] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763309.540483] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763309.745487] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763309.950249] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763310.155491] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763310.360565] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763310.565262] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763310.771499] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763310.978007] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763311.183124] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763311.388572] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763311.594373] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763311.800083] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763312.005195] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763312.210490] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763312.415487] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763312.621075] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763312.827601] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763313.032701] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763313.238509] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763313.443573] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763313.649502] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763313.854672] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763314.060409] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763314.265504] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763314.470905] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763314.676322] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763314.881595] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763315.086713] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763315.291779] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763315.497613] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763315.703281] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763315.909042] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763316.114689] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763316.320081] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763316.524760] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763316.729488] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763316.934541] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763317.139702] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763317.344845] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763317.550711] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763317.756502] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763317.962726] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.88 ms +[1421763318.168534] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763318.373667] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763318.579465] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763318.785517] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763318.992043] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421763319.198414] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763319.403557] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763319.608582] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763319.814174] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763320.020003] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763320.225217] 825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763320.430141] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763320.636394] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421763320.842925] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763321.048407] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763321.253830] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763321.459282] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763321.664367] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763321.869676] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763322.074465] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763322.279487] 814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763322.485498] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763322.690766] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763322.896067] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763323.100982] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763323.307088] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763323.513577] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763323.719662] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421763323.924572] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763324.129423] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763324.335458] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763324.540964] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763324.746519] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763324.952044] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763325.157305] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763325.364067] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.13 ms +[1421763325.569836] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763325.775207] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763325.980667] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763326.186189] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763326.391446] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763326.597025] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763326.805115] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421763327.011003] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763327.216579] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763327.423074] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421763327.629158] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763327.835123] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763328.041380] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763328.246423] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763328.451709] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763328.657489] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763328.864114] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763329.070296] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763329.276180] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763329.481792] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763329.688045] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763329.894003] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763330.099461] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421763330.304686] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763330.511397] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763330.718014] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763330.923597] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763331.129795] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763331.335165] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763331.541141] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763331.747604] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763331.953224] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763332.158850] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763332.364249] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763332.571252] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.76 ms +[1421763332.776826] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763332.983140] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421763333.188646] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763333.393711] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763333.598659] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763333.803613] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763334.008837] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763334.214735] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763334.420630] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.96 ms +[1421763334.625841] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763334.831404] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763335.036992] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763335.242490] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763335.448928] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763335.653890] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763335.859027] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763336.064039] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763336.269211] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763336.474499] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763336.679845] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763336.886576] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763337.091913] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763337.297520] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763337.503268] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763337.709881] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421763337.915625] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763338.120327] 512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763338.326577] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763338.532090] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763338.737556] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763338.943316] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763339.148611] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763339.353765] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763339.558770] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763339.763869] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763339.970596] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763340.176495] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763340.381797] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763340.587730] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763340.792845] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763340.998110] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421763341.202988] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763341.409101] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763341.614880] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421763341.820568] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763342.025356] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763342.231603] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763342.438098] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763342.643811] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763342.849646] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763343.055641] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421763343.260626] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763343.466065] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763343.671890] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763343.878467] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763344.083857] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421763344.288794] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763344.494088] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763344.699378] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763344.904955] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763345.109706] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763345.316086] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421763345.522682] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763345.729232] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763345.935907] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763346.141224] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763346.346566] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763346.551467] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763346.757722] 1913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763346.962842] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763347.167703] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763347.372808] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763347.578504] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763347.785390] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763347.990861] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763348.197037] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763348.402466] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763348.609109] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763348.814664] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763349.020533] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763349.226900] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763349.432999] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421763349.638948] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421763349.845049] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763350.050226] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763350.255251] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763350.461356] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763350.666758] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763350.872523] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763351.077773] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763351.283066] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763351.489016] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763351.694377] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763351.899856] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763352.105550] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763352.310455] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763352.516682] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763352.722715] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763352.928065] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763353.133041] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763353.339080] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421763353.544270] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763353.750315] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763353.955524] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763354.160591] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763354.365816] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763354.571503] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763354.778066] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763354.983337] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763355.189208] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421763355.394265] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763355.600444] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763355.805828] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763356.010735] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763356.215652] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763356.420573] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763356.626966] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763356.833828] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763357.040004] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763357.245553] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763357.451091] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763357.657851] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421763357.863398] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763358.068302] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763358.274327] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763358.479967] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763358.686660] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763358.893332] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763359.098087] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763359.303387] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763359.509743] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763359.715499] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763359.920932] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763360.126418] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763360.331644] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763360.536926] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763360.743908] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763360.950422] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763361.155997] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763361.360792] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763361.567352] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763361.772486] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763361.978408] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763362.184498] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763362.389779] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763362.595072] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763362.800679] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763363.005733] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763363.211320] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763363.417627] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763363.623389] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763363.828632] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763364.034697] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763364.239539] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763364.445070] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763364.652071] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421763364.857692] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763365.062591] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763365.267396] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763365.472903] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763365.677900] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763365.883098] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763366.089454] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763366.295826] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421763366.501837] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421763366.708081] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421763366.913616] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763367.119681] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421763367.325116] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763367.531797] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763367.738164] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763367.944707] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763368.151133] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763368.356879] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763368.571151] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.3 ms +[1421763368.783135] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.80 ms +[1421763369.025469] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.4 ms +[1421763369.245888] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421763369.467368] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421763369.746602] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.0 ms +[1421763369.966774] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421763370.193211] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421763370.398928] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763370.604790] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763370.810495] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763371.015706] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763371.220994] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763371.429424] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.44 ms +[1421763371.640843] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.19 ms +[1421763371.857739] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421763372.062901] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421763372.268139] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763372.476712] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.21 ms +[1421763372.693178] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.2 ms +[1421763372.905041] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.53 ms +[1421763373.118100] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.08 ms +[1421763373.334809] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421763373.555657] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421763373.779464] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421763374.059658] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.0 ms +[1421763374.340615] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.1 ms +[1421763374.562077] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763374.782536] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421763374.989066] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763375.194395] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763375.399512] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763375.605073] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763375.811427] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763376.016836] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763376.223791] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.11 ms +[1421763376.432217] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.35 ms +[1421763376.643304] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.72 ms +[1421763376.856063] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.71 ms +[1421763377.069271] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.49 ms +[1421763377.287208] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421763377.512717] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421763377.739258] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421763377.945001] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763378.151509] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763378.356951] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763378.563463] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421763378.774118] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.20 ms +[1421763378.988614] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421763379.201524] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.83 ms +[1421763379.423693] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421763379.647931] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421763379.870140] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421763380.092617] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421763380.318322] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421763380.600855] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.3 ms +[1421763380.823139] 130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421763381.044611] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.7 ms +[1421763381.273545] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.0 ms +[1421763381.490173] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421763381.719125] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421763381.940065] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421763382.167073] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421763382.454428] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.2 ms +[1421763382.659661] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763382.865673] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421763383.071459] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763383.280212] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.09 ms +[1421763383.492845] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.69 ms +[1421763383.708671] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421763383.925500] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421763384.146160] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421763384.426715] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.5 ms +[1421763384.650008] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421763384.877152] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421763385.102502] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421763385.328569] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421763385.576554] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.7 ms +[1421763385.795671] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421763386.017759] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421763386.243319] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421763386.517433] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.7 ms +[1421763386.805541] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.8 ms +[1421763387.031195] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421763387.314630] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.1 ms +[1421763387.520370] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763387.726403] 847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763387.931709] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763388.139547] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.78 ms +[1421763388.345326] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763388.550366] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763388.756209] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763388.963051] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763389.168337] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763389.373897] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763389.580407] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763389.785898] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763389.992175] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763390.198845] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763390.409461] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.63 ms +[1421763390.614498] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763390.819713] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763391.024417] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763391.229254] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763391.434961] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763391.640114] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763391.845933] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763392.051323] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421763392.256694] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763392.462377] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763392.668151] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763392.873665] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763393.078403] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763393.283462] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421763393.489143] 145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763393.695785] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763393.901558] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763394.106534] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763394.312859] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763394.519502] 1888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763394.726557] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763394.932330] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763395.137290] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763395.342260] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763395.548598] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763395.753732] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763395.959873] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763396.164949] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763396.371492] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763396.577397] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763396.782616] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763396.988431] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763397.193881] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763397.399681] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421763397.605107] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763397.810564] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763398.015342] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763398.220586] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763398.426887] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763398.633288] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763398.838476] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763399.043710] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763399.249783] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421763399.455189] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763399.661077] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763399.868144] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.83 ms +[1421763400.073320] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763400.278454] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763400.483833] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763400.689037] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763400.895816] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763401.101347] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763401.306352] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763401.512377] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763401.717864] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763401.923899] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421763402.129730] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763402.334883] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763402.540645] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763402.746318] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763402.951847] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421763403.157341] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763403.362454] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763403.567941] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763403.773460] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763403.978447] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763404.184670] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763404.390219] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763404.596841] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763404.802772] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763405.008279] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763405.213875] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763405.419070] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763405.625110] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421763405.831447] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421763406.036625] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763406.241585] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763406.447706] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763406.653015] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763406.861192] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763407.067016] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763407.271895] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763407.477074] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763407.682319] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763407.887893] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763408.092725] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763408.297936] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763408.503225] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763408.708548] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763408.915082] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763409.121233] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421763409.326300] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763409.532563] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763409.737707] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763409.943659] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763410.150128] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763410.355800] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421763410.561420] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763410.767270] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763410.973572] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763411.178594] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763411.384521] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421763411.589793] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763411.795228] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763412.000802] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763412.206155] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763412.410969] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763412.616201] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763412.821678] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763413.027110] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763413.232250] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763413.437383] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763413.643552] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763413.849405] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763414.054673] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763414.260826] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763414.466417] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763414.671767] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763414.878011] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421763415.082824] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763415.287857] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763415.492940] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763415.698491] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763415.904394] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763416.110192] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763416.315036] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763416.520750] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763416.726225] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763416.931877] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763417.136727] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763417.342044] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763417.547364] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763417.752710] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763417.959250] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763418.164207] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763418.369934] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763418.576512] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763418.782024] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763418.987333] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763419.193689] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763419.399846] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763419.605603] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763419.812830] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.96 ms +[1421763420.037493] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421763420.252063] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421763420.497236] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=41.0 ms +[1421763420.717079] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421763420.942914] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421763421.224657] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.4 ms +[1421763421.430369] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763421.636154] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763421.875260] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.7 ms +[1421763422.096334] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421763422.320976] 1133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421763422.543503] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421763422.771704] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421763423.057752] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.1 ms +[1421763423.283523] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421763423.557026] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.3 ms +[1421763423.784479] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421763423.990257] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763424.195631] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763424.401128] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763424.606802] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763424.813516] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.01 ms +[1421763425.022849] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.62 ms +[1421763425.242093] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421763425.457432] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421763425.677002] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421763425.902833] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421763426.129301] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421763426.349565] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421763426.630435] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.5 ms +[1421763426.859224] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421763427.089018] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421763427.294504] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763427.521590] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421763427.745247] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421763427.968210] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421763428.193054] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421763428.418578] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421763428.644229] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421763428.850105] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763429.054695] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763429.260888] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763429.468684] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.63 ms +[1421763429.678825] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.19 ms +[1421763429.885198] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763430.089727] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763430.295498] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763430.501337] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763430.707355] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763430.912714] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763431.117702] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763431.323266] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763431.528663] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763431.735230] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421763431.940799] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763432.145912] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763432.351775] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421763432.557094] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763432.762633] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763432.967762] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763433.174269] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763433.380496] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763433.585923] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763433.791432] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763433.996618] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763434.202103] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421763434.406715] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763434.612999] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763434.819403] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763435.025985] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763435.231176] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763435.437487] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763435.642784] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763435.849197] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763436.055600] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421763436.260359] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421763436.465676] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763436.671425] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763436.878281] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763437.083164] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763437.288302] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763437.493422] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763437.706168] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.97 ms +[1421763437.920647] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.81 ms +[1421763438.126782] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763438.332555] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763438.539221] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763438.744889] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763438.950225] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763439.155493] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763439.360738] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763439.569754] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.24 ms +[1421763439.775255] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763439.980765] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763440.187191] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421763440.397566] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.20 ms +[1421763440.604188] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763440.809921] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763441.015961] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421763441.222389] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763441.428107] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763441.633664] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763441.838628] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763442.043291] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763442.248296] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763442.456173] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.73 ms +[1421763442.685573] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.3 ms +[1421763442.890890] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763443.095565] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763443.300713] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763443.506262] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763443.714808] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.15 ms +[1421763443.920123] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763444.125514] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763444.334662] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.41 ms +[1421763444.540545] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763444.746456] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421763444.953084] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763445.158570] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763445.363572] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763445.578871] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421763445.784684] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763445.997625] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.66 ms +[1421763446.203163] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763446.459116] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.9 ms +[1421763446.667572] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.84 ms +[1421763446.873460] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763447.081543] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.23 ms +[1421763447.286499] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763447.517190] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.7 ms +[1421763447.723095] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763447.929536] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763448.160632] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.3 ms +[1421763448.365948] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763448.570866] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763448.776340] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763448.981844] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763449.202528] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421763449.407889] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763449.613371] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763449.818916] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763450.024067] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763450.230333] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763450.449680] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421763450.656404] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763450.862136] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763451.066682] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763451.273629] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.12 ms +[1421763451.486835] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.64 ms +[1421763451.692533] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763451.898180] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763452.107199] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.46 ms +[1421763452.312749] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763452.519553] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763452.725275] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763452.930178] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763453.135469] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763453.349067] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.75 ms +[1421763453.555899] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763453.761342] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763453.968243] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.74 ms +[1421763454.173816] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763454.379379] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421763454.586097] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763454.792505] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763454.998284] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763455.203249] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763455.409621] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763455.615276] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763455.820617] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763456.033110] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.81 ms +[1421763456.238420] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763456.443594] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763456.648827] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763456.854101] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763457.060660] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763457.265442] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763457.470637] 296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763457.676278] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763457.881820] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763458.087946] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763458.293217] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763458.499394] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763458.704793] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763458.909811] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763459.115936] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763459.321131] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763459.526614] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763459.732147] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763459.937571] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763460.143096] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763460.348550] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763460.554171] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763460.760066] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763460.967191] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763461.172811] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763461.378115] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763461.583784] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421763461.789048] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763461.993990] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763462.200944] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421763462.406043] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763462.611533] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763462.818597] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763463.024346] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763463.229729] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763463.434998] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763463.641358] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421763463.846959] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763464.051872] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763464.257860] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763464.463238] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763464.669800] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763464.875119] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763465.080019] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763465.285176] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763465.491104] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421763465.696649] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763465.902631] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763466.108068] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763466.313137] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763466.518767] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421763466.725234] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763466.930852] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763467.136865] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763467.341866] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763467.551699] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.77 ms +[1421763467.764445] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.49 ms +[1421763467.976038] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.91 ms +[1421763468.220965] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=40.6 ms +[1421763468.441784] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421763468.665453] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421763468.945958] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.5 ms +[1421763469.172405] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421763469.400718] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421763469.622422] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.7 ms +[1421763469.885504] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.0 ms +[1421763470.147332] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=57.5 ms +[1421763470.373330] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421763470.580813] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.14 ms +[1421763470.792611] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.46 ms +[1421763470.998186] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421763471.205711] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.40 ms +[1421763471.437035] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.1 ms +[1421763471.680724] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.1 ms +[1421763471.897183] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421763472.157293] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.2 ms +[1421763472.435507] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.2 ms +[1421763472.661224] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421763472.882009] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421763473.087011] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763473.316482] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421763473.541656] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421763473.827879] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.8 ms +[1421763474.116027] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.5 ms +[1421763474.342895] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421763474.567453] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421763474.796944] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.4 ms +[1421763475.082296] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.0 ms +[1421763475.305590] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421763475.511115] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763475.717796] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763475.929912] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.59 ms +[1421763476.140065] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.97 ms +[1421763476.349779] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.58 ms +[1421763476.564234] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.3 ms +[1421763476.814977] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.6 ms +[1421763477.071143] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=52.4 ms +[1421763477.293671] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421763477.521930] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421763477.750389] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421763477.977499] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421763478.204064] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421763478.409478] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763478.692680] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.2 ms +[1421763478.975523] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.7 ms +[1421763479.200847] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421763479.424381] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421763479.705944] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.1 ms +[1421763479.925824] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.7 ms +[1421763480.131104] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763480.337859] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763480.544340] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763480.749644] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421763480.958123] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.71 ms +[1421763481.188629] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.4 ms +[1421763481.405320] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421763481.622511] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421763481.840915] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421763482.061663] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421763482.337386] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.6 ms +[1421763482.561437] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421763482.784694] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421763483.006315] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.7 ms +[1421763483.212507] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763483.443553] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.8 ms +[1421763483.672687] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421763483.889989] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421763484.173673] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.7 ms +[1421763484.437620] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.1 ms +[1421763484.643465] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763484.849342] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763485.054503] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763485.260445] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763485.465718] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763485.671559] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763485.916791] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=41.1 ms +[1421763486.122021] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763486.327064] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421763486.532220] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763486.737159] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763486.949927] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.94 ms +[1421763487.155579] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763487.361051] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421763487.591006] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421763487.797520] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421763488.003345] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763488.208807] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763488.447601] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.5 ms +[1421763488.669589] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421763488.880904] 1261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.08 ms +[1421763489.086051] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763489.303654] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421763489.510153] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763489.715997] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763489.921362] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763490.126878] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763490.347335] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421763490.553098] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763490.760126] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421763490.965668] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763491.171164] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763491.377880] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763491.583637] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763491.790059] 1566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763491.995590] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763492.200901] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763492.406019] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763492.611765] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763492.818396] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763493.023458] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763493.229013] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763493.435603] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763493.641153] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763493.846541] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763494.051490] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763494.257805] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421763494.463042] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763494.668384] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763494.873816] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763495.078617] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763495.284191] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763495.489085] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763495.694085] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763495.899394] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763496.105405] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763496.311641] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763496.516889] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763496.722437] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763496.928288] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763497.133118] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763497.338586] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763497.544120] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763497.750502] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763497.955831] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763498.161158] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763498.366578] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763498.573257] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421763498.778230] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763498.984863] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763499.190055] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763499.395555] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763499.601107] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763499.807887] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763500.012970] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763500.219334] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763500.424410] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763500.630243] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763500.835799] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763501.040319] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763501.246085] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763501.451966] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763501.658316] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763501.864009] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763502.068544] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763502.273622] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763502.479980] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763502.685480] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763502.891870] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763503.096981] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763503.302255] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763503.508348] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763503.713383] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763503.919371] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763504.124934] 1261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763504.329969] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763504.535032] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763504.741633] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763504.947307] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763505.152619] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763505.357645] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763505.562818] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763505.768249] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763505.973340] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763506.179668] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763506.385552] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763506.591847] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763506.797102] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763507.002562] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763507.207619] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421763507.412975] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763507.619653] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763507.826665] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421763508.032091] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421763508.237459] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763508.442712] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763508.647766] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763508.854141] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763509.060694] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763509.265856] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763509.471361] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763509.678067] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763509.884434] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763510.090159] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763510.295521] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763510.500972] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763510.706800] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763510.912542] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763511.117412] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763511.322231] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763511.528545] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763511.734561] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763511.940187] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763512.145321] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763512.350815] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.93 ms +[1421763512.556120] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763512.761657] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763512.967257] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763513.172842] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763513.378164] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763513.583338] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763513.789435] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763513.994808] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763514.201132] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763514.406154] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763514.612118] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421763514.818377] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.87 ms +[1421763515.023937] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421763515.229708] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763515.435239] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763515.641908] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763515.847218] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763516.052243] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763516.257541] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763516.464186] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763516.669612] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763516.876078] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763517.081193] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763517.286057] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763517.491255] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763517.697612] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763517.903758] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421763518.109641] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421763518.314736] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763518.521112] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763518.726819] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763518.933088] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763519.138159] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763519.344045] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763519.549799] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763519.756599] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763519.963088] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763520.168739] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763520.374141] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763520.580766] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763520.786590] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763520.992121] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763521.197425] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763521.402396] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763521.607244] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763521.813829] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763522.020704] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763522.225601] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763522.431123] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.87 ms +[1421763522.637998] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.72 ms +[1421763522.843552] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763523.049875] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763523.254885] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763523.460504] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763523.665659] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763523.872618] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421763524.077695] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763524.283571] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763524.489227] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763524.695230] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763524.901348] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763525.106468] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763525.312837] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421763525.517744] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763525.724164] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763525.930506] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421763526.135482] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763526.342020] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421763526.547552] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763526.753269] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763526.960057] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763527.166285] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763527.371285] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763527.576685] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763527.783338] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421763527.989133] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763528.194732] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763528.400464] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421763528.605450] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763528.811328] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763529.016807] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763529.222031] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763529.428556] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763529.634132] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763529.838986] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763530.044795] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763530.250310] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421763530.456358] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421763530.662507] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763530.867789] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763531.073106] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763531.278556] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763531.484128] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763531.690101] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763531.895354] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763532.100803] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763532.305930] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763532.512028] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763532.717869] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763532.923979] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763533.129001] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763533.334270] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763533.540532] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763533.746755] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763533.952071] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763534.157053] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763534.362917] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421763534.568311] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763534.773609] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763534.979490] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763535.185775] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763535.391801] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421763535.598415] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763535.804740] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763536.010843] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421763536.216185] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763536.421602] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763536.627313] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763536.833927] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763537.039122] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763537.243989] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763537.449456] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763537.656068] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763537.862940] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421763538.069189] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763538.274361] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763538.479633] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763538.685002] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763538.890311] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763539.096126] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763539.301414] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763539.507080] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763539.712033] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763539.917313] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763540.122365] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763540.327504] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763540.534097] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763540.740000] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763540.945637] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763541.153914] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421763541.359263] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763541.565084] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421763541.770964] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763541.976692] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763542.183191] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763542.388921] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763542.594121] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763542.799963] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763543.005221] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763543.210799] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763543.415705] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763543.620632] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763543.825929] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763544.031025] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763544.236161] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763544.441208] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763544.646866] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763544.852655] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763545.057900] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763545.262789] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763545.468911] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763545.675401] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763545.881641] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421763546.086897] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763546.292033] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421763546.498159] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763546.703437] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763546.908433] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763547.113153] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763547.319123] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421763547.524847] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763547.730868] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763547.937215] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421763548.142735] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763548.347741] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763548.554554] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763548.759963] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763548.966144] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421763549.172478] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763549.377822] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763549.583878] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763549.789358] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763549.994570] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763550.200614] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763550.406515] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763550.612358] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763550.819096] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421763551.025157] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763551.230731] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763551.435864] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763551.642199] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763551.847356] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763552.053126] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763552.259895] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763552.465419] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763552.671987] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763552.877695] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763553.083011] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763553.289136] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763553.494480] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763553.700209] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763553.905506] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763554.110726] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763554.315753] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763554.522348] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763554.727975] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763554.934670] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763555.141599] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.81 ms +[1421763555.347122] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763555.552893] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763555.759842] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763555.965388] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763556.173512] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.91 ms +[1421763556.384381] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.44 ms +[1421763556.600587] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421763556.820801] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421763557.038317] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421763557.262301] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421763557.545653] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.9 ms +[1421763557.771411] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421763557.998412] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421763558.223311] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421763558.452830] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.2 ms +[1421763558.739676] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.3 ms +[1421763558.970457] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.3 ms +[1421763559.191317] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421763559.416295] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421763559.638218] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.7 ms +[1421763559.867280] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421763560.093926] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421763560.299232] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763560.504727] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763560.716475] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.97 ms +[1421763560.926639] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.92 ms +[1421763561.163195] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.5 ms +[1421763561.411504] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.3 ms +[1421763561.630530] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421763561.856719] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421763562.140771] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.0 ms +[1421763562.365020] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421763562.640266] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.0 ms +[1421763562.861030] 1021 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421763563.139987] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.0 ms +[1421763563.424656] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.9 ms +[1421763563.643101] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421763563.869757] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421763564.099559] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421763564.328027] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421763564.558703] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.3 ms +[1421763564.779184] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421763565.003337] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421763565.210209] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763565.415245] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763565.621437] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.05 ms +[1421763565.844691] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421763566.057638] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.04 ms +[1421763566.274102] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421763566.494457] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421763566.770529] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.9 ms +[1421763566.994626] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421763567.271652] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.1 ms +[1421763567.494779] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421763567.776628] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.7 ms +[1421763568.000724] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421763568.223182] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421763568.505258] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.2 ms +[1421763568.786956] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.4 ms +[1421763569.010996] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421763569.240070] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421763569.466479] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421763569.749399] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.2 ms +[1421763569.955512] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763570.160892] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763570.366340] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763570.572778] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763570.777866] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763570.982933] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763571.187803] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763571.394130] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763571.599309] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763571.806304] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763572.011449] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763572.216706] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763572.422049] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763572.627157] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763572.833750] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763573.039062] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763573.244106] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763573.449602] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763573.655698] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763573.860791] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763574.065998] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763574.271456] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763574.479134] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763574.705218] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421763574.920815] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421763575.137094] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421763575.357290] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421763575.582650] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421763575.809878] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421763576.089436] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.3 ms +[1421763576.315691] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421763576.543046] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421763576.749181] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763577.031488] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421763577.254457] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421763577.479567] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421763577.705983] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421763577.933944] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421763578.162460] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421763578.390927] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421763578.597083] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763578.802902] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763579.008311] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763579.216649] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.04 ms +[1421763579.427024] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.36 ms +[1421763579.666191] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.5 ms +[1421763579.871898] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763580.077673] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763580.283656] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763580.488735] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763580.694126] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763580.900521] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763581.105443] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763581.311505] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763581.518308] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763581.723676] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763581.928948] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763582.134994] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763582.340043] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763582.545117] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763582.751192] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421763582.957852] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421763583.163220] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763583.369110] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763583.575599] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763583.781321] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763583.986425] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763584.191774] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763584.396704] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763584.602076] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763584.807884] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421763585.015796] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763585.220946] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763585.426375] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763585.632076] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763585.837170] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763586.042255] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763586.247568] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763586.452942] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763586.658783] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421763586.864914] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763587.070995] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763587.275892] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763587.481262] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763587.687086] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763587.893025] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763588.099215] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421763588.304652] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763588.511305] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421763588.716902] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763588.922567] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763589.128537] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763589.333844] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763589.539420] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763589.744905] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763589.950484] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763590.156386] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763590.361692] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763590.567643] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763590.773477] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763590.980215] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763591.187145] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763591.392138] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763591.597400] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763591.802402] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763592.007816] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763592.213301] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763592.418323] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763592.624623] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763592.829711] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763593.034797] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763593.241131] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763593.446375] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763593.651949] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763593.857477] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763594.063500] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763594.269979] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763594.476012] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763594.682544] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763594.887801] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763595.092679] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763595.297800] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763595.503080] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763595.708676] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763595.914356] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763596.119287] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763596.325200] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763596.530411] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763596.736087] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763596.941855] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763597.147203] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763597.352149] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763597.557517] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763597.762962] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763597.970199] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421763598.176395] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763598.382748] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763598.588246] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421763598.794438] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763598.999926] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763599.205134] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763599.410631] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763599.616372] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763599.822327] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763600.027119] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763600.232425] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763600.439449] 1897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763600.644622] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763600.850312] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763601.055376] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763601.261505] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763601.467058] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763601.672765] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763601.878313] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763602.083555] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763602.288327] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763602.493143] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421763602.699336] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763602.904371] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763603.109333] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763603.314150] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421763603.519711] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763603.726045] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763603.932104] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421763604.136907] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763604.342256] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763604.548884] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763604.755026] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763604.960407] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763605.165676] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763605.371913] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763605.577718] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763605.784407] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763605.991294] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763606.199910] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.50 ms +[1421763606.405141] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763606.610516] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763606.816137] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763607.020698] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763607.226828] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763607.433287] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763607.639087] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763607.844767] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763608.050000] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763608.255439] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421763608.461048] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763608.666913] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763608.872804] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763609.077517] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763609.283683] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421763609.490410] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421763609.695504] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763609.902165] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763610.106929] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763610.313481] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763610.520174] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763610.727364] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763610.933952] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763611.139231] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763611.345155] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763611.550824] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763611.757589] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763611.962882] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763612.167802] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763612.373204] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763612.579463] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421763612.785897] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763612.991213] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763613.196628] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763613.401567] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763613.607160] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763613.813653] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763614.019034] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763614.224144] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763614.429553] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763614.635250] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763614.841306] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763615.047623] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763615.252795] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763615.458083] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763615.663490] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763615.868682] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763616.073625] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763616.279098] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763616.484426] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763616.689812] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763616.895459] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763617.101037] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763617.307359] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763617.513687] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763617.719495] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763617.926142] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421763618.132031] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763618.337221] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763618.542389] 841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763618.747684] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763618.953344] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763619.159078] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763619.366855] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.70 ms +[1421763619.572747] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763619.779353] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763619.984655] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763620.190303] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763620.395258] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763620.600874] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763620.807438] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763621.012774] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763621.217949] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763621.423314] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763621.629692] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763621.836123] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763622.042234] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763622.247621] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763622.453150] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763622.658712] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763622.864253] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763623.073318] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.52 ms +[1421763623.279133] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421763623.484614] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763623.690187] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763623.896805] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763624.102784] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763624.308110] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763624.514211] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763624.719924] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763624.925423] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763625.130389] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763625.335664] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763625.541116] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763625.747089] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763625.952614] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763626.157631] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763626.362755] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763626.576160] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.53 ms +[1421763626.781768] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763626.988689] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763627.194011] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763627.449216] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.2 ms +[1421763627.655322] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763627.866478] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.09 ms +[1421763628.078979] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.78 ms +[1421763628.284276] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763628.489635] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763628.695057] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763628.900271] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763629.138365] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.5 ms +[1421763629.343757] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763629.551470] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.01 ms +[1421763629.762536] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.81 ms +[1421763629.975364] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.68 ms +[1421763630.191086] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.0 ms +[1421763630.449632] 1612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=54.2 ms +[1421763630.685015] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.5 ms +[1421763630.911395] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421763631.138265] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421763631.364777] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421763631.591473] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421763631.862860] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=67.3 ms +[1421763632.094473] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.8 ms +[1421763632.321624] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421763632.538281] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421763632.744093] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763632.952339] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.14 ms +[1421763633.163105] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.35 ms +[1421763633.386686] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421763633.608173] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421763633.827347] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421763634.050105] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421763634.276340] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421763634.560503] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.1 ms +[1421763634.784004] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421763635.008677] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421763635.299119] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=86.4 ms +[1421763635.506234] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.03 ms +[1421763635.712158] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763635.917092] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763636.126422] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.61 ms +[1421763636.331721] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763636.538197] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763636.744025] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763636.949679] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763637.155867] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.00 ms +[1421763637.368697] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.95 ms +[1421763637.579199] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.93 ms +[1421763637.791612] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.03 ms +[1421763638.030179] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.0 ms +[1421763638.288441] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=53.8 ms +[1421763638.508432] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.7 ms +[1421763638.714183] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763638.920468] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763639.132604] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.10 ms +[1421763639.343213] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.38 ms +[1421763639.583694] 1541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.8 ms +[1421763639.834004] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.0 ms +[1421763640.097908] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.6 ms +[1421763640.334470] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.4 ms +[1421763640.619734] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.3 ms +[1421763640.825162] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763641.030485] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763641.235591] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763641.441511] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763641.647123] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763641.853149] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763642.094354] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=37.3 ms +[1421763642.333415] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.9 ms +[1421763642.547088] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.79 ms +[1421763642.765556] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421763643.021856] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.9 ms +[1421763643.297602] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.7 ms +[1421763643.525716] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421763643.752908] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421763643.981451] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421763644.191852] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.96 ms +[1421763644.442726] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.9 ms +[1421763644.665420] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421763644.875541] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.59 ms +[1421763645.096484] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421763645.313372] 1148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421763645.530675] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421763645.751545] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421763645.974606] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421763646.200608] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421763646.427355] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421763646.654171] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421763646.879193] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421763647.086713] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.74 ms +[1421763647.291983] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763647.497178] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763647.702553] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763647.907749] 847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763648.137791] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.5 ms +[1421763648.353979] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421763648.569786] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.4 ms +[1421763648.786921] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421763649.007830] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421763649.228322] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421763649.434340] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421763649.640120] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763649.845559] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763650.054106] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.03 ms +[1421763650.282542] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421763650.499804] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421763650.716934] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421763650.938452] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421763651.161039] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421763651.387420] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421763651.613785] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421763651.842603] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421763652.068160] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421763652.307631] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.1 ms +[1421763652.533435] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421763652.819738] 1955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.9 ms +[1421763653.084165] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.4 ms +[1421763653.313579] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.3 ms +[1421763653.537565] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421763653.771317] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.8 ms +[1421763653.998700] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421763654.224930] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421763654.431129] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763654.636160] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763654.844141] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.74 ms +[1421763655.053080] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.09 ms +[1421763655.289680] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.6 ms +[1421763655.501763] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.03 ms +[1421763655.760373] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=54.2 ms +[1421763655.966505] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421763656.173227] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763656.378510] 1133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763656.583989] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763656.789758] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763656.996654] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763657.201833] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763657.407263] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763657.612667] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763657.817831] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763658.022737] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763658.227998] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763658.435510] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.23 ms +[1421763658.641036] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763658.846452] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763659.051297] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763659.257513] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763659.462650] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763659.667830] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763659.873163] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763660.079206] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763660.284709] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763660.490021] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763660.695638] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763660.901178] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763661.106607] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763661.311668] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763661.516875] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763661.722192] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763661.927683] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763662.132890] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763662.337871] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763662.543285] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763662.748590] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763662.954090] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763663.160584] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763663.389950] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421763663.596416] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763663.812139] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421763664.017074] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763664.245301] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421763664.451610] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763664.656691] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763664.910079] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=49.2 ms +[1421763665.115006] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763665.405109] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=86.3 ms +[1421763665.610471] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763665.815846] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763666.020560] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763666.225925] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763666.437743] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.61 ms +[1421763666.643989] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763666.849649] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763667.054820] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763667.260364] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421763667.526329] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=61.6 ms +[1421763667.732833] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763667.941434] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.53 ms +[1421763668.164608] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421763668.372444] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.84 ms +[1421763668.587715] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421763668.794319] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.86 ms +[1421763668.999779] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421763669.205097] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763669.439928] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.5 ms +[1421763669.651954] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.65 ms +[1421763669.857480] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763670.062642] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763670.267799] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763670.474111] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763670.688185] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.76 ms +[1421763670.904234] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.9 ms +[1421763671.114446] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.24 ms +[1421763671.323116] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.73 ms +[1421763671.528891] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763671.738491] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.18 ms +[1421763671.943950] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763672.149617] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763672.355373] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763672.654862] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=94.9 ms +[1421763672.866003] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.93 ms +[1421763673.070959] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763673.275611] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763673.480792] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763673.686266] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763673.892937] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763674.099038] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763674.303922] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763674.513749] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763674.720223] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763674.926130] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763675.131310] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763675.336695] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763675.542041] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763675.749037] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421763675.961599] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.66 ms +[1421763676.168218] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763676.381091] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.76 ms +[1421763676.586685] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763676.791999] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763676.996947] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763677.202409] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763677.407878] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763677.613910] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763677.819808] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763678.025283] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763678.231038] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763678.437843] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763678.643617] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763678.850193] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763679.055049] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763679.259731] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763679.465254] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763679.670532] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763679.876023] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763680.081879] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763680.286994] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763680.494150] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.89 ms +[1421763680.699046] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763680.905314] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763681.110380] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763681.316653] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763681.521954] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763681.727487] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763681.934085] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763682.139266] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763682.344376] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763682.550793] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763682.756886] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421763682.965593] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.36 ms +[1421763683.171200] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421763683.376284] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763683.582901] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763683.788839] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763683.994527] 825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763684.200336] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763684.405647] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763684.611286] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763684.816942] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763685.022761] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763685.229000] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763685.434686] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763685.640581] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763685.846146] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763686.052407] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763686.264157] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.83 ms +[1421763686.470146] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763686.676203] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763686.881770] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763687.086817] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763687.291960] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763687.497355] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763687.702612] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763687.908322] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763688.113952] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763688.318999] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763688.524500] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763688.730521] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763688.935582] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763689.140683] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763689.345729] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763689.551634] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763689.757264] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763689.962885] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763690.168576] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763690.373984] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763690.578905] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763690.785391] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763690.990697] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763691.196441] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763691.401775] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763691.606647] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763691.812066] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763692.016821] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763692.222055] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763692.427701] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763692.633254] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763692.839713] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763693.044578] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763693.249692] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763693.454868] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763693.661766] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763693.867584] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763694.072596] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763694.277872] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763694.483817] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763694.693604] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.17 ms +[1421763694.900014] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763695.105236] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763695.311774] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763695.518946] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763695.724292] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763695.930259] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763696.135801] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763696.341597] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763696.547555] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763696.752700] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763696.958342] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763697.163395] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763697.368410] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763697.573984] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763697.779608] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763697.985282] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763698.191861] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763698.397378] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763698.603297] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763698.810200] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763699.015712] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763699.221403] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763699.426770] 145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763699.632172] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763699.837515] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763700.042019] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763700.248017] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763700.454612] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763700.660185] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763700.865302] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763701.070322] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763701.276526] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763701.481851] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763701.687064] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763701.893666] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763702.098974] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763702.303886] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763702.509612] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763702.715326] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763702.920583] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763703.126466] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763703.332709] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763703.538033] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763703.743877] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421763703.949949] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421763704.156766] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763704.361867] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763704.567773] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763704.774108] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763704.979968] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763705.185146] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763705.390413] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763705.595611] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763705.802321] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763706.008311] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763706.214350] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421763706.419512] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763706.624682] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763706.829885] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763707.036054] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763707.241460] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763707.447758] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763707.653147] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763707.858504] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763708.064412] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763708.269597] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763708.474940] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763708.681193] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763708.887341] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763709.092301] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763709.298470] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763709.504474] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763709.712241] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.82 ms +[1421763709.917880] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763710.123464] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763710.329916] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763710.535241] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763710.740965] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763710.946510] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421763711.152266] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763711.357052] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763711.563921] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763711.770938] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763711.977712] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763712.183115] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763712.388331] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763712.594235] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763712.799933] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763713.005518] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763713.211029] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763713.416943] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421763713.622346] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763713.828999] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763714.034203] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763714.239536] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763714.444702] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763714.649911] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763714.855316] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763715.060050] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763715.266308] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763715.471724] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763715.678413] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763715.883760] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763716.088702] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763716.293869] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763716.499675] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763716.705160] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763716.912115] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421763717.117144] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763717.322655] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763717.528142] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763717.734276] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763717.939090] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763718.143621] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763718.348858] 825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421763718.554388] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763718.759397] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763718.964831] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763719.169946] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763719.376039] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763719.581490] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763719.787090] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763719.992334] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763720.197819] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763720.402981] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763720.608704] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763720.815136] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763721.021025] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763721.228596] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763721.434051] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763721.640931] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763721.846233] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763722.052419] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763722.258355] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763722.465224] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763722.671135] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763722.876513] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763723.082568] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763723.287721] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763723.494064] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763723.700161] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763723.905845] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421763724.110638] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763724.316471] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763724.521882] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763724.728499] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763724.934607] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421763725.139886] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763725.345506] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763725.551122] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763725.756746] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763725.963031] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763726.168209] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763726.373404] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763726.579925] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763726.785723] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763726.991312] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763727.197633] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763727.403113] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763727.609128] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763727.814692] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763728.021019] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763728.226570] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763728.432212] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763728.637728] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763728.843754] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763729.048539] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763729.253406] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763729.459526] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763729.664818] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763729.871005] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763730.084829] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421763730.290117] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763730.495511] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763730.700982] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763730.907771] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763731.113913] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763731.320022] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763731.525358] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763731.732139] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763731.937700] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763732.144400] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763732.349325] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763732.554584] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763732.760672] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763732.966172] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763733.171306] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763733.377045] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763733.582165] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763733.787522] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763733.993283] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763734.200111] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421763734.404941] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763734.609955] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763734.815857] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763735.021156] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763735.226328] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763735.434779] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.70 ms +[1421763735.640133] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763735.846578] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763736.051510] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763736.257559] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763736.462611] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763736.667815] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763736.873112] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763737.078461] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763737.283840] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763737.490301] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763737.695488] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763737.900937] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763738.107040] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763738.311828] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763738.518166] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421763738.723430] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763738.928423] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763739.134585] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763739.339494] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763739.545866] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763739.751780] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.89 ms +[1421763739.956849] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763740.161516] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763740.366486] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763740.571171] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763740.776487] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763740.981925] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763741.187565] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763741.393557] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763741.598483] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763741.803162] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763742.008438] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763742.213599] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763742.419119] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763742.624238] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763742.829234] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763743.033912] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763743.240450] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421763743.445824] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763743.651463] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763743.857225] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763744.062855] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421763744.267858] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763744.473500] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763744.679805] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763744.886707] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763745.092687] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763745.298901] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763745.503798] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763745.708787] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763745.913669] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763746.118349] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763746.323118] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763746.528481] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763746.734721] 1955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421763746.939990] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763747.146395] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763747.352017] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763747.557884] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763747.763305] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763747.968779] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421763748.173854] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763748.379835] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763748.584999] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763748.790234] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763748.995152] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763749.200677] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421763749.406670] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763749.612340] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763749.817772] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763750.023908] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763750.229191] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763750.435426] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763750.641342] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421763750.846957] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763751.051490] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763751.256313] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763751.461411] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763751.667110] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763751.872434] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763752.077213] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763752.282554] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763752.487913] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763752.693504] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763752.899105] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763753.105259] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421763753.310086] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763753.515992] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763753.722418] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763753.929125] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763754.134624] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763754.340848] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763754.547101] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763754.752267] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763754.960559] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.17 ms +[1421763755.171884] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.35 ms +[1421763755.384154] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.25 ms +[1421763755.598878] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421763755.816975] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421763756.082856] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.4 ms +[1421763756.363406] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.8 ms +[1421763756.569376] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763756.775748] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763756.980604] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763757.185879] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421763757.392163] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421763757.597238] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763757.802891] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763758.009034] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421763758.214058] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763758.419183] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763758.624181] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763758.829538] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763759.034362] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763759.239494] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763759.445652] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763759.650895] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763759.856304] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763760.061422] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763760.266676] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763760.471994] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763760.677910] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763760.882947] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763761.088919] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763761.294143] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763761.499135] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763761.705328] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763761.910836] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763762.116086] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763762.321218] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763762.527640] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763762.733217] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763762.938819] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763763.144460] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763763.349348] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763763.554671] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763763.759624] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763763.965367] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763764.171812] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763764.377079] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763764.583413] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763764.793040] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.48 ms +[1421763765.005041] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.50 ms +[1421763765.222196] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421763765.427482] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763765.632407] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763765.837760] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421763766.047675] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.83 ms +[1421763766.280772] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.2 ms +[1421763766.496271] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421763766.748060] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=47.9 ms +[1421763766.954877] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763767.160540] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763767.365902] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763767.571615] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421763767.776855] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763767.983482] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763768.190401] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421763768.395705] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421763768.600803] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763768.806150] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763769.012031] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763769.217502] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763769.423722] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763769.628870] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763769.835091] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763770.040095] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763770.245311] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763770.450821] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763770.656799] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.88 ms +[1421763770.862300] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763771.067375] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763771.271941] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763771.478300] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763771.683799] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763771.889015] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763772.093899] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763772.299660] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421763772.505843] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763772.711261] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763772.915938] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763773.120715] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763773.325211] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763773.531437] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763773.736717] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763773.941781] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763774.147022] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763774.352006] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763774.559908] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.89 ms +[1421763774.765146] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763774.970678] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763775.176528] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763775.381739] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763775.587004] 1186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763775.791966] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763775.997172] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763776.203443] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763776.408586] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763776.613968] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763776.819306] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763777.024934] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763777.231106] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763777.436070] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763777.642529] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763777.848536] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763778.054369] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763778.260586] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763778.467188] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763778.673126] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763778.878735] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763779.083644] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763779.288894] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763779.494436] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763779.700126] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763779.906365] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763780.112135] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763780.317507] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763780.523237] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763780.728618] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763780.934587] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763781.141037] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763781.346971] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763781.551738] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763781.756745] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763781.962675] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763782.167418] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763782.372915] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763782.578518] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763782.784124] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763783.003963] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763783.210412] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763783.415948] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763783.621163] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763783.826831] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763784.032128] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763784.238198] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763784.443397] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763784.648481] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763784.853504] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763785.058300] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763785.263245] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763785.468558] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763785.674037] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763785.880289] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763786.086039] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763786.291694] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763786.496519] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763786.701794] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763786.907710] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763787.112541] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763787.317436] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763787.523642] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763787.728739] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763787.934808] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763788.139691] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763788.345932] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421763788.551321] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763788.757612] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763788.962736] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763789.168784] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763789.374904] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763789.580491] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763789.785549] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763789.991565] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421763790.197297] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421763790.403235] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763790.610309] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421763790.815641] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763791.020766] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.85 ms +[1421763791.225979] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763791.431143] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763791.636385] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763791.841687] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763792.046424] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763792.253305] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.81 ms +[1421763792.458297] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763792.663839] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421763792.869325] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763793.075578] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763793.281434] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763793.486257] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763793.691286] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763793.896909] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763794.101828] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763794.306747] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763794.513457] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763794.718655] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763794.924002] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763795.129133] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763795.335190] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421763795.540180] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763795.745434] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763795.951186] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763796.156650] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763796.361732] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763796.566990] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763796.771985] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763796.978144] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421763797.183698] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763797.389146] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763797.594549] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763797.800820] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763798.006171] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763798.212697] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421763798.417767] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763798.622713] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763798.829152] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763799.034472] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763799.239385] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763799.445242] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763799.650987] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763799.857143] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763800.061787] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763800.267707] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763800.473219] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763800.678754] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763800.884816] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763801.090121] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421763801.294872] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763801.500059] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763801.704941] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763801.910935] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763802.115545] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763802.320419] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763802.525777] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763802.730860] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763802.936993] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763803.143080] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763803.348129] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763803.553782] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421763803.758330] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763803.964155] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763804.170125] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763804.375209] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763804.580686] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763804.786999] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763805.002679] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.9 ms +[1421763805.207756] 1156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763805.412917] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763805.619195] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763805.825692] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763806.031237] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763806.236742] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763806.442066] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763806.648100] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763806.854694] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763807.059676] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763807.264548] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763807.470567] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763807.676370] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763807.882758] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421763808.088586] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763808.295051] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421763808.500643] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763808.706121] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763808.912693] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763809.117406] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763809.323017] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763809.528517] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763809.734328] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763809.939858] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763810.145224] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763810.350552] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763810.556128] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763810.761046] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763810.967165] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763811.173492] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763811.379833] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763811.586380] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763811.792012] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763811.998267] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763812.203561] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763812.408837] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763812.628004] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421763812.833429] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763813.039250] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763813.244178] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763813.449162] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763813.656470] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.27 ms +[1421763813.867382] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.67 ms +[1421763814.078853] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.01 ms +[1421763814.295843] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421763814.515446] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.7 ms +[1421763814.738888] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421763814.966162] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421763815.188117] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421763815.471672] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.6 ms +[1421763815.698398] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421763815.918325] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421763816.146789] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421763816.378821] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.1 ms +[1421763816.584020] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763816.790343] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763816.995701] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763817.206013] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.73 ms +[1421763817.424728] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421763817.639878] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421763817.883171] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.4 ms +[1421763818.103585] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421763818.327268] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421763818.551597] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421763818.773932] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421763819.047430] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.7 ms +[1421763819.275538] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421763819.481321] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763819.686455] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763819.892065] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763820.096909] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763820.301927] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763820.507639] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763820.713400] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421763820.919463] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763821.125289] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763821.331227] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421763821.536452] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421763821.742434] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421763821.947680] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763822.153080] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763822.359160] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.00 ms +[1421763822.564616] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763822.770639] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763822.976647] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763823.181721] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763823.387835] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763823.593457] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763823.799443] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.89 ms +[1421763824.004429] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763824.210287] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421763824.415904] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421763824.621909] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421763824.827217] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763825.032265] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763825.237195] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763825.442183] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763825.647490] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763825.853220] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763826.059399] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763826.264516] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763826.471035] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763826.676619] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763826.883137] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763827.087901] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763827.293872] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763827.499089] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763827.705119] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763827.911667] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421763828.117436] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763828.322691] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763828.528273] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763828.734550] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763828.939128] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763829.144160] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763829.349091] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763829.554299] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763829.760779] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421763829.966802] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763830.171918] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763830.377189] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763830.583659] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763830.788652] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763830.994497] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763831.200362] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763831.406812] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763831.612786] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763831.818527] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763832.024573] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763832.230289] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763832.435392] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763832.640648] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763832.845578] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763833.050606] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421763833.265429] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421763833.470876] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763833.676933] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763833.881896] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763834.086758] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763834.291963] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763834.498368] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763834.704051] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763834.909227] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763835.114950] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763835.319808] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763835.524925] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763835.729795] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763835.935869] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763836.147240] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.06 ms +[1421763836.352416] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763836.557888] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763836.763010] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763836.968395] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421763837.173219] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763837.379465] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763837.584787] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763837.790119] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763837.995407] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763838.200402] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763838.405479] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763838.611484] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421763838.817786] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763839.023105] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763839.229233] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763839.434753] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763839.640989] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763839.845918] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763840.051090] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763840.256111] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763840.462743] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421763840.667611] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763840.873877] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763841.080001] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763841.285214] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763841.490154] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763841.696128] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763841.900636] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763842.105978] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763842.310805] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763842.515888] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763842.720775] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763842.925427] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763843.130121] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763843.336777] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763843.542985] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763843.748441] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763843.954649] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421763844.159839] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763844.365585] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763844.571665] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763844.776599] 904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763844.981021] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763845.185816] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763845.390868] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763845.595607] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763845.800581] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763846.005740] 904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763846.210725] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763846.415436] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763846.620351] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763846.826351] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763847.030937] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763847.235872] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763847.441393] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763847.646497] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763847.851432] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763848.055887] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763848.261023] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763848.466659] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763848.671900] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763848.879043] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763849.089681] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763849.294866] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763849.500079] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763849.705361] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763849.910605] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763850.115259] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763850.320639] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763850.527112] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421763850.733412] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421763850.939318] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763851.144769] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421763851.350211] 1451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421763851.555355] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763851.761537] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763851.966415] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763852.171380] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763852.377685] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763852.583595] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763852.789131] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763852.994834] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421763853.199752] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763853.405042] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763853.609987] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763853.815460] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763854.020367] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763854.225457] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763854.430383] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763854.635578] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763854.841962] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763855.046554] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763855.251683] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763855.456835] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763855.662380] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763855.867490] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763856.073053] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763856.277911] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763856.483999] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763856.689175] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763856.895129] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763857.099652] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763857.304924] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763857.509636] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763857.715066] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763857.920560] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763858.125546] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763858.330592] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763858.535954] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763858.741161] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763858.947671] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763859.153551] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763859.359415] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763859.565777] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763859.772040] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421763859.978081] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763860.183428] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763860.388673] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763860.594069] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763860.800055] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421763861.005833] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421763861.210434] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763861.415268] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763861.621211] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421763861.826674] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763862.031659] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763862.236737] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763862.441697] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763862.647397] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763862.852216] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763863.057799] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763863.262534] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763863.467833] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763863.673227] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763863.878652] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763864.084216] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763864.290626] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763864.496435] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763864.701553] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763864.907374] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763865.112167] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763865.318088] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763865.523542] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763865.729418] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763865.935353] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763866.140506] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763866.345251] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763866.550575] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421763866.756608] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763866.961503] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763867.167763] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421763867.374391] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.97 ms +[1421763867.579330] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763867.783855] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763867.989664] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763868.195980] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421763868.401431] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763868.607869] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421763868.814121] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421763869.019476] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763869.223909] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421763869.429075] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763869.635273] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763869.840018] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763870.044327] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763870.248992] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763870.454853] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763870.660310] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763870.866795] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763871.071840] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763871.277080] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763871.483287] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763871.688260] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763871.893413] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763872.099277] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763872.304103] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763872.509103] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763872.714646] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763872.919812] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763873.124781] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763873.330485] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763873.536787] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763873.741775] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763873.947168] 1261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763874.152821] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763874.358031] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763874.563991] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763874.768738] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.00 ms +[1421763874.973601] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763875.178464] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763875.383979] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763875.589205] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763875.795411] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763876.000428] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763876.205256] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421763876.411863] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421763876.617008] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763876.822312] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763877.027801] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.93 ms +[1421763877.232255] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763877.437370] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763877.641703] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421763877.847627] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763878.052539] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763878.257628] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763878.463144] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421763878.669108] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421763878.874746] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763879.079517] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763879.284450] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763879.489723] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763879.695465] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763879.901011] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763880.105849] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763880.310695] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763880.515548] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763880.720513] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763880.925780] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763881.130587] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763881.336755] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763881.541597] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763881.746623] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763881.951858] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763882.157311] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763882.363072] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763882.568102] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763882.773258] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763882.978841] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763883.185219] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763883.391525] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763883.597157] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763883.802065] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763884.006892] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763884.211905] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763884.416957] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763884.623300] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763884.829386] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763885.033917] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763885.239212] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763885.444665] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421763885.650254] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421763885.856046] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763886.060786] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763886.267071] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763886.473275] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763886.679627] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763886.885275] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763887.090227] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763887.296040] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763887.501223] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763887.707508] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763887.912732] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763888.118905] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421763888.323993] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763888.529450] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763888.735568] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763888.940749] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763889.146957] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763889.352307] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763889.557777] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763889.762654] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763889.968027] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763890.173138] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763890.378328] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763890.584707] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763890.789655] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763890.994583] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763891.199575] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763891.404864] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763891.610318] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763891.817480] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.21 ms +[1421763892.021866] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763892.226482] 145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763892.431407] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763892.636540] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763892.841703] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763893.046223] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763893.251002] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763893.456494] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421763893.661657] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763893.866923] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763894.071505] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763894.276768] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763894.481556] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763894.686258] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763894.891403] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763895.095651] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763895.300389] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763895.505558] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763895.710832] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763895.915996] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763896.121777] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763896.327770] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763896.532941] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763896.738323] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763896.943479] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763897.149222] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763897.355210] 1913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763897.560328] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763897.765328] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.02 ms +[1421763897.970146] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763898.174958] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763898.380255] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421763898.586479] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763898.792631] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763898.997707] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763899.202430] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421763899.407320] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763899.612777] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763899.817367] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763900.022851] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763900.227587] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763900.432746] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763900.638132] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763900.843348] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763901.048043] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763901.253222] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763901.459300] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763901.664679] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763901.872476] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.95 ms +[1421763902.082190] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.41 ms +[1421763902.316665] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.9 ms +[1421763902.533229] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421763902.747319] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.2 ms +[1421763903.011933] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.5 ms +[1421763903.232939] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421763903.437833] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763903.642908] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763903.849158] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763904.054597] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421763904.262072] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.85 ms +[1421763904.473787] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.84 ms +[1421763904.714071] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.1 ms +[1421763904.932693] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421763905.156473] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421763905.381303] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421763905.603126] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421763905.885771] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.6 ms +[1421763906.118056] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.5 ms +[1421763906.411814] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=89.7 ms +[1421763906.633880] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421763906.919273] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.5 ms +[1421763907.144114] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421763907.366739] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421763907.586351] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421763907.874432] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.9 ms +[1421763908.079292] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763908.284978] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763908.490387] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763908.705232] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421763908.916149] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.79 ms +[1421763909.128575] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.98 ms +[1421763909.345243] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421763909.562340] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421763909.834812] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=68.4 ms +[1421763910.060643] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421763910.284909] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421763910.508364] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421763910.796151] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.8 ms +[1421763911.022617] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421763911.228880] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763911.515470] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.7 ms +[1421763911.741877] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421763911.967238] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421763912.194881] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421763912.419738] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421763912.645391] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421763912.850419] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763913.056107] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421763913.260991] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763913.477788] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421763913.693780] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.7 ms +[1421763913.908377] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421763914.125869] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421763914.344634] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421763914.562593] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421763914.838884] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.1 ms +[1421763915.117054] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.5 ms +[1421763915.339861] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421763915.567619] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421763915.794933] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421763916.014012] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421763916.237632] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421763916.468926] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.4 ms +[1421763916.748594] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.6 ms +[1421763916.970082] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421763917.193716] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421763917.480446] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.1 ms +[1421763917.688292] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.81 ms +[1421763917.893782] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421763918.100955] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.82 ms +[1421763918.313841] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.24 ms +[1421763918.530164] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.2 ms +[1421763918.747477] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421763918.964281] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421763919.182084] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421763919.444095] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=58.4 ms +[1421763919.726040] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.4 ms +[1421763919.957502] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.6 ms +[1421763920.184098] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421763920.410154] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421763920.634413] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421763920.844561] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763921.049400] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763921.254428] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763921.460057] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763921.665460] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763921.870140] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763922.074578] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763922.279571] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763922.492492] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.80 ms +[1421763922.702912] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.32 ms +[1421763922.944203] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=37.6 ms +[1421763923.158599] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421763923.379513] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421763923.585007] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763923.790613] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763923.996065] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763924.202082] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763924.412698] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.42 ms +[1421763924.624821] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.13 ms +[1421763924.839788] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421763925.053649] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.97 ms +[1421763925.276778] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421763925.495892] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.2 ms +[1421763925.724595] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421763925.946204] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421763926.232265] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.0 ms +[1421763926.518058] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.9 ms +[1421763926.723309] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763926.928386] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763927.133472] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763927.339517] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763927.544524] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763927.751074] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421763927.959287] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.99 ms +[1421763928.165497] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763928.371980] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763928.577867] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763928.783108] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763928.989317] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421763929.194803] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763929.400204] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763929.606413] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421763929.811554] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763930.016261] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763930.222010] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763930.426808] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763930.632887] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763930.838333] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763931.043359] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763931.248268] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763931.453702] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763931.659345] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763931.865176] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763932.071007] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421763932.276044] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763932.481016] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763932.687659] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763932.892839] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763933.097894] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763933.303225] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763933.509090] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763933.714953] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763933.920684] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763934.126753] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763934.332943] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763934.539329] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763934.745577] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763934.950230] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763935.155531] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421763935.360150] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763935.565102] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763935.770952] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763935.975982] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763936.182538] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421763936.387744] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763936.593843] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763936.799035] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763937.004006] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763937.209082] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763937.413969] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763937.619581] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763937.824949] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763938.029770] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763938.234990] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421763938.440063] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763938.645620] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763938.850989] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763939.055899] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421763939.261328] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763939.467819] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421763939.673095] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421763939.878096] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763940.082580] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763940.287435] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763940.492676] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763940.698109] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763940.903230] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763941.108038] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763941.313015] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763941.518169] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763941.723577] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763941.929094] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763942.134558] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763942.340608] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421763942.545700] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763942.750649] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763942.955928] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763943.162008] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763943.366980] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763943.572329] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763943.777780] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763943.983312] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763944.188678] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763944.393382] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763944.599516] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763944.805005] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421763945.012570] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.82 ms +[1421763945.217696] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763945.424394] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421763945.635235] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.49 ms +[1421763945.841674] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421763946.046611] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763946.251496] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763946.457109] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763946.663168] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763946.868216] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421763947.072992] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763947.277790] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763947.482623] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763947.687710] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763947.892442] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763948.097076] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763948.302668] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421763948.508472] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.85 ms +[1421763948.713907] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763948.919465] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763949.124936] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763949.331117] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763949.537370] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763949.743655] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763949.950075] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421763950.155162] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763950.361138] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421763950.566355] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763950.771702] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763950.977183] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763951.183491] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763951.388591] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763951.593604] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763951.798697] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763952.004693] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763952.210661] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763952.415472] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763952.621168] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421763952.826704] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763953.031713] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763953.244127] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.62 ms +[1421763953.449806] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763953.655510] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763953.861280] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763954.066168] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763954.271375] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763954.477659] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763954.683117] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763954.888245] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763955.093391] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421763955.298032] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421763955.503968] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763955.708827] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763955.914058] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763956.119566] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763956.324584] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763956.530801] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763956.737345] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763956.942518] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763957.147796] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763957.352881] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763957.558427] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421763957.764497] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421763957.969644] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763958.176053] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421763958.381360] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763958.586998] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421763958.792975] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421763958.998307] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763959.204597] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763959.409685] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763959.615057] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763959.820790] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763960.025771] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763960.230856] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763960.437210] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763960.642450] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763960.848019] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763961.053544] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763961.258707] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763961.463984] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763961.670272] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421763961.876518] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421763962.081207] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763962.286159] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763962.492297] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763962.698700] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763962.904220] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763963.109509] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763963.314719] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763963.519955] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763963.725254] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763963.930526] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763964.135844] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763964.341177] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763964.546861] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763964.752515] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421763964.957714] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763965.163276] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763965.368341] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763965.573761] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763965.779399] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763965.984405] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763966.189359] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763966.394881] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421763966.599864] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763966.805574] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421763967.010202] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763967.215892] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421763967.421344] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421763967.627540] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421763967.833286] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763968.037986] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763968.243261] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763968.449578] 1566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421763968.655209] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763968.860485] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763969.065222] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763969.270338] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763969.475922] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763969.681382] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763969.886611] 30 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763970.091728] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421763970.297138] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421763970.502890] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763970.708507] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763970.913470] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421763971.119109] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763971.324717] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763971.531253] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421763971.736780] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763971.942435] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421763972.154771] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.38 ms +[1421763972.360209] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421763972.565522] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763972.770841] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763972.975603] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763973.180113] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763973.385335] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763973.591558] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763973.797319] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763974.002164] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763974.207483] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763974.412866] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763974.618809] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763974.824066] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763975.029139] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763975.233968] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763975.439032] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763975.645226] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763975.850838] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763976.056425] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763976.261501] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763976.467062] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421763976.672521] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763976.878692] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763977.083229] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421763977.287969] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763977.492841] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763977.699825] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.11 ms +[1421763977.904661] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763978.109153] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763978.314493] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763978.520179] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763978.725344] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421763978.930128] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763979.135379] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763979.341787] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763979.547172] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421763979.752602] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421763979.958406] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421763980.163952] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763980.369093] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763980.574392] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421763980.779742] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763980.985537] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763981.191404] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421763981.396838] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763981.602336] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763981.807744] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421763982.013264] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421763982.218436] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763982.424123] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763982.629487] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763982.834629] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763983.039081] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421763983.243594] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763983.448290] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421763983.653615] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763983.858423] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763984.063316] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421763984.268249] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763984.473467] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763984.678558] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421763984.884664] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421763985.089728] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421763985.294418] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421763985.500562] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763985.706087] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421763985.911713] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763986.117129] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421763986.322364] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763986.528163] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421763986.734877] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421763986.941154] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763987.146597] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763987.352208] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421763987.557640] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421763987.764143] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421763987.970623] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421763988.176005] 1072 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421763988.382156] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763988.587854] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421763988.794214] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421763988.999429] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763989.204986] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763989.411106] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421763989.617218] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421763989.822320] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421763990.028004] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421763990.232945] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763990.439322] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421763990.644724] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763990.851023] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421763991.055830] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763991.260853] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763991.466147] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421763991.671525] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763991.876921] 1021 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421763992.081867] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421763992.286704] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763992.492014] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421763992.697808] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763992.903534] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421763993.108567] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763993.313655] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421763993.518675] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763993.724539] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421763993.930061] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421763994.135364] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763994.341591] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421763994.546954] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421763994.752615] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421763994.957755] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421763995.163434] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421763995.368867] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421763995.573786] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421763995.778872] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421763995.983966] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421763996.188937] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421763996.393563] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763996.600136] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421763996.805592] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421763997.010561] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421763997.215366] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421763997.420435] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421763997.626102] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421763997.831577] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421763998.036676] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421763998.241264] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421763998.446656] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421763998.651959] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421763998.857702] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421763999.063459] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421763999.268735] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421763999.477465] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.58 ms +[1421763999.685882] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.61 ms +[1421763999.899559] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.1 ms +[1421764000.105166] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764000.319422] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421764000.539396] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421764000.744691] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764000.950169] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764001.155439] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764001.361255] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764001.567310] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764001.773227] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764001.979490] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421764002.184152] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764002.389151] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764002.594002] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764002.798747] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764003.003921] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764003.209195] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764003.414196] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764003.619434] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764003.825620] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764004.030274] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764004.236238] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764004.441331] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764004.647723] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764004.854096] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764005.059974] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421764005.264910] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764005.469699] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764005.675008] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764005.880157] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764006.084754] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764006.289777] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764006.494791] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764006.699727] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764006.904538] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764007.108566] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764007.313637] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764007.518346] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764007.723028] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764007.928418] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764008.133451] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764008.338260] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764008.542964] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764008.748567] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764008.953681] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764009.158797] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764009.364271] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764009.569616] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764009.774592] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764009.979224] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764010.184263] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764010.389474] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764010.594370] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764010.800132] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764011.006002] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764011.211724] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764011.416821] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764011.621938] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764011.826917] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764012.031343] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764012.235956] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764012.441013] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764012.646691] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764012.851585] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764013.055988] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764013.260957] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764013.466127] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764013.671257] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764013.876310] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764014.080766] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764014.285210] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764014.491463] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764014.697315] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421764014.901958] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764015.106691] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764015.311602] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764015.516923] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764015.723141] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764015.928376] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764016.134306] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764016.340098] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764016.544992] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764016.749400] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764016.955004] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764017.159916] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764017.364937] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764017.569842] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764017.775526] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764017.980875] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764018.186864] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764018.393156] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421764018.598444] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764018.803967] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764019.009717] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421764019.215987] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421764019.421073] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764019.626609] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764019.833109] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764020.038947] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764020.243921] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764020.450211] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764020.656365] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764020.862094] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764021.066952] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764021.272663] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.92 ms +[1421764021.479111] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764021.685370] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764021.891848] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764022.096608] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764022.301585] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764022.507040] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764022.713585] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764022.919429] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764023.126316] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421764023.334703] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.87 ms +[1421764023.563156] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421764023.780821] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421764024.000138] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.2 ms +[1421764024.221693] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421764024.445711] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421764024.668421] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421764024.897592] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421764025.121926] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421764025.327477] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764025.533555] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764025.738909] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764025.944478] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764026.150006] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764026.355390] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764026.560551] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764026.765867] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764026.971631] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764027.176807] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764027.383190] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764027.589782] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421764027.795392] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421764028.001756] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764028.220498] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421764028.432917] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.60 ms +[1421764028.645032] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.09 ms +[1421764028.865187] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421764029.085978] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421764029.308563] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421764029.591611] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.0 ms +[1421764029.872385] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.7 ms +[1421764030.090541] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421764030.296204] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764030.501792] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421764030.712092] 1522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.72 ms +[1421764030.922643] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.62 ms +[1421764031.135407] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.86 ms +[1421764031.350785] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421764031.570650] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421764031.788267] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421764032.012710] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421764032.218989] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421764032.425003] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764032.631867] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421764032.837253] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764033.043076] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764033.260696] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421764033.465503] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764033.670583] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764033.875921] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764034.080889] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764034.286251] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421764034.493573] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.35 ms +[1421764034.705049] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.36 ms +[1421764034.918650] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.60 ms +[1421764035.139474] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421764035.356782] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421764035.634218] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.6 ms +[1421764035.862380] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421764036.071130] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.23 ms +[1421764036.276420] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764036.481566] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764036.687752] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421764036.894127] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764037.098918] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764037.307326] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.79 ms +[1421764037.512191] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764037.717282] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764037.922624] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764038.129103] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.01 ms +[1421764038.357825] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421764038.600259] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.5 ms +[1421764038.852566] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.6 ms +[1421764039.071265] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.2 ms +[1421764039.296777] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421764039.522772] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421764039.756022] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.0 ms +[1421764040.037616] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.8 ms +[1421764040.264164] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421764040.471293] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.40 ms +[1421764040.676596] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764040.882153] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764041.086939] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764041.291804] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764041.496975] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764041.702270] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764041.909376] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.36 ms +[1421764042.138914] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421764042.349356] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.91 ms +[1421764042.559953] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.82 ms +[1421764042.767113] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764042.972800] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764043.178081] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764043.383889] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764043.589832] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421764043.794943] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764043.999997] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764044.204945] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764044.409864] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764044.615976] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764044.821329] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764045.026913] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764045.233492] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764045.439387] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764045.644697] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764045.849615] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764046.055069] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764046.260110] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764046.465858] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764046.671436] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764046.876540] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764047.081504] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764047.285938] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764047.490815] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764047.696911] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764047.902230] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764048.106960] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764048.311756] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764048.516918] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764048.722508] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764048.928244] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421764049.133478] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764049.339525] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764049.545466] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764049.750767] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764049.957109] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764050.162963] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764050.367911] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764050.573786] 1541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764050.779119] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764050.984359] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764051.189363] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764051.395002] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764051.600980] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764051.805964] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764052.010547] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764052.215589] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764052.420317] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764052.624888] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764052.829714] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764053.034332] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764053.238938] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764053.444154] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764053.650577] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764053.855907] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764054.060809] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764054.265915] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764054.471473] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764054.677007] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764054.882239] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764055.087165] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764055.291993] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764055.497343] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764055.703635] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764055.908901] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764056.114396] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764056.319485] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764056.524955] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764056.731388] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764056.936646] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764057.142381] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764057.347141] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764057.551830] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764057.757112] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764057.961847] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764058.167764] 1541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764058.373100] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764058.578305] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764058.784524] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764058.989392] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764059.194036] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764059.398983] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764059.604366] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764059.810236] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764060.014819] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421764060.219656] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764060.424878] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421764060.630121] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421764060.835803] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764061.040388] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764061.245959] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764061.451126] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764061.656268] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764061.861335] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764062.067090] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764062.271914] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764062.476872] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764062.683012] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764062.889021] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764063.093712] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764063.298675] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764063.503433] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764063.708526] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764063.913961] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764064.118831] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764064.324437] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421764064.529396] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764064.735301] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764064.941925] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764065.147676] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764065.353832] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764065.559758] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421764065.764979] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764065.969981] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764066.175949] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764066.381188] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764066.586260] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764066.791292] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764066.997595] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764067.202739] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764067.408192] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764067.612781] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764067.817523] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764068.022129] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764068.228219] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764068.434824] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421764068.641790] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421764068.847330] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764069.052216] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764069.257256] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764069.462807] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421764069.668957] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764069.874509] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764070.079916] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764070.284632] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764070.489082] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764070.694118] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764070.898666] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764071.103417] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764071.308595] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764071.514977] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764071.720044] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764071.925776] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764072.130100] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764072.334677] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764072.540592] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764072.747039] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764072.952567] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764073.158382] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764073.363720] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764073.568940] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764073.774096] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764073.979568] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764074.184753] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764074.390591] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764074.595735] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764074.801127] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764075.006914] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764075.212862] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764075.417922] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764075.623255] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764075.828610] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764076.034225] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421764076.239168] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764076.444038] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764076.648940] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764076.854740] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764077.059158] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764077.265088] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764077.469801] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764077.674575] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764077.879153] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764078.083897] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764078.289162] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421764078.509497] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421764078.715030] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764078.920140] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764079.124943] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764079.330261] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764079.535413] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764079.741103] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764079.946311] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764080.151654] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764080.358219] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764080.563722] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764080.768743] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764080.975152] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764081.181304] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421764081.386828] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764081.592523] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764081.797547] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764082.002162] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764082.207018] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764082.412019] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764082.618203] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764082.823613] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764083.028543] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764083.233555] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764083.438306] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764083.643370] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764083.848887] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764084.055491] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421764084.261126] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764084.467832] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764084.675213] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764084.880027] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764085.084336] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764085.288962] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764085.493849] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764085.699553] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764085.904757] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764086.109707] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764086.314885] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764086.520054] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764086.725094] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764086.930272] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764087.135341] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764087.340747] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764087.546086] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764087.751029] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764087.955867] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764088.161033] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764088.367739] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421764088.573439] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764088.778604] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764088.983476] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764089.188786] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764089.393851] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764089.599551] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764089.804831] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764090.009231] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421764100.417974] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764100.623174] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764100.829811] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421764101.035536] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764101.240804] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764101.446048] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764101.650987] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764101.856237] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764102.060923] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764102.265669] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764102.470715] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764102.676324] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764102.881737] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764103.086655] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764103.293279] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421764103.498541] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764103.704039] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764103.909488] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764104.114682] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764104.320189] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764104.524805] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764104.729874] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764104.934419] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764105.140668] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764105.346314] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764105.551669] 814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764105.756388] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764105.962643] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764106.167843] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764106.372927] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764106.579114] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764106.784928] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764106.990925] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764107.195338] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764107.401577] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764107.606778] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764107.812800] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764108.017545] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764108.223081] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764108.428118] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764108.634444] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764108.840875] 1984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764109.046885] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764109.252753] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764109.457777] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764109.663096] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764109.869008] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764110.073993] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764110.278962] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764110.483859] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764110.688702] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764110.894751] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421764111.099841] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764111.308260] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.99 ms +[1421764111.513444] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764111.718771] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764111.924234] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421764112.129821] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764112.339260] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.92 ms +[1421764112.551540] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.26 ms +[1421764112.768854] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421764112.974241] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764113.186223] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.72 ms +[1421764113.430731] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=40.9 ms +[1421764113.686670] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.9 ms +[1421764113.906855] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421764114.178066] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=67.4 ms +[1421764114.400023] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421764114.619482] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421764114.903092] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.8 ms +[1421764115.130579] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421764115.355201] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421764115.581082] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421764115.809909] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421764116.036717] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421764116.258700] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421764116.464384] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764116.669390] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764116.874363] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764117.083575] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.50 ms +[1421764117.295124] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.85 ms +[1421764117.507756] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.72 ms +[1421764117.720892] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.14 ms +[1421764117.977229] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=52.1 ms +[1421764118.193610] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421764118.417989] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421764118.632260] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421764118.859815] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421764119.147318] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.6 ms +[1421764119.377144] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421764119.602148] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421764119.883269] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.3 ms +[1421764120.170008] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.2 ms +[1421764120.388816] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421764120.616994] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421764120.846506] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421764121.051746] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764121.257811] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421764121.464369] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.72 ms +[1421764121.673322] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.91 ms +[1421764121.886133] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.97 ms +[1421764122.097422] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.00 ms +[1421764122.309772] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.87 ms +[1421764122.529938] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421764122.749184] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421764122.973842] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421764123.254705] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.0 ms +[1421764123.508411] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=49.7 ms +[1421764123.779624] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=67.3 ms +[1421764124.005108] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421764124.231483] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421764124.453218] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421764124.681683] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421764124.971159] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.3 ms +[1421764125.257458] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.9 ms +[1421764125.481994] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421764125.687252] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764125.892733] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764126.097788] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764126.317954] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421764126.531591] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.60 ms +[1421764126.746809] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421764126.962498] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421764127.184470] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421764127.407387] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421764127.633296] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421764127.858226] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421764128.063453] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764128.269662] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764128.475066] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764128.680907] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421764128.886277] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764129.092073] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.07 ms +[1421764129.298517] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421764129.504411] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764129.710010] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764129.915250] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764130.120780] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.88 ms +[1421764130.327575] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.04 ms +[1421764130.557803] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.3 ms +[1421764130.771741] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.86 ms +[1421764130.986296] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421764131.203999] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421764131.425886] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421764131.643974] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421764131.850456] 1913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421764132.055492] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764132.260890] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764132.466027] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764132.672708] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764132.879383] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764133.084177] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764133.289302] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764133.494172] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764133.699630] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421764133.904409] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764134.110399] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421764134.315518] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764134.521007] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764134.725861] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764134.935120] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.86 ms +[1421764135.167244] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.6 ms +[1421764135.413766] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.6 ms +[1421764135.672192] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=54.5 ms +[1421764135.944178] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=67.8 ms +[1421764136.171146] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421764136.396720] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421764136.672639] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.0 ms +[1421764136.887748] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421764137.093462] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421764137.298213] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764137.502894] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764137.708284] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764137.913233] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764138.117922] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764138.322827] 30 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764138.528291] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764138.734506] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.72 ms +[1421764138.939846] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764139.145160] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764139.360097] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421764139.589882] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421764139.803647] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.81 ms +[1421764140.019456] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421764140.238969] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421764140.460959] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421764140.748347] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.6 ms +[1421764140.953582] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764141.158830] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764141.365949] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.30 ms +[1421764141.573282] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.28 ms +[1421764141.803009] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.5 ms +[1421764142.039377] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.5 ms +[1421764142.257467] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.4 ms +[1421764142.476461] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421764142.691379] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421764142.896377] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764143.100872] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764143.305409] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764143.511216] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764143.715676] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764143.920349] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764144.125094] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764144.329968] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764144.534477] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764144.739545] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764144.943962] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764145.150054] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421764145.354867] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764145.560798] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764145.765867] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421764145.972664] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.80 ms +[1421764146.177587] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764146.382260] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764146.587346] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764146.793169] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764146.997901] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764147.202625] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764147.408287] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764147.613501] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764147.819385] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764148.023859] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764148.228809] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764148.434344] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764148.640179] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421764148.845790] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764149.050683] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764149.255654] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764149.461948] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764149.667503] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764149.873175] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764150.077968] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764150.283968] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764150.489229] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764150.694397] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764150.899398] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764151.104047] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764151.310126] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764151.515932] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421764151.721888] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421764151.928347] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764152.133411] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764152.339301] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764152.544042] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764152.749165] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764152.954878] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764153.160339] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764153.365254] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764153.570027] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764153.775232] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764153.981765] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421764154.187162] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764154.393453] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764154.599648] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764154.805958] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764155.010662] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764155.216674] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764155.421840] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764155.627108] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764155.832193] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764156.036856] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764156.242650] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764156.450890] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.49 ms +[1421764156.662856] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.96 ms +[1421764156.902656] 1888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.1 ms +[1421764157.153173] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.8 ms +[1421764157.362864] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.91 ms +[1421764157.581369] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421764157.806019] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421764158.088967] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.5 ms +[1421764158.308028] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.2 ms +[1421764158.590672] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.7 ms +[1421764158.812456] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421764159.017193] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764159.222263] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764159.427186] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764159.633121] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421764159.843496] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.54 ms +[1421764160.057788] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421764160.272383] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421764160.525419] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=49.3 ms +[1421764160.748302] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421764160.974458] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421764161.198776] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421764161.421677] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421764161.644955] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421764161.873516] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421764162.092502] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421764162.298727] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421764162.504927] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764162.710499] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764162.915804] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764163.122104] 1529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764163.327894] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764163.532736] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764163.737424] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764163.942571] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764164.149005] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421764164.355831] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.24 ms +[1421764164.566961] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.32 ms +[1421764164.778377] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.49 ms +[1421764164.992343] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.93 ms +[1421764165.211776] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421764165.416372] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764165.621118] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764165.826765] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764166.031058] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421764166.235944] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764166.441204] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764166.647336] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764166.852855] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764167.057286] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764167.263002] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764167.468952] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764167.675078] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764167.880735] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764168.086517] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764168.291235] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764168.496519] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764168.702046] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764168.906712] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764169.111416] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764169.316702] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764169.521848] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764169.732580] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.23 ms +[1421764169.938158] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764170.143731] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764170.350028] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764170.556075] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764170.760756] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764170.966572] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764171.171800] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764171.377994] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764171.583204] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764171.788186] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764171.993052] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764172.198916] 1522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764172.403998] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764172.609118] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764172.814565] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764173.019060] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764173.225080] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764173.429909] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764173.634587] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764173.839316] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764174.043614] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764174.249902] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764174.455249] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764174.660704] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764174.866395] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764175.070706] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764175.276453] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764175.481467] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764175.686594] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764175.891450] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764176.096298] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421764176.301139] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764176.506958] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764176.711916] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764176.917233] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764177.122035] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764177.326807] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764177.531869] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764177.736701] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764177.942257] 837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764178.148423] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764178.353595] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764178.559013] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764178.764539] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764178.971053] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764179.176137] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764179.381219] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764179.585989] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764179.790660] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764179.995987] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764180.201777] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764180.407489] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764180.613702] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764180.819789] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764181.024442] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764181.229325] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764181.434607] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764181.641246] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764181.846435] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764182.051661] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764182.256791] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764182.462338] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764182.667765] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764182.874018] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764183.079838] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421764183.285239] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764183.490985] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764183.696459] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764183.902241] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764184.106901] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764184.312157] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764184.517517] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764184.723763] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764184.929767] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.94 ms +[1421764185.135331] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764185.340593] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764185.546862] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764185.752175] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764185.957602] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764186.163170] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764186.369277] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421764186.575590] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764186.781610] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764186.986632] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764187.192647] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764187.397802] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421764187.603307] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764187.809081] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764188.014348] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764188.219679] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421764188.425806] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421764188.631213] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764188.836752] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764189.041758] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764189.246718] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764189.452665] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764189.657749] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764189.863128] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764190.068082] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421764190.273284] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421764190.478431] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764190.684341] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764190.889694] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764191.094447] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764191.300230] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764191.505452] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764191.711624] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764191.917871] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764192.123041] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764192.328054] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764192.532866] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421764192.738272] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764192.944124] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764193.150229] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764193.355636] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764193.560708] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764193.765665] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764193.970846] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764194.176146] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764194.381149] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764194.586477] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764194.791828] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764194.997165] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764195.203435] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764195.408536] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764195.613802] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764195.818912] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764196.023415] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764196.229384] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764196.434058] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764196.639224] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764196.844642] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764197.048976] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764197.255147] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764197.460268] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764197.666238] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764197.872308] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764198.076616] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764198.281425] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764198.487736] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.67 ms +[1421764198.692961] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764198.899406] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421764199.105043] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764199.309904] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764199.515823] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764199.721120] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764199.926043] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764200.132320] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421764200.337607] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764200.542769] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764200.748859] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764200.953959] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764201.160109] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764201.365053] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764201.570713] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764201.777766] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764201.983253] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764202.188185] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764202.393186] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764202.599045] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421764202.804068] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764203.009097] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764203.214158] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764203.419457] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764203.624829] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764203.831329] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764204.035738] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764204.240828] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764204.449103] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764204.655678] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764204.861111] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764205.066271] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764205.270855] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764205.475974] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764205.681274] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764205.886393] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764206.091045] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764206.297362] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764206.505670] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.38 ms +[1421764206.717615] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.10 ms +[1421764206.959995] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.7 ms +[1421764207.214349] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=50.8 ms +[1421764207.432436] 847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421764207.653677] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421764207.937266] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.8 ms +[1421764208.142233] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764208.347543] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764208.553527] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764208.759411] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764208.964932] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764209.173929] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.70 ms +[1421764209.385949] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.32 ms +[1421764209.600011] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421764209.821426] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421764210.042441] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421764210.263413] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421764210.548497] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.6 ms +[1421764210.774023] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421764210.997037] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421764211.202120] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764211.407210] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764211.612532] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421764211.819820] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.07 ms +[1421764212.029463] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.83 ms +[1421764212.266256] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.2 ms +[1421764212.484682] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421764212.706998] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421764212.912649] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764213.117875] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764213.322815] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764213.528314] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764213.733591] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421764213.938751] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764214.143523] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764214.348899] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421764214.554130] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764214.761273] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764214.967555] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764215.173012] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764215.377876] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764215.583062] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764215.788741] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764215.994983] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764216.199951] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764216.405204] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764216.611540] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764216.816618] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764217.021321] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764217.226283] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764217.431360] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764217.636895] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764217.842418] 1021 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764218.046989] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764218.252636] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421764218.457436] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764218.663851] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421764218.869087] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764219.073548] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764219.279551] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764219.485188] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764219.691444] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764219.896591] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764220.101194] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764220.306156] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764220.511021] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764220.715913] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764220.921229] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764221.126633] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764221.332658] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764221.537645] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764221.742590] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764221.947576] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764222.152855] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764222.358287] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421764222.563661] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764222.768955] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764222.975100] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764223.180168] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764223.385907] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.05 ms +[1421764223.591055] 1026 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764223.796050] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764224.001764] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764224.207635] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764224.412765] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764224.619130] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764224.824225] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764225.029608] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764225.234414] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764225.439155] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764225.644682] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764225.849622] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764226.053835] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764226.258332] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764226.464310] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764226.669259] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764226.874038] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764227.078491] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764227.282815] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764227.487724] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764227.692767] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764227.899320] 1720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764228.104821] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764228.309831] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764228.515293] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764228.721099] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421764228.926542] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764229.131660] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764229.338269] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421764229.543526] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764229.748927] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764229.954887] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764230.160888] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764230.367349] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421764230.572921] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764230.778059] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764230.984045] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764231.189304] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764231.394400] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764231.599614] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764231.805223] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764232.009740] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764232.215829] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764232.422123] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764232.627271] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764232.833483] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764233.038503] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764233.243432] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764233.449939] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421764233.656299] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764233.861981] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421764234.066503] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764234.272375] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764234.477587] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764234.682991] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764234.889142] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764235.093977] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764235.298544] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764235.504995] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421764235.710363] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764235.915403] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764236.120002] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764236.324895] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764236.530085] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764236.735241] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764236.939966] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764237.145864] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764237.350986] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764237.555605] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764237.760415] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764237.965773] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764238.170921] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764238.376336] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764238.583040] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421764238.788298] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764238.994427] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764239.199550] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764239.404271] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421764239.609335] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764239.814593] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764240.019654] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421764240.225845] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764240.432191] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764240.639120] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764240.845132] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764241.051396] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764241.256075] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764241.461198] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764241.666425] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764241.871898] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421764242.076603] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764242.281658] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764242.486803] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764242.692859] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764242.898704] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421764243.103406] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764243.308175] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764243.513331] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764243.719451] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764243.924696] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764244.129599] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421764244.334659] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764244.539870] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764244.746209] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764244.953005] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764245.158129] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764245.364699] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764245.571492] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764245.777139] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764245.982922] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764246.188065] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764246.394279] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421764246.600461] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421764246.805816] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764247.010554] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764247.215618] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764247.421686] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764247.627365] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764247.833078] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764248.038541] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421764248.243361] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764248.449525] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421764248.655114] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764248.860615] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764249.066689] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764249.272066] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764249.477524] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764249.684025] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764249.888893] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764250.093691] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764250.299018] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764250.504653] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764250.709826] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764250.916230] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764251.121553] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764251.327096] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421764251.532107] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764251.736994] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764251.942788] 1880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764252.147683] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764252.353867] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421764252.559292] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764252.765432] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764252.970399] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764253.175753] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764253.381077] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421764253.586411] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764253.792438] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764253.997601] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764254.203813] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764254.408652] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764254.613797] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764254.819488] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764255.024866] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421764255.230044] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764255.435188] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764255.640202] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764255.847121] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.10 ms +[1421764256.052019] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764256.257605] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764256.463749] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764256.668955] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764256.874682] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764257.079405] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764257.284244] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764257.490405] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764257.695315] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764257.900616] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764258.105646] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764258.311122] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421764258.516816] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764258.723250] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764258.928417] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764259.135011] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.87 ms +[1421764259.340023] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764259.546186] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764259.751679] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764259.957643] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.93 ms +[1421764260.163115] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764260.368316] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764260.573051] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764260.778112] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764260.983193] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764261.189419] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764261.404828] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421764261.634744] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421764261.847694] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.01 ms +[1421764262.064255] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421764262.333050] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=65.2 ms +[1421764262.558962] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421764262.787958] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421764263.068399] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.2 ms +[1421764263.273467] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764263.478594] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764263.684432] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764263.890996] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764264.095823] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764264.301869] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764264.508132] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764264.714466] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421764264.919537] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764265.124741] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764265.329878] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764265.535686] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764265.745670] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.85 ms +[1421764265.957830] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.99 ms +[1421764266.174542] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421764266.379716] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764266.585081] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764266.792297] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.01 ms +[1421764267.002837] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.46 ms +[1421764267.217339] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421764267.432864] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.9 ms +[1421764267.688840] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=52.0 ms +[1421764267.914034] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421764268.136976] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421764268.359504] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421764268.646871] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.4 ms +[1421764268.873024] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421764269.093535] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421764269.298375] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764269.504461] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764269.709708] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764269.916753] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.30 ms +[1421764270.122083] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764270.327405] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764270.532601] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764270.738045] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764270.943287] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764271.150952] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.78 ms +[1421764271.374426] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421764271.579698] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764271.786121] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764271.991638] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764272.197174] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764272.403761] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421764272.609788] 1417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421764272.816468] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421764273.021277] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764273.227076] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764273.432059] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764273.637178] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764273.843395] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764274.048481] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421764274.253687] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764274.459643] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421764274.666511] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764274.873890] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421764275.079506] 1156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421764275.285053] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764275.492089] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421764275.697525] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764275.902414] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764276.107220] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764276.312522] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764276.517852] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764276.723923] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764276.929672] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764277.135014] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764277.341325] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764277.546656] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764277.751435] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764277.956167] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764278.160962] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764278.366184] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764278.570905] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764278.775403] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764278.980368] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764279.186321] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764279.391469] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764279.598120] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.20 ms +[1421764279.804135] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764280.009484] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764280.214656] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764280.419882] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764280.625979] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764280.831491] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764281.037286] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421764281.242168] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764281.447228] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764281.652372] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764281.858419] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764282.064015] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764282.269799] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764282.475194] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764282.680572] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764282.886044] 825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421764283.090890] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764283.297213] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764283.502532] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764283.707511] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764283.912637] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764284.117160] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764284.321751] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764284.526818] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764284.732125] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764284.937646] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764285.143011] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764285.348976] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764285.553988] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764285.759478] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764285.964845] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764286.169856] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764286.375038] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764286.580266] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764286.785323] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764286.990568] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764287.195673] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764287.401584] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764287.607343] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764287.812171] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764288.016559] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764288.222559] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764288.428395] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764288.634442] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421764288.839527] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764289.043991] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764289.249660] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764289.454766] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764289.660660] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764289.865644] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764290.070481] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764290.276261] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764290.482187] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764290.687160] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764290.892249] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764291.096537] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421764291.301319] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764291.506474] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764291.712336] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764291.917451] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764292.122055] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764292.326716] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764292.531869] 1297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764292.736468] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764292.941067] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.01 ms +[1421764293.145869] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764293.350760] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764293.556054] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764293.762574] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764293.968708] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764294.173640] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764294.378477] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764294.583702] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764294.789604] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421764294.995256] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764295.200434] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764295.405462] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764295.610659] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764295.816010] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764296.020750] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764296.225684] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764296.430526] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764296.636099] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764296.841676] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764297.047536] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764297.252650] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764297.458597] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764297.663492] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764297.868627] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764298.074740] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764298.280019] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764298.484998] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764298.691423] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764298.897122] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764299.103000] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764299.308013] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764299.512920] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764299.718302] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764299.923687] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764300.128447] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764300.336335] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.78 ms +[1421764300.541841] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764300.747165] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764300.953321] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764301.158586] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764301.364110] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764301.569934] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764301.776165] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764301.981604] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764302.186879] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764302.392192] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764302.597961] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764302.803437] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764303.009490] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764303.214741] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764303.420119] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764303.626926] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421764303.832193] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764304.037601] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764304.242807] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764304.448197] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764304.653028] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764304.857927] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764315.266300] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764315.471582] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764315.676642] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764315.882147] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764316.086740] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764316.291789] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764316.498000] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764316.703264] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764316.909508] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764317.114239] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764317.319316] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764317.524870] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764317.730045] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764317.935120] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764318.140092] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764318.345547] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764318.551362] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764318.757127] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764318.962293] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764319.167480] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764319.373124] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421764319.578960] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764319.784766] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764319.989922] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764320.196613] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764320.401918] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764320.607817] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764320.813087] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764321.017983] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764321.223897] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764321.430423] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421764321.635709] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764321.841198] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764322.045883] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764322.251002] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764322.456072] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764322.661293] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764322.867042] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764323.072100] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764323.277215] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764323.483559] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764323.688696] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764323.894133] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764324.100265] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764324.305421] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764324.511890] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764324.717982] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764324.923158] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764325.129623] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764325.338982] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.48 ms +[1421764325.545198] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764325.750727] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421764325.955695] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764326.160975] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764326.367038] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764326.572535] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764326.777951] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764326.983246] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764327.188528] 1417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764327.393661] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764327.598589] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764327.803559] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764328.007998] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764328.213936] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764328.418970] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764328.623955] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764328.829128] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421764329.033860] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764329.238876] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764329.443850] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764329.648909] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764329.853987] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764330.058287] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764330.263114] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764330.468688] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764330.674191] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764330.879687] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764331.084344] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421764331.290424] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764331.496872] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764331.702045] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764331.906841] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764332.111081] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764332.316238] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764332.521826] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764332.727137] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764332.932539] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764333.137927] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764333.343001] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764333.548152] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764333.753639] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764333.959397] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764334.164121] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764334.368831] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764334.574134] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764334.780084] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421764334.985821] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764335.191153] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764335.396050] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764335.601129] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764335.806425] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764336.010913] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764336.215840] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764336.420872] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764336.626977] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764336.832443] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764337.037504] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764337.242799] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764337.447877] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764337.653848] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764337.859459] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764338.064120] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764338.268635] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764338.473592] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764338.679063] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764338.884725] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764339.089437] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764339.294370] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764339.500617] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764339.706836] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764339.912365] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764340.117609] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764340.323903] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764340.529171] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764340.733876] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764340.939190] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764341.144614] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764341.349442] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764341.554482] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764341.760506] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764341.966006] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764342.171582] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764342.376761] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764342.585281] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.64 ms +[1421764342.806338] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421764343.012131] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421764343.218205] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764343.424356] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764343.647019] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421764343.861578] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.91 ms +[1421764344.080639] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421764344.301046] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421764344.521670] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421764344.745111] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421764345.032096] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.9 ms +[1421764345.254781] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421764345.481037] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421764345.706419] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421764345.911543] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764346.145677] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.2 ms +[1421764346.367940] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421764346.588540] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421764346.804110] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421764347.030825] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421764347.256516] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421764347.476915] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421764347.683005] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764347.887863] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764348.092284] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421764348.299148] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.96 ms +[1421764348.509227] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.75 ms +[1421764348.720614] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.43 ms +[1421764348.969525] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.0 ms +[1421764349.185186] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421764349.411691] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421764349.632196] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421764349.856820] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421764350.087444] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.0 ms +[1421764350.315977] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421764350.544062] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421764350.767748] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421764351.046277] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.5 ms +[1421764351.269810] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421764351.499259] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.5 ms +[1421764351.725644] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421764352.012881] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.4 ms +[1421764352.240547] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421764352.447200] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421764352.651850] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764352.856744] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764353.061364] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764353.268931] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.92 ms +[1421764353.481541] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.83 ms +[1421764353.727118] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=41.7 ms +[1421764353.947632] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421764354.168818] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421764354.389749] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421764354.615025] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421764354.839224] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421764355.057413] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421764355.280734] 1186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421764355.506966] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421764355.726119] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421764355.953409] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421764356.180699] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421764356.403052] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421764356.626024] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421764356.855275] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.3 ms +[1421764357.080618] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421764357.309176] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421764357.525710] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421764357.732155] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764357.937199] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764358.143999] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.81 ms +[1421764358.352738] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.93 ms +[1421764358.563979] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.13 ms +[1421764358.784020] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421764358.989164] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764359.210669] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.7 ms +[1421764359.430931] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421764359.648956] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421764359.876520] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421764360.158791] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.3 ms +[1421764360.364176] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764360.569404] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764360.774362] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764360.980507] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421764361.185017] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764361.389829] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764361.595673] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764361.801793] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764362.009528] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.22 ms +[1421764362.222936] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.68 ms +[1421764362.427822] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764362.632572] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764362.837533] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764363.043112] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764363.249664] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421764363.455364] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421764363.660579] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764363.865825] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764364.070344] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764364.276760] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764364.482210] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764364.687655] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421764364.894261] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421764365.098942] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764365.303959] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764365.509441] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764365.715637] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764365.921399] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764366.127600] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764366.332958] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764366.538561] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764366.744538] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764366.949834] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764367.154943] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764367.359882] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764367.564946] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764367.770366] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764367.975309] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764368.181333] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764368.387338] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764368.593774] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764368.799628] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764369.004899] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764369.210050] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764369.415053] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764369.620373] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421764369.825679] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764370.030381] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764370.236296] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764370.441332] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764370.647344] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764370.853373] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.95 ms +[1421764371.059272] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421764371.265051] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764371.470296] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764371.675180] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764371.881427] 1870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764372.087809] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764372.292914] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764372.498134] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764372.706289] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764372.911664] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764373.116224] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764373.322261] 1932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764373.528309] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764373.734619] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764373.939802] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764374.144757] 904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764374.349870] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764374.555377] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764374.761679] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764374.966589] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764375.172035] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764375.377796] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421764375.583279] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764375.789589] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764375.995524] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764376.200503] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764376.405513] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764376.611260] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764376.816739] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764377.021648] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764377.227502] 1984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764377.433630] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764377.639239] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764377.844390] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764378.049936] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764378.255741] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764378.461133] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764378.667674] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764378.872347] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764379.076985] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764379.281739] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764379.487793] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764379.692917] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764379.898652] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764380.104097] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764380.308974] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764380.513979] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764380.719404] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421764380.924648] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764381.129407] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764381.335277] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764381.540359] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764381.745293] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764381.950962] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764382.156113] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764382.361038] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764382.566184] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764382.771672] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764382.977200] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764383.183621] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764383.388748] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764383.594536] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764383.800078] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764384.005421] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764384.210787] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764384.416040] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764384.622381] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764384.827440] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764385.032104] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764385.236879] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764385.442087] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421764385.648470] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764385.853887] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764386.058862] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764386.263911] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764386.469009] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764386.677978] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.94 ms +[1421764386.883519] 837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764387.088469] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764387.293287] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764387.499398] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764387.783609] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.3 ms +[1421764387.988580] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764388.193747] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764388.399832] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764388.605657] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421764388.810947] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764389.015965] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764389.222156] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764389.427351] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764389.640633] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.45 ms +[1421764389.846318] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764390.050911] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764390.256866] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764390.462025] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764390.667616] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764390.872915] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764391.078539] 1612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421764391.285026] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421764391.490426] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764391.695527] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764391.900563] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764392.106233] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.98 ms +[1421764392.312258] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764392.517571] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764392.722628] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764392.927798] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764393.133023] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764393.338159] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764393.543921] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421764393.749843] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764393.955355] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764394.160687] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764394.366732] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764394.572020] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764394.782485] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.06 ms +[1421764394.987930] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764395.193132] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764395.399066] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421764395.604441] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764395.809138] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764396.013827] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764396.218527] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764396.423699] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764396.630486] 1716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764396.835970] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764397.040877] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764397.245926] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764397.451141] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764397.656745] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764397.863307] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764398.069249] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421764398.275200] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764398.481672] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764398.687237] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764398.893965] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764399.098917] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764399.304128] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764399.509726] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421764399.714962] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764399.920108] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764400.125772] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764400.330857] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764400.537570] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764400.743594] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764400.948921] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764401.154448] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764401.359634] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764401.566220] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764401.771622] 161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764401.977193] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764402.183494] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764402.388755] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764402.595155] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764402.800480] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764403.005292] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764403.210899] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421764403.416354] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421764403.622140] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421764403.828741] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764404.034456] 1541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421764404.240398] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764404.445821] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764404.651406] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764404.856601] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764405.062291] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764405.268140] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764405.474778] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764405.681326] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764405.887835] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764406.092658] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764406.298478] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764406.503455] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764406.708819] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764406.913745] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764407.118933] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764407.324182] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764407.529627] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421764407.734635] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764407.941084] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764408.146288] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764408.351323] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764408.556958] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764408.763817] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421764408.970182] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764409.175246] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764409.380883] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764409.586773] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764409.792991] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764409.999229] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764410.204290] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764410.409422] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764410.615458] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764410.820869] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764411.025788] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764411.231719] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764411.436972] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764411.642359] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764411.850521] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.16 ms +[1421764412.055146] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764412.260079] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764412.471627] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.79 ms +[1421764412.677713] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764412.882862] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764413.087302] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764413.292027] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764413.496930] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764413.701902] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764413.908030] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764414.113947] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421764414.319424] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764414.524822] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764414.730072] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764414.935818] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764415.140894] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764415.346046] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764415.550882] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764415.756168] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764415.961135] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764416.166674] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764416.372044] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764416.577035] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764416.782003] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764416.986850] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764417.191671] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764417.396932] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764417.601975] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764417.811398] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.25 ms +[1421764418.017073] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421764418.221779] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421764418.427153] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764418.633827] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764418.839071] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764419.043450] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764419.249205] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764419.455514] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764419.660979] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764419.866651] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764420.072429] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764420.278771] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764420.484981] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764420.691190] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764420.896731] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764421.101707] 1392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764421.306668] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764421.512354] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764421.717865] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764421.923194] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764422.128380] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764422.333442] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764422.538642] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764422.743286] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764422.949523] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764423.154589] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764423.359905] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764423.565643] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764423.770540] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764423.975721] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764424.181034] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764424.386110] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764424.592271] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764424.797350] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764425.003528] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764425.208926] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764425.414021] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764425.620586] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.67 ms +[1421764425.825796] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764426.031255] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764426.236393] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764426.442433] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764426.647824] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764426.853213] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764427.057564] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764427.262474] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764427.467333] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764427.672484] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764427.878077] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764428.083034] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764428.288774] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764428.494764] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421764428.700695] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764428.907163] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764429.113396] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764429.318161] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764429.523595] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764429.731805] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.28 ms +[1421764429.944105] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.30 ms +[1421764430.149619] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764430.354900] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764430.560614] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764430.767021] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764430.972501] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764431.178251] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421764431.383564] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421764431.588744] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764431.793693] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764431.998813] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764432.203830] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764432.409735] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764432.615547] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.93 ms +[1421764432.821835] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764433.027365] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764433.232731] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764433.438547] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764433.644263] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764433.849851] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764434.054703] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764434.259492] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764434.464721] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764434.670096] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764434.876262] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764435.081233] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764435.286692] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764435.492556] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764435.699210] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764435.904859] 1133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764436.109681] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764436.314830] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764436.520356] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764436.726485] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764436.931204] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764437.136326] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764437.342348] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764437.549149] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764437.755629] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764437.961365] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764438.166455] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764438.371667] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764438.576723] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764438.781937] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764438.987062] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764439.192440] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421764439.397396] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764439.602666] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764439.807890] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764440.017144] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.97 ms +[1421764440.222049] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764440.427767] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764440.633167] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764440.838682] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764441.043465] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764441.249633] 1670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764441.454799] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764441.660323] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764441.865557] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764442.070531] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764442.276290] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764442.482308] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.07 ms +[1421764442.687679] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764442.893795] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764443.098688] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764443.304930] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764443.510713] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764443.715970] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764443.920964] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764444.125783] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764444.331052] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764444.536390] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764444.741977] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764444.947553] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764445.152786] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764445.357619] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421764445.562600] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764445.769129] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764445.974090] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764446.179386] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764446.384622] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764446.590685] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421764446.796038] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764447.001441] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764447.207386] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764447.413103] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764447.618117] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764447.823104] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764448.027497] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764448.232191] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764448.436995] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764448.642097] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764448.847673] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764449.052433] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764449.257521] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764449.463138] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764449.668729] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764449.874118] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764450.078505] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764450.283652] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764450.489391] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421764450.694197] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764450.899309] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764451.104044] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764451.309095] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764451.514381] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764451.719902] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764451.925354] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764452.130734] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764452.336726] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764452.542152] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764452.746952] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764452.952349] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764453.157758] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764453.362792] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764453.568828] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764453.774012] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764453.979894] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764454.185692] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421764454.390996] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764454.596833] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764454.802273] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764455.007684] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764455.213560] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764455.418235] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764455.624441] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421764455.830047] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764456.036089] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421764456.242479] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421764456.447352] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764456.652226] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764456.857017] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764457.061892] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764457.267208] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764457.473435] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764457.679949] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764457.886500] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764458.091540] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764458.296157] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764458.500766] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764458.706226] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764458.911675] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421764459.117240] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764459.322366] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764459.527574] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764459.732887] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764459.938260] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764460.143545] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764460.348559] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764460.555366] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764460.768394] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.31 ms +[1421764460.973931] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764461.179296] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764461.384494] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764461.590289] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764461.795416] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764462.000676] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764462.205974] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764462.411083] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764462.617743] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764462.823734] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421764463.028562] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764463.233701] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764463.439199] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764463.645375] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421764463.851489] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764464.056512] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764464.262395] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764464.468595] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764464.674908] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764464.881399] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764465.086352] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764465.291215] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764465.497051] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764465.702977] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764465.909825] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764466.115524] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764466.320901] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764466.526299] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764466.732241] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764466.937150] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764467.142340] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764467.347395] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764467.553849] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764467.759280] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764467.965549] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764468.171030] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764468.376818] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764468.581610] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764468.787463] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764468.992746] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764469.197974] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764469.403812] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764469.609153] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764469.814573] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764470.019173] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764470.227758] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.83 ms +[1421764470.446413] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421764470.663100] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421764470.872075] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.96 ms +[1421764471.077891] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764471.307243] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421764471.513309] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764471.719075] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764471.924492] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764472.130477] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764472.336936] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764472.543451] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764472.748469] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764472.954847] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764473.160457] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764473.365603] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764473.571359] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764473.777819] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764473.982706] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764474.188076] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421764474.393098] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764474.598199] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764474.804672] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421764475.010137] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764475.214872] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764475.419777] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764475.625169] 512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764475.831429] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764476.036193] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764476.289894] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=50.0 ms +[1421764476.495954] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764476.701891] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764476.907371] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764477.112049] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764477.317979] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764477.523300] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764477.728311] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764477.934862] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764478.140375] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764478.345856] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764478.551028] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764478.756399] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764478.962378] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764479.168035] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421764479.373012] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764479.577965] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764479.782668] 145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764479.988075] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764480.193425] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764480.399521] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421764480.604871] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764480.811199] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764481.016415] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764481.222918] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764481.429421] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764481.634878] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764481.840372] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764482.045126] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764482.249875] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764482.455145] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764482.660415] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764482.865241] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764483.069711] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764483.274265] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764483.480473] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764483.686106] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764483.890991] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764484.095601] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764484.313756] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421764484.525884] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.40 ms +[1421764484.731300] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421764484.936470] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764485.141628] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764485.346151] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764485.552366] 1984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421764485.759463] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.97 ms +[1421764485.985079] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421764486.196917] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.14 ms +[1421764486.407484] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.66 ms +[1421764486.625603] 1451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.1 ms +[1421764486.845897] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421764487.125551] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.0 ms +[1421764487.355516] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421764487.560686] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764487.786282] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421764488.069741] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.6 ms +[1421764488.296817] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421764488.528639] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.1 ms +[1421764488.752797] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421764489.042655] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.8 ms +[1421764489.269283] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421764489.540721] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=67.4 ms +[1421764489.759704] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421764489.987108] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421764490.192738] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764490.397629] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764490.606645] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.31 ms +[1421764490.816148] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.46 ms +[1421764491.031392] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421764491.246820] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421764491.453358] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421764491.660268] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.78 ms +[1421764491.866818] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764492.071539] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764492.277234] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764492.481988] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764492.688940] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.24 ms +[1421764492.895031] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764493.100046] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764493.304986] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764493.509993] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764493.715074] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764493.920604] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764494.125892] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764494.331949] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764494.537187] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764494.742545] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764494.947679] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764495.152626] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764495.357867] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764495.563298] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764495.769592] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764495.974908] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764496.180893] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764496.385835] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764496.590878] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764496.796887] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421764497.001788] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764497.206975] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764497.412271] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764497.616954] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764497.823228] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764498.027812] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764498.234273] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764498.439979] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764498.645680] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764498.851324] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764499.056241] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764499.261129] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764499.466234] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764499.672281] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764499.877368] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764500.082097] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764500.287343] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764500.495569] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.94 ms +[1421764500.700977] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764500.906079] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764501.111047] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764501.316131] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764501.521673] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764501.728397] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421764501.934809] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764502.139711] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764502.344573] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764502.549476] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764502.754023] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764502.959196] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764503.164048] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764503.368767] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764503.573752] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764503.778903] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764503.984340] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764504.189669] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764504.406835] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421764504.612025] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764504.818202] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764505.023025] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764505.228330] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764505.433018] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764505.638127] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764505.843248] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764506.048393] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764506.253466] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764506.459613] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764506.664749] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764506.870121] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764507.075684] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421764507.280932] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764507.486507] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764507.691580] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764507.896866] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764508.101991] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764508.308586] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421764508.515604] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421764508.721555] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421764508.927060] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764509.132190] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764509.337170] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764509.542315] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764509.747400] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764509.952866] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764510.158339] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764510.363551] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764510.569051] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764510.774555] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764510.980693] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764511.185887] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764511.390856] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764511.597417] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764511.811540] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.98 ms +[1421764512.031711] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421764512.236757] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764512.450453] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.51 ms +[1421764512.656132] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764512.861683] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764513.066788] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764513.272497] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764513.477691] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764513.683006] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764513.889769] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764514.095762] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764514.302005] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764514.507268] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764514.713541] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421764514.919892] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764515.124536] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764515.330444] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764515.535928] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764515.742484] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764515.947691] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764516.153756] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764516.361417] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.44 ms +[1421764516.567062] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764516.772562] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764516.977687] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764517.183225] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764517.389484] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764517.595251] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764517.802040] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764518.006963] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764518.211989] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764518.417456] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764518.623997] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764518.829336] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764519.033933] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764519.238877] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764519.443827] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764519.648948] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764519.853943] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421764520.058668] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764520.263702] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421764520.470282] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421764520.675901] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764520.881587] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764521.088334] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.12 ms +[1421764521.293447] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764521.498499] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764521.704025] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764521.909535] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764522.114357] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764522.319511] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764522.525152] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764522.731150] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764522.935956] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764523.141010] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764523.346751] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421764523.552833] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764523.757933] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764523.963837] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421764524.169231] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764524.375758] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421764524.581527] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764524.787487] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764524.994119] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764525.199844] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764525.404806] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764525.610882] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764525.815911] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764526.021942] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764526.227292] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764526.435146] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.33 ms +[1421764526.640624] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764526.845909] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764527.051430] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764527.257639] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421764527.462494] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764527.667745] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764527.873132] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764528.078693] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421764528.284849] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764528.491029] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764528.696780] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764528.902265] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764529.108058] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764529.313263] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764529.519598] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764529.724827] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764529.931159] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764530.136494] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764530.341745] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764530.546830] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764530.751590] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764530.957738] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764531.163043] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764531.368640] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764531.573874] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764531.778901] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764531.984240] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764532.190488] 1984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764532.396828] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764532.602210] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764532.807523] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764533.011968] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764533.217178] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764533.422727] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764533.627908] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764533.832946] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764534.037519] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764534.243643] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764534.448810] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764534.654919] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421764534.860324] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764535.065471] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764535.271235] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764535.476820] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421764535.682531] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764535.888004] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764536.092847] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764536.297765] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764536.503390] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764536.708770] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764536.913680] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764537.118259] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764537.323111] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764537.529050] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764537.734079] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764537.939559] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764538.144673] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764538.350205] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764538.555283] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764538.760110] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764538.964898] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764539.170065] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764539.375022] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764539.579884] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764539.785105] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764539.991481] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764540.196381] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421764540.401389] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764540.606817] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764540.812116] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764541.016660] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764541.222977] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764541.428581] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764541.645948] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421764541.851319] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764542.066609] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421764542.271673] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764542.476448] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764542.681330] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764542.886478] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764543.091288] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764543.297440] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764543.502509] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764543.708985] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764543.915186] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764544.120248] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764544.326106] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764544.531161] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764544.736240] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764544.941239] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764545.147295] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764545.353199] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764545.558194] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764545.763332] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764545.969498] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.89 ms +[1421764546.174920] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764546.379747] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764546.585118] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764546.791604] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764546.998578] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421764547.203843] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764547.410313] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764547.615713] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764547.821907] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764548.026951] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764548.233137] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421764548.438298] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764548.644969] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764548.850456] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764549.056368] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764549.265426] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.09 ms +[1421764549.470829] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764549.677162] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764549.882872] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764550.088410] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764550.293500] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764550.498867] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764550.704673] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764550.911329] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764551.117319] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764551.322468] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764551.528834] 1670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421764551.735047] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421764551.940365] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764552.145551] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764552.351603] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764552.569594] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421764552.774542] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764552.995115] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421764553.200608] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764553.406738] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764553.612176] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764553.817621] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764554.022330] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764554.227244] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764554.431935] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764554.636864] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764554.843156] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764555.053007] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.70 ms +[1421764555.258520] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764555.464102] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764555.669469] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764555.876231] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.74 ms +[1421764556.103859] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421764556.309265] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764556.514747] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764556.720362] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764556.925817] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764557.131015] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764557.336000] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764557.541819] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.88 ms +[1421764557.747557] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764557.952817] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764558.157557] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764558.362994] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764558.568408] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421764558.773554] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764558.980299] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421764559.185509] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764559.391910] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764559.597009] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764559.803099] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764560.007912] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764560.214076] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764560.419339] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764560.625226] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421764560.830791] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764561.035492] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764561.240219] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764561.445419] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764561.650961] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764561.857170] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764562.063018] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764562.268977] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421764562.475124] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764562.680973] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764562.887113] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764563.092984] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764563.298315] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764563.503360] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764563.708653] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764563.914818] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764564.120648] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764564.326724] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764564.532145] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764564.738699] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764564.944152] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764565.149156] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764565.354389] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764565.560129] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764565.765841] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764565.971218] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764566.176544] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764566.382686] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764566.587449] 161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764566.792584] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764566.998231] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764567.203234] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764567.408342] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764567.614471] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421764567.819666] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764568.023992] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764568.228652] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764568.448532] 1503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421764568.653803] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421764568.859148] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764569.066273] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.39 ms +[1421764569.275438] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.32 ms +[1421764569.480213] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764569.686146] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764569.891196] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764570.096276] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764570.301375] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764570.505970] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764570.711161] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764570.916196] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764571.120685] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764571.326678] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764571.531489] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764571.736405] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764571.941391] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764572.146497] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764572.351333] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764572.557323] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764572.763354] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764572.968265] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764573.173333] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764573.378721] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764573.584385] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764573.789474] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764573.994412] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764574.200425] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764574.405350] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764574.610427] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764574.815536] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764575.020365] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764575.226485] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421764575.431247] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764575.635912] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764575.842142] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764576.046745] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764576.252556] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764576.460485] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.39 ms +[1421764576.665774] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764576.871496] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764577.076696] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764577.281697] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764577.487298] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.87 ms +[1421764577.692725] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764577.898874] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.88 ms +[1421764578.104302] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764578.309417] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764578.514080] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764578.718881] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764578.923876] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764579.129839] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764579.335095] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764579.540250] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764579.746506] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764579.951936] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764580.157047] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764580.361893] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764580.567786] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764580.774138] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764580.978958] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764581.183861] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764581.389001] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764581.594197] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764581.799535] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764582.004637] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764582.209731] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764582.415602] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764582.621769] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764582.827221] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764583.032150] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764583.237102] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764583.443572] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421764583.649664] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764583.854791] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764584.059856] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764584.265688] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421764584.472368] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764584.677759] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764584.883506] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764585.088649] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764585.293791] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764585.498831] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764585.705509] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764585.911076] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764586.116352] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764586.322261] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764586.527561] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764586.732849] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764586.937812] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764587.143082] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764587.347760] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764587.553844] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764587.759513] 1049 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764587.965118] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764588.170467] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764588.375722] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764588.580731] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764588.786010] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764588.992545] 1932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421764589.198197] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764589.403135] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764589.608411] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764589.813681] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764590.020260] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764590.225669] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764590.431094] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764590.636458] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764590.842082] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764591.063142] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421764591.268243] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764591.474555] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764591.679727] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764591.885682] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764592.090301] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764592.295438] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764592.500494] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764592.705502] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764592.910752] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764593.116022] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764593.322271] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764593.528067] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764593.734767] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421764593.940194] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764594.146276] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764594.351664] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764594.556296] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764594.762315] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764594.967337] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764595.172419] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764595.377736] 161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764595.583462] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764595.789968] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764595.996400] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764596.201553] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764596.406339] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764596.611307] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764596.817524] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421764597.022558] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764597.227308] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764597.432329] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764597.637502] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764597.843050] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764598.048686] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764598.253789] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764598.459155] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764598.665699] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764598.871361] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764599.076674] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764599.283106] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421764599.488239] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764599.695601] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.31 ms +[1421764599.901604] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764600.106476] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764600.312201] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764600.517234] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764600.722533] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764600.927636] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764601.133163] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764601.338704] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764601.544115] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764601.749797] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764601.956019] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764602.161321] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764602.367311] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764602.572412] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764602.777190] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764602.982484] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764603.187584] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764603.393402] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764603.599451] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764603.804772] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764604.010478] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764604.215487] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764604.420621] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764604.626970] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764604.832405] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764605.037925] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764605.242693] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764605.447669] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764605.653034] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764605.859126] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764606.063615] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764606.269607] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764606.476028] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764606.681975] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764606.887141] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764607.093148] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764607.298614] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421764607.504012] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764607.709622] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421764607.916578] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.69 ms +[1421764608.122022] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764608.328423] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421764608.534624] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421764608.740244] 1175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764608.945776] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764609.151280] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764609.356423] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764609.561793] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764609.767227] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764609.972073] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421764610.177163] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764610.383281] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421764610.588610] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764610.794172] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764610.999587] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764611.205712] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764611.410985] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764611.616956] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764611.822311] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764612.026979] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764612.232156] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764612.437379] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764612.643621] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764612.848564] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764613.053277] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764613.258492] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764613.464015] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764613.669859] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764613.875043] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764614.079917] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764614.285228] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764614.491024] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764614.696460] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764614.902955] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764615.107951] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764615.313237] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764615.518934] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764615.724005] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764615.928902] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764616.134049] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764616.339451] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764616.544653] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421764616.749772] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764616.956042] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764617.162299] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764617.367902] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764617.573154] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764617.778177] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764617.983285] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764618.188212] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421764618.393226] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764618.598046] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764618.804235] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764619.010008] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764619.215069] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764619.420973] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764619.626080] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764619.831629] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764620.037415] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421764620.242185] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764620.448047] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764620.652850] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764620.858103] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764621.062720] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764621.267759] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764621.472654] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764621.677807] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764621.883357] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764622.088131] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764622.292780] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764622.497533] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764622.703347] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421764622.908522] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764623.114397] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764623.318932] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764623.523586] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764623.729285] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764623.934346] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764624.139768] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764624.344810] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764624.550233] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764624.755419] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764624.961586] 1932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764625.166976] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764625.372634] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764625.577743] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764625.783153] 512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764625.988549] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764626.193892] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764626.399162] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764626.604288] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764626.810387] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764627.016231] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764627.221366] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764627.426357] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764627.631514] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764627.837111] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764628.042828] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421764628.247348] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764628.452228] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764628.657615] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764628.863335] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764629.068422] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764629.273961] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764629.480063] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764629.686444] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421764629.891941] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764630.097553] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421764630.302469] 1075 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764630.508276] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764630.713279] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764630.918583] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764631.124187] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421764631.328963] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764631.534018] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764631.739024] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764631.944615] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421764632.149424] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764632.354329] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764632.560526] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764632.766055] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764632.971027] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764633.175971] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764633.381816] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764633.586906] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764633.793090] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764633.998679] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764634.203092] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764634.408055] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764634.613267] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764634.819918] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764635.025029] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764635.229911] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764635.435113] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421764635.639598] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764635.844745] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421764636.048958] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764636.253778] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764636.458514] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764636.663655] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764636.868723] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764637.074400] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764637.280178] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764637.484901] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764637.690503] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.90 ms +[1421764637.895745] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764638.100503] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764638.305525] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764638.511244] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764638.717879] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421764638.923441] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764639.128887] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764639.333719] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764639.539843] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764639.744901] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764639.950165] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421764640.156328] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764640.361900] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764640.567206] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764640.772495] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764640.978596] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764641.183597] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764641.389033] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764641.601815] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.47 ms +[1421764641.807634] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764642.012409] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764642.217143] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764642.423368] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764642.629196] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764642.834404] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764643.039264] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764643.244019] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764643.449022] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764643.654978] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764643.860041] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764644.064685] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764644.269704] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764644.475086] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421764644.680264] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764644.885701] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764645.090716] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764645.295408] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764645.500416] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764645.705579] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764645.910541] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764646.115177] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764646.320059] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764646.526110] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764646.732825] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764646.939215] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764647.144799] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764647.349943] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764647.555029] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764647.761286] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764647.966210] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764648.171506] 847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764648.384897] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.52 ms +[1421764648.589908] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764648.795407] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764649.000446] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764649.206626] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764649.411679] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764649.616870] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764649.821952] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764650.026683] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764650.231506] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764650.436483] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764650.641231] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764650.846343] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764651.051342] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764651.259562] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.28 ms +[1421764651.465654] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764651.671727] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764651.877284] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764652.082450] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764652.287317] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764652.492412] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764652.697834] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764652.902803] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764653.107477] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421764653.312864] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764653.518031] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764653.724408] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421764653.930512] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421764654.140264] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.76 ms +[1421764654.352513] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.50 ms +[1421764654.571031] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421764654.792114] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421764655.012351] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421764655.234565] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421764655.520691] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.7 ms +[1421764655.746394] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421764655.951966] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764656.157585] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764656.362699] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764656.567765] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764656.775759] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.32 ms +[1421764656.985645] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.96 ms +[1421764657.198450] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.60 ms +[1421764657.415127] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421764657.630590] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421764657.896313] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.0 ms +[1421764658.171298] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.2 ms +[1421764658.397377] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421764658.625381] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421764658.850870] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421764659.140430] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=86.0 ms +[1421764659.419817] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.2 ms +[1421764659.643498] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421764659.870786] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421764660.152146] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.5 ms +[1421764660.376288] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421764660.607418] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.1 ms +[1421764660.837557] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.3 ms +[1421764661.043040] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421764661.248897] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764661.455206] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.80 ms +[1421764661.664082] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.95 ms +[1421764661.898341] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.6 ms +[1421764662.102951] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764662.308599] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764662.513228] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764662.718555] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764662.923942] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764663.128777] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764663.333484] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764663.539589] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764663.745176] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764663.950541] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764664.155571] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764664.360627] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764664.566898] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764664.773791] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.96 ms +[1421764664.980049] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764665.186347] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764665.392743] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764665.598244] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764665.804065] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764666.008572] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764666.214442] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764666.419583] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764666.624254] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764666.829165] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764667.033516] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764667.239315] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764667.444430] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764667.649696] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764667.855119] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764668.060319] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764668.266343] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421764668.471781] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421764668.678416] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421764668.883396] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764669.088817] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764669.293456] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764669.498717] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764669.704038] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764669.909350] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764670.114743] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764670.319607] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764670.526797] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.69 ms +[1421764670.731948] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421764670.936913] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764671.141993] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764671.346864] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764671.553044] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764671.758389] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764671.963073] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764672.169143] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764672.374710] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421764672.580937] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764672.787023] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764672.993849] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764673.199529] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764673.404794] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764673.610526] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764673.816705] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764674.021320] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764674.227191] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764674.432232] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764674.637793] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764674.843059] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764675.047842] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764675.253163] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764675.458623] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764675.664108] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764675.869166] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764676.073812] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764676.278993] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764676.484505] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764676.690979] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764676.896746] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764677.101510] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764677.307042] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764677.512595] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764677.717468] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764677.922645] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764678.128035] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764678.332835] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764678.538249] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764678.743768] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764678.949018] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764679.153974] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764679.359066] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764679.564449] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764679.770575] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764679.976865] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764680.182072] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764680.387478] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764680.592946] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764680.798616] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764681.003860] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764681.209656] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421764681.415234] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764681.620586] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764681.826653] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764682.031560] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764682.236583] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764682.441636] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764682.646338] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764682.851870] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764683.057669] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764683.262416] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764683.467727] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764683.673160] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764683.877973] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764684.082666] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764684.287297] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764684.492261] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764684.697390] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764684.903612] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764685.108593] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764685.313316] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764685.518124] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764685.723273] 1148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764685.929565] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764686.134679] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764686.340092] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764686.545622] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764686.750891] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764686.955860] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764687.160848] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764687.366306] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764687.572119] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764687.778055] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764687.984377] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764688.189484] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764688.395561] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764688.601436] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764688.806673] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764689.011588] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764689.217586] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764689.422889] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764689.628418] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764689.833907] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764690.038425] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764690.243171] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764690.448241] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764690.653403] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764690.858270] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764691.062894] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764691.267938] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764691.472701] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764691.677529] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764691.883554] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764692.088227] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764692.292985] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764692.498385] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764692.703694] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764692.909728] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421764693.114277] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764693.319403] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764693.525083] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764693.730403] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764693.935742] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764694.140665] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764694.345478] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764694.550164] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764694.756331] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764694.961612] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764695.166453] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764695.371775] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764695.577040] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764695.781695] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764695.986847] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764696.193253] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421764696.398040] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764696.603860] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764696.808779] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764697.013490] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764697.218631] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421764697.423311] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764697.629643] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764697.834825] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764698.039471] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764698.244280] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764698.449512] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421764698.655811] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421764698.862480] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421764699.068080] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764699.273816] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764699.480101] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764699.684810] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764699.890542] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421764700.096016] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764700.300778] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764700.506071] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764700.712527] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764700.918232] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764701.123443] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764701.328649] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764701.534105] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764701.739853] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421764701.945445] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764702.155889] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.68 ms +[1421764702.365818] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.08 ms +[1421764702.579624] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.39 ms +[1421764702.795172] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421764703.051938] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=52.5 ms +[1421764703.274956] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421764703.501162] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421764703.783064] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421764704.009027] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421764704.231346] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421764704.458088] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421764704.740089] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.2 ms +[1421764705.025683] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.0 ms +[1421764705.253736] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421764705.486836] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.2 ms +[1421764705.692081] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764705.897791] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764706.105437] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.94 ms +[1421764706.323624] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421764706.557865] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.2 ms +[1421764706.769629] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.46 ms +[1421764707.024325] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=50.5 ms +[1421764707.246156] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421764707.523944] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.3 ms +[1421764707.751346] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421764708.034501] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.2 ms +[1421764708.257051] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421764708.462223] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764708.667817] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764708.873623] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764709.078655] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764709.284822] 1870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764709.489785] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764709.695299] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764709.900883] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764710.106986] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764710.311934] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764710.516820] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764710.722941] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421764710.928894] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764711.133990] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764711.340221] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764711.546326] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764711.752944] 1984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764711.958101] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764712.163642] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764712.369478] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764712.574999] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764712.781377] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764712.986484] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764713.191675] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764713.396640] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764713.602918] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764713.809493] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764714.014152] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764714.219915] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764714.425034] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764714.630027] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764714.834851] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764715.039553] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764715.244494] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764715.451025] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764715.656614] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764715.862636] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764716.068305] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421764716.273137] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764716.479306] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764716.686047] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764716.891860] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764717.096586] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764717.301390] 512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764717.506174] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764717.711627] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764717.917738] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764718.122510] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764718.327327] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764718.533967] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764718.739751] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764718.945290] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764719.151390] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764719.356767] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764719.563010] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764719.769029] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764719.974831] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764720.181108] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764720.386518] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764720.592960] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421764720.797966] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764721.003012] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764721.208270] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764721.413172] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764721.618059] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764721.822600] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764722.027219] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764722.233148] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764722.438498] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764722.644264] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764722.849950] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764723.054504] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764723.260473] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764723.466008] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764723.671420] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764723.876641] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764724.081646] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764724.286783] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764724.491777] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764724.697834] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764724.903446] 1021 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764725.108591] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764725.314800] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764725.520015] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764725.725254] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764725.930897] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764726.137384] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764726.343325] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764726.548853] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764726.753992] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764726.959758] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764727.164577] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764727.369657] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764727.575307] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764727.780561] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764727.985635] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764728.190377] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764728.395478] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764728.602134] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764728.807353] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764729.013077] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421764729.219044] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764729.424436] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421764729.630074] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764729.835245] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764730.039686] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764730.244701] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421764730.449462] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764730.654377] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764730.860631] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764731.066293] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764731.271206] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764731.476304] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764731.681196] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764731.886287] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764732.092069] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764732.297955] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764732.504042] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764732.709240] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764732.914645] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421764733.120952] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.79 ms +[1421764733.327086] 1880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764733.532445] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764733.737750] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764733.942861] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764734.148035] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764734.353253] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764734.558645] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764734.764236] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764734.969500] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764735.174644] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764735.379741] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764735.584639] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764735.790624] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764735.995646] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764736.202253] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764736.408398] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764736.613818] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764736.819990] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764737.026106] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764737.231121] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764737.436286] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764737.641970] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764737.847341] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764738.051963] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764738.257894] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764738.463034] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764738.668787] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764738.873747] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764739.078426] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764739.284336] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764739.489147] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421764739.694791] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421764739.899795] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764740.104896] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764740.309838] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764740.515929] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764740.722713] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764740.929174] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764741.135054] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421764741.341775] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421764741.547841] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421764741.754247] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764741.959543] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764742.165616] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764742.383039] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421764742.588216] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764742.794609] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421764743.000176] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764743.205159] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764743.410026] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764743.616038] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764743.821186] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764744.025659] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764744.231578] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764744.436975] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764744.642172] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764744.847376] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764745.052452] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764745.258287] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764745.463052] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764745.669504] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764745.874648] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764746.079476] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764746.284752] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764746.490089] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764746.695435] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421764746.900113] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764747.106177] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764747.311725] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764747.516901] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764747.722293] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764747.927680] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764748.133782] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421764748.338926] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764748.543801] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764748.748677] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764748.953778] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764749.160256] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764749.366517] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764749.571935] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764749.777056] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764749.982391] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764750.187811] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764750.393131] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764750.598812] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764750.805483] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421764751.010120] 1156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764751.215060] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764751.420061] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764751.624979] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764751.830564] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764752.036030] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421764752.241022] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764752.447428] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764752.653223] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764752.859791] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421764753.064972] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764753.269861] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764753.474874] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421764753.680049] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764753.886311] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764754.092406] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421764754.297617] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764754.502875] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764754.708396] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764754.913759] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764755.118869] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764755.323786] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764755.528836] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764755.733922] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764755.939351] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764756.144300] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764756.349316] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764756.555689] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421764756.760785] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764756.965952] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764757.170516] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764757.376501] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764757.582433] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764757.787436] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764757.992294] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764758.197956] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764758.403751] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764758.609196] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764758.814839] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764759.019909] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764759.224804] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764759.430445] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764759.635852] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764759.841762] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764760.047173] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421764760.252274] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764760.457219] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764760.663632] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764760.868615] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764761.073652] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764761.279731] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764761.485602] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764761.691501] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764761.896884] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764762.102064] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764762.306777] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764762.512625] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421764762.717938] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764762.923833] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764763.130142] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421764763.335387] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764763.540399] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764763.746730] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764763.952183] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764764.157857] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764764.364561] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764764.570375] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764764.775718] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764764.981167] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764765.187170] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764765.392591] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764765.597560] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764765.803503] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764766.008287] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764766.213463] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764766.420396] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.22 ms +[1421764766.625872] 89 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421764766.834874] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.22 ms +[1421764767.039419] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764767.251990] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.40 ms +[1421764767.470041] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421764767.690434] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421764767.912396] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421764768.133144] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421764768.341368] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.75 ms +[1421764768.546209] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764768.751379] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764768.957772] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421764769.167836] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.18 ms +[1421764769.404657] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.0 ms +[1421764769.618119] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.44 ms +[1421764769.823784] 814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764770.028301] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764770.233400] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764770.438430] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764770.644034] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764770.849481] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764771.053908] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764771.258846] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764771.464749] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764771.669775] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764771.874701] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764772.080201] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764772.286107] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764772.491767] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421764772.697754] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764772.904120] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764773.110286] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764773.314799] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764773.520782] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764773.725642] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764773.930821] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764774.137238] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764774.342399] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764774.547793] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764774.753028] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764774.957962] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764775.164130] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764775.369161] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764775.574126] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764775.780560] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764775.985380] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764776.191314] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421764776.397028] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764776.602839] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764776.808120] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764777.013738] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764777.219671] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764777.425613] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764777.630491] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764777.835753] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764778.041598] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421764778.246472] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764778.452017] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764778.657960] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764778.863450] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764779.082620] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421764779.287962] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764779.493419] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764779.698800] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764779.905029] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764780.109660] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764780.315175] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764780.520550] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764780.726025] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764780.932587] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764781.137609] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764781.342948] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764781.549051] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421764781.754530] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764781.959958] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764782.166374] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764782.371717] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764782.578099] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764782.783408] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764782.988619] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764783.193599] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764783.399815] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764783.605276] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764783.810497] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764784.015279] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764784.220535] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764784.426639] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764784.631952] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764784.838522] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764785.043682] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764785.248598] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764785.454642] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764785.660136] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764785.866173] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764786.071454] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764786.276760] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764786.482329] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764786.687641] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764786.893105] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764787.101554] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.09 ms +[1421764787.307626] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421764787.513100] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764787.718090] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764787.922834] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764788.128130] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764788.332963] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764788.538116] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764788.744164] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421764788.949563] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764789.154626] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764789.360034] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764789.565590] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764789.770779] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764789.976097] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421764790.181687] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421764790.386956] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764790.592041] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764790.798596] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764791.004941] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764791.210159] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764791.415370] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764791.620913] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764791.826796] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421764792.031608] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764792.236254] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764792.441192] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764792.646502] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764792.853017] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764793.058830] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421764793.264383] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764793.471542] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.72 ms +[1421764793.677784] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421764793.884015] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421764794.089913] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421764794.296421] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764794.502881] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421764794.708000] 89 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764794.913458] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764795.119168] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764795.324671] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764795.530151] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764795.735463] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764795.940708] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764796.145801] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764796.350839] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764796.556016] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764796.762806] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764796.968023] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764797.173171] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764797.378191] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764797.583311] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764797.788891] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764797.994278] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764798.200627] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764798.405789] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764798.610858] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764798.816047] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764799.020888] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764799.227059] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764799.432464] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764799.637766] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764799.842803] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764800.048053] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764800.253230] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764800.459225] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.89 ms +[1421764800.665211] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764800.871569] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764801.076616] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764801.281267] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764801.486005] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764801.691225] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764801.897506] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421764802.102174] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764802.307833] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421764802.513414] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764802.722275] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.85 ms +[1421764802.927387] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764803.132288] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764803.337284] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764803.542236] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764803.747153] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764803.951883] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764804.156804] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764804.362098] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764804.567664] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764804.773248] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764804.978920] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764805.184547] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764805.390655] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764805.596224] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764805.802880] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421764806.007883] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764806.212729] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764806.417705] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764806.623257] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764806.828560] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764807.033290] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764807.238096] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764807.443574] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764807.649212] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764807.854873] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764808.059985] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764808.265002] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764808.470315] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764808.676232] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764808.881658] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764809.086433] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764809.292639] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421764809.498113] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764809.703475] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764809.908693] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764810.114255] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764810.319394] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764810.524603] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764810.729983] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764810.935291] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764811.141167] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764811.346149] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764811.551556] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764811.758005] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421764811.963517] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764812.168558] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764812.374700] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764812.579619] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764812.784956] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764812.990077] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764813.195143] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764813.401097] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.94 ms +[1421764813.611815] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.31 ms +[1421764813.825657] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.76 ms +[1421764814.041295] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.0 ms +[1421764814.300069] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=55.0 ms +[1421764814.522938] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421764814.750547] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421764814.971599] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421764815.198730] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764815.482713] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.0 ms +[1421764815.713770] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.8 ms +[1421764815.943799] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421764816.148927] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764816.354211] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764816.559182] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764816.764229] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764816.982857] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421764817.194024] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.99 ms +[1421764817.410281] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421764817.626721] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421764817.847781] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421764818.075125] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421764818.305210] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.1 ms +[1421764818.528786] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421764818.815022] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.3 ms +[1421764819.098639] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.0 ms +[1421764819.304815] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764819.511057] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421764819.716755] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421764819.944098] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421764820.169961] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421764820.451655] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.8 ms +[1421764820.680581] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421764820.885706] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764821.111794] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421764821.342001] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.2 ms +[1421764821.547680] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764821.753229] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764821.958832] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764822.166997] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.10 ms +[1421764822.378512] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.67 ms +[1421764822.592661] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421764822.809482] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764823.025437] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421764823.246348] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421764823.528269] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421764823.753603] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421764823.981161] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421764824.208158] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421764824.432804] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421764824.661882] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421764824.889042] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421764825.117119] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421764825.343600] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421764825.569027] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421764825.799104] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.4 ms +[1421764826.028629] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.1 ms +[1421764826.233925] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764826.442146] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.47 ms +[1421764826.647890] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764826.856442] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.64 ms +[1421764827.066147] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.42 ms +[1421764827.282426] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421764827.496779] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421764827.713576] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421764827.939399] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421764828.160994] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421764828.389111] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421764828.658966] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=66.2 ms +[1421764828.885865] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421764829.106814] 1410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421764829.312034] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421764829.516466] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764829.722535] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764829.927846] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764830.132942] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764830.338888] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764830.544868] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764830.749972] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764830.955104] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764831.160302] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764831.365219] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764831.570858] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764831.777568] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421764831.983733] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764832.189052] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764832.397271] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.40 ms +[1421764832.608619] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.49 ms +[1421764832.819857] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.38 ms +[1421764833.037924] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421764833.256565] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421764833.461935] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764833.667372] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764833.872314] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764834.084038] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.01 ms +[1421764834.307896] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421764834.545962] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.9 ms +[1421764834.761404] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421764834.976947] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421764835.196775] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421764835.478650] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.2 ms +[1421764835.705407] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421764835.933810] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421764836.222523] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.8 ms +[1421764836.449681] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421764836.669339] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.7 ms +[1421764836.896373] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421764837.125580] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.4 ms +[1421764837.410313] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.5 ms +[1421764837.635013] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421764837.859311] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421764838.063830] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764838.269022] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764838.477979] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.58 ms +[1421764838.700059] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421764838.905466] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764839.148090] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.3 ms +[1421764839.398758] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.6 ms +[1421764839.621076] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421764839.843869] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421764840.068263] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421764840.352756] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.4 ms +[1421764840.580500] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421764840.861190] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.5 ms +[1421764841.088489] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421764841.316458] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421764841.542508] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421764841.769749] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421764842.050043] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.5 ms +[1421764842.270009] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421764842.497748] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421764842.706157] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.51 ms +[1421764842.911855] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764843.119759] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.45 ms +[1421764843.338947] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421764843.553255] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421764843.758820] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764843.964046] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764844.173826] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.81 ms +[1421764844.389655] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421764844.623670] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.3 ms +[1421764844.839872] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421764845.057168] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421764845.263701] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764845.480274] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421764845.730825] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.5 ms +[1421764845.936255] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764846.146532] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.71 ms +[1421764846.361000] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421764846.581977] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421764846.861148] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.1 ms +[1421764847.086372] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421764847.307124] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421764847.532910] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421764847.758263] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421764848.023093] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.8 ms +[1421764848.228513] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764848.433992] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764848.640021] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.03 ms +[1421764848.861156] 1612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421764849.073578] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.78 ms +[1421764849.281265] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.98 ms +[1421764849.501565] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421764849.722490] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421764849.942470] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421764850.167653] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421764850.391491] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421764850.611976] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421764850.891987] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.6 ms +[1421764851.096814] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764851.314512] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421764851.546215] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.4 ms +[1421764851.821190] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.4 ms +[1421764852.051733] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.9 ms +[1421764852.272829] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421764852.556880] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.1 ms +[1421764852.779163] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421764852.985023] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764853.190655] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764853.397678] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.40 ms +[1421764853.619259] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421764853.831476] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.50 ms +[1421764854.050920] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421764854.272133] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421764854.486675] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421764854.754086] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=63.5 ms +[1421764854.974220] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421764855.257857] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.5 ms +[1421764855.551414] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=89.3 ms +[1421764855.776656] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421764855.997372] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421764856.221876] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421764856.513974] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=87.3 ms +[1421764856.742589] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421764857.030407] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.7 ms +[1421764857.236173] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764857.443126] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.92 ms +[1421764857.649275] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764857.854610] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764858.059610] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764858.265283] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764858.470353] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764858.675264] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764858.887264] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.08 ms +[1421764859.091838] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764859.296865] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764859.501933] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764859.707756] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764859.912932] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764860.118376] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764860.323535] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764860.528283] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764860.733735] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421764860.938854] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764861.144278] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764861.349028] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764861.554296] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764861.761054] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764861.968014] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421764862.173478] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764862.378367] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764862.584242] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764862.789214] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764862.994773] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421764863.200311] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764863.406442] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764863.611987] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764863.817168] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764864.022648] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764864.227716] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764864.432856] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764864.638350] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764864.843896] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764865.049757] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764865.255342] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764865.460457] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764865.665727] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764865.871182] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764866.075890] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764866.281000] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764866.487117] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764866.692530] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764866.898875] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421764867.104015] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764867.308955] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764867.514027] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764867.719960] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421764867.926108] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764868.131323] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764868.336543] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764868.544576] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764868.749757] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764868.955210] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764869.161722] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764869.367196] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764869.573532] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764869.778448] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764869.983577] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764870.188772] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764870.394063] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764870.599352] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764870.804650] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764871.010432] 1566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764871.216394] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764871.422253] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421764871.628063] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764871.833334] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764872.037959] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764872.243114] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764872.448682] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764872.654047] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764872.859349] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764873.065007] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764873.270135] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764873.475499] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764873.680902] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764873.887364] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421764874.092457] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764874.298195] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764874.504257] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421764874.709431] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764874.914585] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764875.119182] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764875.329164] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.85 ms +[1421764875.540732] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.45 ms +[1421764875.781056] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.2 ms +[1421764876.019962] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.6 ms +[1421764876.278445] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=54.5 ms +[1421764876.502451] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421764876.728676] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421764876.954189] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421764877.236397] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.2 ms +[1421764877.524814] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.3 ms +[1421764877.753252] 1261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421764877.981252] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421764878.213346] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.8 ms +[1421764878.446070] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.4 ms +[1421764878.671354] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421764878.948494] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.2 ms +[1421764879.153475] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764879.358501] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764879.563822] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764879.771827] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.11 ms +[1421764879.985484] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.52 ms +[1421764880.196263] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.75 ms +[1421764880.415359] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421764880.639175] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421764880.860224] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421764881.085338] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421764881.367366] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.3 ms +[1421764881.654214] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.6 ms +[1421764881.930980] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.2 ms +[1421764882.152431] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421764882.376210] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421764882.598128] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421764882.820247] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421764883.101311] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.7 ms +[1421764883.376836] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.5 ms +[1421764883.668520] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=87.7 ms +[1421764883.892880] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421764884.098180] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764884.303230] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764884.510470] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.12 ms +[1421764884.727348] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421764884.960970] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.1 ms +[1421764885.172366] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764885.392692] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421764885.610399] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421764885.833893] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421764886.096387] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.0 ms +[1421764886.320988] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421764886.603204] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.2 ms +[1421764886.830400] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421764887.054641] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421764887.340505] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.0 ms +[1421764887.572318] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.3 ms +[1421764887.790557] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421764888.070552] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.6 ms +[1421764888.293661] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421764888.517314] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421764888.733391] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.2 ms +[1421764888.939185] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.92 ms +[1421764889.144474] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764889.353133] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.73 ms +[1421764889.583402] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.2 ms +[1421764889.797118] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.65 ms +[1421764890.016530] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421764890.236660] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421764890.451898] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421764890.712029] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=55.9 ms +[1421764890.937793] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421764891.165956] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421764891.392809] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421764891.671476] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.7 ms +[1421764891.876688] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421764892.159733] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.4 ms +[1421764892.392977] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.3 ms +[1421764892.598391] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764892.803165] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764893.007919] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764893.213108] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764893.418236] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764893.624371] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764893.830087] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764894.034868] 1410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764894.242758] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.15 ms +[1421764894.473445] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.7 ms +[1421764894.678176] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764894.882918] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764895.088987] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421764895.297317] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.67 ms +[1421764895.529202] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.8 ms +[1421764895.742513] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.08 ms +[1421764896.001113] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=54.4 ms +[1421764896.273041] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=67.8 ms +[1421764896.496093] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421764896.717762] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421764896.944277] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421764897.171772] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421764897.400056] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421764897.605519] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764897.811777] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764898.016323] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764898.221333] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764898.426582] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764898.632942] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764898.839765] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421764899.045575] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764899.250891] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764899.456101] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764899.661762] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764899.867170] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764900.072160] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764900.277348] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764900.482919] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764900.688558] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764900.894364] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764901.099451] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764901.320930] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421764901.548308] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421764901.835101] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.6 ms +[1421764902.059300] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421764902.285033] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421764902.568723] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.4 ms +[1421764902.790825] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421764902.996052] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764903.200996] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764903.405936] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764903.623652] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421764903.829377] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764904.035268] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764904.240816] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764904.445953] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764904.652161] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421764904.856979] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764905.061894] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764905.267063] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764905.472184] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764905.677685] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764905.883116] 814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764906.087978] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764906.292866] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764906.498544] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764906.703745] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764906.908508] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764907.113572] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764907.318949] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764907.524608] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764907.729896] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764907.936265] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421764908.141451] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764908.346594] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764908.551869] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764908.757508] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764908.963175] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764909.169729] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764909.375107] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764909.581103] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421764909.786337] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764909.991376] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764910.196410] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764910.402324] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764910.607740] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764910.813608] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764911.019049] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421764911.224081] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764911.429137] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764911.635821] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421764911.841684] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421764912.046351] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764912.251209] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764912.456315] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764912.661861] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764912.867203] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764913.072507] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764913.277482] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764913.482209] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764913.688600] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764913.894975] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764914.100164] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421764914.304759] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764914.509905] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764914.715703] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764914.921428] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764915.126467] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764915.331571] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764915.536311] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764915.741716] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764915.947289] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764916.152571] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764916.358663] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421764916.563942] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764916.768940] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764916.974211] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764917.180657] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764917.385488] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764917.591870] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764917.797159] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764918.002623] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764918.209140] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764918.414684] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764918.620732] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421764918.826255] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764919.031726] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764919.236630] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764919.441612] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764919.647522] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764919.852841] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764920.057640] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764920.262636] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764920.469235] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764920.675501] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764920.880798] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764921.085649] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764921.290882] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764921.496798] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764921.702112] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764921.907653] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764922.112654] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764922.318061] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421764922.524651] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421764922.729939] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764922.934815] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764923.140072] 1072 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764923.345255] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764923.551257] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764923.756814] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764923.961837] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764924.166810] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764924.372104] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764924.577371] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764924.783566] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764924.989213] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764925.194663] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764925.400581] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764925.606682] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764925.812696] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764926.018371] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764926.223188] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764926.427911] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764926.632658] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764926.838607] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764927.043020] 296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764927.247973] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421764927.453237] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764927.658190] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764927.864796] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421764928.069854] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764928.274754] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764928.481043] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764928.686015] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764928.892223] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764929.097293] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421764929.302330] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764929.507693] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764929.713041] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764929.918226] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764930.123047] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764930.329165] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764930.535553] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421764930.741860] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764930.947244] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764931.152801] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764931.357722] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764931.562987] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764931.769151] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764931.974296] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764932.179114] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764932.385074] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421764932.590287] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764932.795169] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764933.000067] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764933.204966] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764933.410219] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764933.615396] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764933.820625] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764934.025659] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764934.231915] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421764934.437760] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764934.643648] 1913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764934.849028] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764935.054921] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764935.261138] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764935.467242] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421764935.673551] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764935.880418] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764936.085281] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764936.291626] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764936.497134] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764936.702737] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764936.908073] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764937.112587] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764937.317918] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421764937.522829] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764937.727863] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764937.933677] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764938.139083] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764938.344194] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764938.549458] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764938.755170] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764938.960980] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421764939.166362] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764939.371549] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764939.577131] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764939.783455] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764939.989766] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764940.195256] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764940.400631] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764940.606589] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421764940.812783] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421764941.017793] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764941.223816] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764941.429014] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764941.634027] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764941.839201] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764942.044802] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764942.251013] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764942.456762] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764942.662154] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764942.867480] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764943.073848] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764943.279175] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764943.484393] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764943.690448] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764943.895979] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764944.101003] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764944.306002] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764944.511155] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764944.717727] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764944.923726] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764945.128680] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764945.334025] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764945.540495] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764945.745507] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764945.950730] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764946.157249] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421764946.363651] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421764946.568595] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764946.773508] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764946.978463] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764947.184596] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764947.390016] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764947.595161] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764947.800711] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764948.005889] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764948.211986] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764948.417668] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764948.623459] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764948.829130] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764949.034337] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764949.240895] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764949.446133] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421764949.652400] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764949.857442] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764950.062933] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764950.267977] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764950.472990] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764950.690514] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421764950.901850] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.20 ms +[1421764951.117219] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.7 ms +[1421764951.331756] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421764951.552250] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421764951.772475] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421764951.998229] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421764952.279443] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.1 ms +[1421764952.505204] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421764952.731980] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421764952.959025] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421764953.188937] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421764953.411562] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421764953.636231] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421764953.841441] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764954.046191] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764954.251357] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764954.456721] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421764954.665755] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.99 ms +[1421764954.900865] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.0 ms +[1421764955.117318] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421764955.336967] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421764955.557930] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421764955.779563] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421764956.003815] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421764956.230793] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421764956.454500] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421764956.680834] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421764956.905906] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421764957.129821] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421764957.356651] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421764957.579922] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421764957.808092] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421764958.038715] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.8 ms +[1421764958.317795] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.3 ms +[1421764958.593195] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.2 ms +[1421764958.798764] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764959.003528] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764959.210150] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.90 ms +[1421764959.427076] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421764959.638262] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.83 ms +[1421764959.852030] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.61 ms +[1421764960.068132] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421764960.336136] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=64.2 ms +[1421764960.564751] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421764960.790160] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421764961.017776] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421764961.244210] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421764961.463878] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421764961.684316] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421764961.889708] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764962.094837] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764962.299970] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764962.506270] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764962.712242] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764962.917769] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764963.122683] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421764963.327551] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764963.532650] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764963.737446] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421764963.942676] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764964.147776] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764964.353142] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764964.558155] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764964.763776] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764964.970255] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764965.175718] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421764965.381085] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764965.591181] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.43 ms +[1421764965.800299] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.73 ms +[1421764966.012230] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.05 ms +[1421764966.227668] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421764966.447121] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421764966.667528] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421764966.895328] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421764967.100040] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764967.306040] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764967.511360] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764967.718932] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.52 ms +[1421764967.927205] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.98 ms +[1421764968.139267] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.94 ms +[1421764968.353947] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421764968.559899] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764968.764804] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764968.970175] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421764969.175330] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764969.381599] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421764969.586961] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764969.792034] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764969.997208] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764970.202739] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764970.409272] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421764970.614654] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764970.820468] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421764971.025099] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764971.230595] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.97 ms +[1421764971.435945] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764971.642463] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421764971.848005] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764972.052692] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764972.258325] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421764972.463659] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421764972.668853] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764972.874004] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421764973.078693] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764973.284203] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421764973.489889] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764973.696312] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421764973.915935] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421764974.120871] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764974.325969] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764974.531538] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421764974.736787] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764974.943621] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421764975.150163] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421764975.355351] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764975.560314] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421764975.765688] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764975.971748] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421764976.176799] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764976.382849] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764976.588227] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764976.794866] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764977.000443] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421764977.205774] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764977.411160] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764977.616997] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764977.821834] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764978.027706] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421764978.232947] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764978.437957] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421764978.643203] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764978.848722] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764979.053758] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764979.258896] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421764979.465095] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764979.670826] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764979.876051] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764980.081095] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764980.286498] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764980.491862] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764980.697750] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764980.903039] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421764981.107999] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421764981.312937] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764981.517865] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764981.723498] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764981.929887] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421764982.135843] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421764982.340836] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764982.546587] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421764982.751974] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764982.958315] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421764983.163336] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421764983.368764] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764983.574381] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421764983.781051] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421764983.986635] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764984.192291] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764984.398798] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764984.604252] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421764984.809348] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764985.013984] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764985.219084] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421764985.424063] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421764985.629435] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421764985.835149] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764986.040174] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421764986.245027] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764986.450765] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764986.656932] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764986.861836] 130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764987.066925] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764987.271838] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764987.477768] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421764987.682499] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764987.887960] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421764988.092793] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421764988.298075] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764988.503488] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764988.708771] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764988.915318] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421764989.121832] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421764989.328161] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764989.534753] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421764989.740066] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421764989.944577] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421764990.149194] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764990.354626] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421764990.561288] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421764990.766686] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764990.972981] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421764991.178999] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421764991.385586] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421764991.591125] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421764991.796711] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764992.001712] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764992.207708] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421764992.412585] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421764992.617457] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764992.822608] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421764993.027510] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421764993.232896] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421764993.438487] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421764993.643758] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421764993.848814] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421764994.054850] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421764994.259759] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421764994.465080] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764994.669952] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421764994.874889] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421764995.079733] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764995.284805] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764995.489951] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421764995.695083] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421764995.901221] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421764996.107504] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421764996.313880] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421764996.520070] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421764996.725083] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421764996.931276] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764997.136105] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421764997.341451] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421764997.548216] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421764997.753776] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421764997.958778] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421764998.163762] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421764998.368810] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421764998.574794] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421764998.780471] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421764998.985790] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421764999.191973] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421764999.396995] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421764999.601890] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421764999.807242] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765000.011524] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765000.216281] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765000.421275] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765000.627246] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765000.832495] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765001.037210] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765001.243655] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.72 ms +[1421765001.449131] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765001.654650] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765001.860019] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765002.064830] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765002.270042] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765002.475472] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765002.680615] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765002.885797] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765003.091112] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765003.295991] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765003.500909] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765003.706906] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765003.911736] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765004.118054] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765004.323497] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765004.529899] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765004.735733] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765004.941850] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765005.146783] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765005.352222] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765005.557963] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765005.763539] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765005.968988] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765006.174335] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765006.379685] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421765006.584918] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765006.789965] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765006.995100] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765007.200210] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765007.405277] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765007.610297] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765007.816354] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765008.021664] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765008.227194] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765008.433209] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765008.639176] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765008.844273] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765009.048777] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765009.254023] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765009.460608] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765009.665703] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.00 ms +[1421765009.872520] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765010.077625] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765010.284065] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765010.489591] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765010.695201] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765010.900390] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765011.105932] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765011.311584] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765011.517127] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421765011.722067] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765011.927077] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765012.131956] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765012.337086] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765012.543059] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765012.747856] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765012.953262] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765013.158577] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765013.363805] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765013.568733] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765013.773603] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765013.979084] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765014.184249] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765014.389101] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765014.594162] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765014.799452] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765015.005380] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421765015.212341] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.16 ms +[1421765015.423584] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.48 ms +[1421765015.638505] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421765015.851393] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.14 ms +[1421765016.112385] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=57.1 ms +[1421765016.335397] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421765016.560041] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421765016.786674] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421765017.018522] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.8 ms +[1421765017.239707] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421765017.462806] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421765017.688978] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421765017.916457] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421765018.121134] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765018.325993] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765018.530768] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765018.741077] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.71 ms +[1421765018.953248] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.25 ms +[1421765019.168253] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421765019.408631] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.4 ms +[1421765019.629240] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421765019.834168] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765020.085671] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.1 ms +[1421765020.308083] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421765020.532147] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421765020.818109] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.2 ms +[1421765021.044642] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421765021.251056] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765021.473482] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421765021.757875] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.0 ms +[1421765022.043150] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.3 ms +[1421765022.272775] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421765022.498048] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421765022.780454] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.6 ms +[1421765022.985816] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765023.191166] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765023.396995] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765023.603522] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765023.810526] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.95 ms +[1421765024.020477] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.45 ms +[1421765024.234713] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421765024.451663] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421765024.707401] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.9 ms +[1421765024.927292] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421765025.148351] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421765025.433003] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.0 ms +[1421765025.656801] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421765025.863280] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765026.069315] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765026.274110] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765026.479123] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765026.685121] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765026.889848] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765027.095407] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421765027.300310] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765027.506837] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765027.712464] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765027.918174] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765028.123083] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765028.329531] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421765028.535397] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765028.741830] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765028.948071] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421765029.153115] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765029.358017] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765029.563466] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765029.768683] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765029.975090] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421765030.180630] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765030.385940] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765030.590901] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765030.796261] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765031.002398] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765031.208882] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421765031.417002] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.16 ms +[1421765031.627894] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.69 ms +[1421765031.839201] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.28 ms +[1421765032.054063] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421765032.317195] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.2 ms +[1421765032.596695] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.3 ms +[1421765032.824056] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421765033.049642] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421765033.255040] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765033.461817] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.74 ms +[1421765033.666973] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765033.873870] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.22 ms +[1421765034.085072] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.76 ms +[1421765034.296410] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.95 ms +[1421765034.512976] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421765034.736922] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421765035.015861] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.3 ms +[1421765035.237925] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421765035.466922] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421765035.697010] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421765035.921475] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421765036.146495] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421765036.351296] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421765036.572238] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421765036.804270] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.7 ms +[1421765037.035460] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.1 ms +[1421765037.259677] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421765037.483674] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421765037.709625] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421765037.937191] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421765038.142603] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765038.349533] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.16 ms +[1421765038.557150] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.38 ms +[1421765038.767631] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.15 ms +[1421765038.973697] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765039.188370] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421765039.405634] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421765039.625978] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421765039.900061] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.1 ms +[1421765040.124121] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421765040.349103] 814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421765040.579582] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.5 ms +[1421765040.799705] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421765041.024180] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421765041.250695] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421765041.477283] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421765041.704832] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421765041.989191] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.1 ms +[1421765042.276762] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.4 ms +[1421765042.503097] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421765042.729863] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421765042.935082] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765043.139920] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765043.346214] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421765043.570870] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421765043.784424] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.89 ms +[1421765043.989853] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765044.195476] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765044.400512] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765044.605677] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765044.811439] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765045.017404] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765045.222473] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765045.428609] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765045.633772] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765045.839058] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765046.044099] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765046.249016] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765046.454213] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765046.659410] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765046.865244] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765047.070013] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765047.275143] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765047.480397] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765047.685676] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765047.892341] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765048.097422] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765048.302314] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765048.508531] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421765048.714000] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765048.918939] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765049.123921] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765049.330303] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421765049.535112] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765049.740342] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765049.945867] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765050.150940] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765050.356534] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765050.563525] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421765050.769038] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765050.975394] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765051.181175] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765051.386156] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765051.592331] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421765051.797612] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765052.003834] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765052.209091] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765052.414442] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765052.620870] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765052.826177] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765053.030789] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765053.236504] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421765053.441683] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765053.647947] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765053.853252] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765054.057832] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765054.262733] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765054.468568] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765054.674365] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765054.880491] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765055.086004] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765055.291180] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765055.496723] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765055.701884] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765055.907147] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765056.112223] 904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765056.317345] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765056.522506] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765056.727688] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765056.932865] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765057.137963] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765057.343281] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765057.548415] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421765057.754804] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765057.960331] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765058.165822] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765058.371215] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765058.576814] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765058.782112] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765058.988104] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765059.194374] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421765059.399820] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421765059.606538] 1482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765059.811490] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765060.016932] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765060.221843] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765060.426765] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765060.631807] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765060.838452] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765061.043256] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765061.248478] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765061.453564] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765061.659024] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421765061.864153] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765062.070263] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421765062.275188] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765062.481137] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765062.687159] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765062.892669] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765063.097780] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765063.303105] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765063.508888] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765063.714640] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765063.921435] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421765064.127021] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765064.331846] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765064.536987] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765064.742103] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765064.948659] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765065.155130] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765065.361209] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765065.566579] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765065.771704] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765065.977679] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765066.182653] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765066.389134] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421765066.595052] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765066.800913] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765067.007331] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421765067.212404] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765067.417758] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765067.622907] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765067.828240] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765068.033480] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765068.238829] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765068.444502] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765068.649923] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765068.856284] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421765069.061041] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765069.266256] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765069.471848] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765069.677847] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421765069.883224] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765070.088101] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765070.293876] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765070.498910] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765070.703685] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765070.908404] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765071.113757] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765071.320168] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421765071.526649] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765071.732129] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765071.937903] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765072.143446] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765072.348916] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765072.554120] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765072.759228] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765072.964464] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765073.170488] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765073.375505] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765073.581488] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765073.786219] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765073.990950] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765074.195719] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765074.400874] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765074.606461] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765074.812937] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765075.017754] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765075.222562] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765075.428703] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765075.634827] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421765075.840195] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765076.044977] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765076.250115] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765076.455060] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765076.660209] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765076.866398] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765077.070816] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765077.277071] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421765077.482791] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765077.688440] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765077.893901] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765078.098947] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765078.303883] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765078.509146] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765078.714458] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765078.920764] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421765079.126020] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765079.332251] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421765079.537768] 1063 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765079.742745] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765079.947562] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765080.152606] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765080.357981] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765080.563177] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765080.768541] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765080.975115] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421765081.179997] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765081.385209] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765081.590933] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765081.796233] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765082.001283] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765082.206282] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765082.412483] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421765082.617821] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765082.822915] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765083.028496] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765083.233520] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765083.438912] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765083.645590] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765083.851788] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765084.056441] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765084.261678] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765084.466761] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765084.672012] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765084.877207] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765085.082281] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765085.288573] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765085.494358] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765085.699692] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421765085.905155] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765086.110425] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765086.315580] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765086.520395] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765086.725635] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765086.932090] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765087.136952] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765087.342581] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765087.547960] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765087.753374] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765087.958777] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765088.163868] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765088.368930] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765088.575011] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765088.780213] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765088.986295] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765089.192481] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765089.398788] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765089.604809] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765089.811331] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765090.020145] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765090.225200] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421765090.430368] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765090.636152] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765090.841931] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765091.047431] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765091.254175] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.99 ms +[1421765091.459466] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421765091.666055] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421765091.872084] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421765092.077019] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765092.281793] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.02 ms +[1421765092.488216] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765092.694061] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765092.899507] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765093.103854] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765093.308890] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765093.514235] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765093.719330] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765093.925001] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765094.131547] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421765094.336712] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765094.542079] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765094.747827] 1913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765094.954035] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765095.159978] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765095.365177] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765095.571610] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421765095.777362] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765095.984734] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421765096.190574] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765096.396670] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421765096.602637] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765096.808901] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765097.014125] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765097.219334] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765097.424664] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765097.629822] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765097.836131] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765098.040843] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765098.246832] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765098.452167] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765098.657705] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765098.864394] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421765099.070370] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765099.275636] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765099.481284] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765099.687480] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765099.893093] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765100.098499] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765100.303448] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765100.509642] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765100.715272] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765100.920361] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765101.125322] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765101.329998] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765101.536103] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765101.742026] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765101.948578] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765102.154467] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765102.360783] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765102.567454] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765102.774015] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765102.979016] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765103.184495] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421765103.390434] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765103.595455] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765103.802175] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765104.007933] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421765104.213163] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765104.418386] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765104.623617] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765104.829134] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765105.037429] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765105.243326] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765105.448621] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765105.653629] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765105.858686] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765106.063293] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.03 ms +[1421765106.267797] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.03 ms +[1421765106.473676] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765106.678934] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765106.884573] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765107.090528] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765107.295453] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765107.501559] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765107.707623] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765107.913291] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765108.118369] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765108.323239] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765108.528940] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765108.735347] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765108.943735] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.16 ms +[1421765109.155097] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.99 ms +[1421765109.369835] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421765109.586505] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421765109.848364] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=58.1 ms +[1421765110.074499] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421765110.301842] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421765110.528904] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421765110.805984] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.0 ms +[1421765111.090923] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.4 ms +[1421765111.313777] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421765111.543358] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421765111.763485] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421765111.987714] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421765112.192717] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765112.397467] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765112.602006] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765112.811314] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.46 ms +[1421765113.023395] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.27 ms +[1421765113.236962] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.56 ms +[1421765113.459248] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421765113.678869] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421765113.960149] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.4 ms +[1421765114.244876] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.8 ms +[1421765114.470862] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421765114.697018] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421765114.980649] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.7 ms +[1421765115.185692] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765115.414506] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421765115.638830] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421765115.862638] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421765116.084434] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421765116.308371] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421765116.594090] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.7 ms +[1421765116.800648] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421765117.005864] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765117.211515] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765117.425694] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421765117.656258] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.6 ms +[1421765117.869690] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.47 ms +[1421765118.074132] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765118.278810] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765118.483554] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765118.688171] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765118.893235] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765119.098391] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765119.303611] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765119.510035] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765119.716645] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421765119.922153] 1072 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765120.126974] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765120.332156] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765120.537533] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765120.743683] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765120.948284] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765121.153145] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765121.358229] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765121.563484] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765121.768874] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765121.974043] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765122.180623] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421765122.386956] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421765122.592407] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765122.798080] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765123.003985] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765123.208933] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765123.415143] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765123.621676] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765123.827113] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765124.032099] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765124.237161] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421765124.441739] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765124.647130] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765124.852499] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765125.057451] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765125.262332] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765125.467582] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765125.673040] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765125.878760] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421765126.084416] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765126.289524] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765126.496045] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421765126.702154] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765126.907345] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765127.112600] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421765127.317999] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421765127.523386] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765127.730169] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.67 ms +[1421765127.935178] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765128.141141] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765128.347069] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765128.551859] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421765128.756919] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765128.961922] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765129.166734] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765129.371407] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765129.576504] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765129.781103] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765129.986483] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765130.192110] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765130.397654] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765130.604041] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765130.809604] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765131.014729] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765131.220518] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765131.425537] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765131.631453] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765131.836647] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765132.041784] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765132.247503] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765132.453410] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421765132.659447] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765132.865527] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421765133.071048] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765133.275940] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765133.481088] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765133.686589] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765133.893209] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421765134.098591] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765134.303821] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765134.509011] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765134.715139] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765134.920493] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765135.125539] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765135.331788] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765135.537166] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765135.743307] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765135.948803] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765136.155570] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421765136.360230] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765136.566183] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765136.771880] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765136.977634] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765137.182589] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765137.388989] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421765137.594591] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765137.800484] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421765138.005787] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765138.211693] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765138.417712] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421765138.624273] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765138.830561] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765139.034838] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765139.239561] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765139.444776] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765139.650407] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765139.856422] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765140.061795] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.94 ms +[1421765140.266841] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765140.472110] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765140.677517] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765140.883055] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765141.087933] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765141.292539] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765141.497133] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765141.703046] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765141.908224] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765142.113256] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765142.318023] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765142.522796] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765142.727691] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765142.932450] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765143.138592] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765143.344578] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765143.549893] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765143.755487] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765143.961892] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765144.166935] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765144.372904] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765144.577916] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765144.783016] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765144.988089] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765145.192784] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765145.405237] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.53 ms +[1421765145.611812] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765145.818191] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765146.023145] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765146.228939] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765146.433499] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765146.638346] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765146.843368] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765147.048906] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765147.255044] 1529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421765147.460038] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765147.665226] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765147.870623] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765148.076053] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765148.281494] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765148.487918] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765148.693978] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765148.898614] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765149.104064] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765149.309454] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765149.515067] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765149.720151] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765149.925323] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765150.130819] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765150.336519] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765150.542069] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765150.748525] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765150.954016] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765151.159379] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765151.364454] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765151.569301] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765151.774667] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765151.980840] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765152.185949] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765152.391406] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765152.596859] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765152.802631] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765153.007303] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765153.212150] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765153.417255] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765153.622422] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765153.827065] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765154.031996] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765154.236892] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765154.442959] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765154.649616] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421765154.855326] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421765155.059932] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765155.265376] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421765155.470785] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765155.676041] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765155.882243] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765156.087189] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765156.293129] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765156.498091] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765156.704561] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421765156.910035] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765157.115287] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765157.320816] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765157.525989] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765157.731212] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765157.937042] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765158.142636] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765158.348745] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765158.553753] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765158.759283] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765158.965504] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765159.171018] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765159.377125] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765159.582614] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765159.788032] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765159.993240] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765160.198735] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765160.404437] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421765160.609681] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765160.815388] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421765161.021969] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765161.228025] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765161.434172] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765161.639690] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765161.846271] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765162.051648] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765162.257299] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765162.463476] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765162.669988] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765162.875862] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765163.080887] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765163.286271] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765163.491838] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765163.697225] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765163.902591] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765164.107258] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765164.311904] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765164.516784] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765164.721877] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765164.928123] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765165.133255] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765165.338491] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765165.543635] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765165.748742] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765165.954026] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765166.159048] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765166.365368] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765166.570580] 847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765166.776620] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765166.981903] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765167.187904] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421765167.393122] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765167.598406] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765167.804954] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765168.009936] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765168.214836] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765168.420498] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765168.626200] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765168.831650] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765169.036721] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765169.243046] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421765169.448699] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765169.653973] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765169.860137] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765170.064990] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765170.269896] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765170.475040] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421765170.682254] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.94 ms +[1421765170.889969] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.82 ms +[1421765171.102260] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.74 ms +[1421765171.318393] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421765171.533187] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421765171.801258] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=64.4 ms +[1421765172.027772] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421765172.303979] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.9 ms +[1421765172.526127] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421765172.815142] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.2 ms +[1421765173.034225] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421765173.257591] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421765173.486159] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421765173.713475] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421765173.920105] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765174.125704] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765174.330346] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765174.537824] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.71 ms +[1421765174.748223] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.17 ms +[1421765174.961682] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.31 ms +[1421765175.175598] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.99 ms +[1421765175.397047] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421765175.620233] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421765175.842980] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421765176.061562] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421765176.286171] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421765176.569614] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.4 ms +[1421765176.797580] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421765177.025590] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421765177.250536] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421765177.536710] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.2 ms +[1421765177.815035] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.5 ms +[1421765178.095344] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.9 ms +[1421765178.320726] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421765178.547950] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421765178.753152] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765178.959366] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765179.165514] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765179.370629] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765179.580427] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.69 ms +[1421765179.793596] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.10 ms +[1421765180.009472] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421765180.226371] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421765180.446168] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421765180.726498] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.2 ms +[1421765180.952042] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421765181.236083] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.2 ms +[1421765181.455715] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421765181.692246] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.5 ms +[1421765181.924364] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.8 ms +[1421765182.147126] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421765182.431219] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.0 ms +[1421765182.661783] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.2 ms +[1421765182.932641] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=66.6 ms +[1421765183.159959] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421765183.383718] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421765183.588783] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765183.793806] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765183.998957] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765184.205455] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421765184.413026] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.59 ms +[1421765184.645972] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.5 ms +[1421765184.893560] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.6 ms +[1421765185.108257] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421765185.328386] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421765185.553397] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421765185.780655] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421765186.005535] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421765186.229746] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421765186.510980] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.1 ms +[1421765186.799408] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.3 ms +[1421765187.024423] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421765187.253870] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.5 ms +[1421765187.532021] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.0 ms +[1421765187.754278] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421765188.034443] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.0 ms +[1421765188.240765] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765188.445874] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765188.651036] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421765188.856108] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765189.060875] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765189.266254] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765189.471437] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765189.676603] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765189.882615] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765190.087496] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765190.293565] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765190.499565] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765190.705039] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765190.911065] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421765191.116710] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765191.322292] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765191.527404] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765191.732974] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765191.938122] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765192.145428] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.57 ms +[1421765192.355611] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.40 ms +[1421765192.595318] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.4 ms +[1421765192.811245] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421765193.031181] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421765193.253923] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421765193.480396] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421765193.697878] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421765193.978230] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.3 ms +[1421765194.205622] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421765194.436288] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.6 ms +[1421765194.642604] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765194.923674] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.7 ms +[1421765195.150238] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421765195.375688] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421765195.665886] 1955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=86.1 ms +[1421765195.892182] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421765196.180819] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.0 ms +[1421765196.407756] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421765196.614161] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765196.821433] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.13 ms +[1421765197.035296] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.1 ms +[1421765197.245135] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.99 ms +[1421765197.462274] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421765197.681909] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.7 ms +[1421765197.938653] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=52.4 ms +[1421765198.204023] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=61.2 ms +[1421765198.429277] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421765198.708655] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.4 ms +[1421765198.933408] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421765199.154734] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421765199.429661] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.0 ms +[1421765199.655857] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421765199.886369] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.3 ms +[1421765200.174712] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.5 ms +[1421765200.399374] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421765200.617343] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765200.844980] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421765201.071090] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421765201.276027] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765201.481581] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765201.688742] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.27 ms +[1421765201.909111] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421765202.122431] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.62 ms +[1421765202.334557] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.20 ms +[1421765202.554157] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421765202.817048] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=58.9 ms +[1421765203.022030] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765203.228178] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765203.433404] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765203.639819] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765203.845255] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765204.049902] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765204.254955] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765204.460390] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765204.665390] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765204.871661] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765205.076940] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765205.282953] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765205.488076] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765205.693242] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765205.899064] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421765206.103893] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765206.313411] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.72 ms +[1421765206.518959] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765206.724703] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765206.930616] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765207.135720] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765207.340693] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765207.545837] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765207.751358] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765207.957111] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765208.162890] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765208.368031] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765208.573365] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765208.779181] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765208.984170] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421765209.189530] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765209.394879] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765209.600166] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765209.805658] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765210.011561] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765210.216624] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765210.422152] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765210.627334] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421765210.832538] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765211.037442] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765211.242322] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765211.448693] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421765211.654198] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765211.859720] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765212.064571] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765212.271242] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421765212.476798] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765222.885723] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765223.090340] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765223.295344] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765223.501511] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765223.707403] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421765223.912389] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765224.117296] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765224.322196] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765224.527440] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765224.732342] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765224.938036] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765225.144593] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765225.366554] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421765225.578308] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.81 ms +[1421765225.794311] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.9 ms +[1421765226.013802] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421765226.287331] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.5 ms +[1421765226.511856] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421765226.737019] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421765227.023526] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.2 ms +[1421765227.307829] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.3 ms +[1421765227.534290] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421765227.798692] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.4 ms +[1421765228.004104] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765228.210062] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765228.416468] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421765228.626149] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.71 ms +[1421765228.836834] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.55 ms +[1421765229.048463] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.35 ms +[1421765229.302808] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=50.4 ms +[1421765229.521579] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421765229.803409] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.5 ms +[1421765230.026049] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421765230.308192] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.4 ms +[1421765230.592447] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.2 ms +[1421765230.817944] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421765231.043618] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421765231.329880] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.9 ms +[1421765231.558837] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.2 ms +[1421765231.783163] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421765232.010108] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421765232.296141] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.4 ms +[1421765232.582645] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.4 ms +[1421765232.788092] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765232.994610] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421765233.203490] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.61 ms +[1421765233.412413] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.32 ms +[1421765233.647743] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.6 ms +[1421765233.863465] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421765234.068372] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765234.289968] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421765234.514825] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421765234.736709] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421765234.963474] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421765235.195216] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.3 ms +[1421765235.416904] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.7 ms +[1421765235.643799] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421765235.870985] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421765236.095533] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421765236.305293] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.66 ms +[1421765236.583210] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.0 ms +[1421765236.805158] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421765237.085893] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.3 ms +[1421765237.352973] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=63.4 ms +[1421765237.558824] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765237.764526] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765237.971124] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.88 ms +[1421765238.231080] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.3 ms +[1421765238.445221] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.2 ms +[1421765238.684045] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.7 ms +[1421765238.937976] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=49.6 ms +[1421765239.156463] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421765239.382566] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421765239.607325] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421765239.895836] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.5 ms +[1421765240.124390] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421765240.354028] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421765240.581866] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421765240.871025] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.1 ms +[1421765241.095280] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421765241.323464] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421765241.549296] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421765241.830999] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.7 ms +[1421765242.035489] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421765242.241312] 1612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765242.447382] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765242.654756] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.38 ms +[1421765242.866554] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.97 ms +[1421765243.109919] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.9 ms +[1421765243.323075] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.11 ms +[1421765243.584319] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.9 ms +[1421765243.808233] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421765244.029650] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421765244.291320] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=57.8 ms +[1421765244.528651] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.1 ms +[1421765244.734901] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765244.989086] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=50.0 ms +[1421765245.255333] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.2 ms +[1421765245.478529] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421765245.702628] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421765245.931565] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421765246.214163] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.3 ms +[1421765246.440014] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421765246.674189] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.8 ms +[1421765246.879440] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765247.084429] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765247.290247] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765247.496926] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.94 ms +[1421765247.707385] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.76 ms +[1421765247.919304] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.00 ms +[1421765248.134316] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421765248.353174] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421765248.605371] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.3 ms +[1421765248.827839] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421765249.077389] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.0 ms +[1421765249.307295] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421765249.533194] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421765249.759772] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421765249.982679] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421765250.208231] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421765250.433871] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421765250.658939] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421765250.885321] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421765251.113904] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421765251.399688] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.9 ms +[1421765251.622206] 1392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421765251.827578] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765252.037995] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.92 ms +[1421765252.243552] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765252.451686] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.17 ms +[1421765252.669674] 1417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421765252.885881] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.0 ms +[1421765253.106968] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421765253.326273] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421765253.547851] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421765253.765575] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421765253.994488] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421765254.274575] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.2 ms +[1421765254.500429] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421765254.714963] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421765254.941771] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421765255.164508] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421765255.389680] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421765255.677140] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.2 ms +[1421765255.898875] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421765256.120854] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421765256.338445] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421765256.543694] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765256.749154] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765256.954516] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765257.162408] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.72 ms +[1421765257.373836] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.26 ms +[1421765257.613377] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.6 ms +[1421765257.825242] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765258.089254] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.3 ms +[1421765258.367172] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.2 ms +[1421765258.595098] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421765258.879778] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.6 ms +[1421765259.104366] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421765259.381120] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.7 ms +[1421765259.587047] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765259.809579] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421765260.097394] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.7 ms +[1421765260.317924] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421765260.542636] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421765260.828016] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.4 ms +[1421765261.052787] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421765261.259989] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.66 ms +[1421765261.465852] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765261.670579] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765261.878240] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.82 ms +[1421765262.089074] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.09 ms +[1421765262.326386] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.5 ms +[1421765262.544208] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.1 ms +[1421765262.760295] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421765262.978044] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421765263.205753] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421765263.435202] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421765263.661330] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421765263.890664] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.3 ms +[1421765264.116736] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421765264.321845] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765264.528135] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765264.733847] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765264.939610] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765265.145198] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765265.350520] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765265.556161] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765265.762837] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765265.968285] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421765266.173285] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765266.378867] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765266.589209] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.02 ms +[1421765266.813634] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421765267.047299] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.1 ms +[1421765267.296521] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.2 ms +[1421765267.514820] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421765267.727613] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.74 ms +[1421765267.933596] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765268.138793] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765268.345130] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421765268.554142] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.16 ms +[1421765268.786060] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.1 ms +[1421765268.998614] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.52 ms +[1421765269.245539] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.0 ms +[1421765269.468864] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421765269.694131] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421765269.978457] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.3 ms +[1421765270.206430] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421765270.490572] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.1 ms +[1421765270.717367] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421765270.938098] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421765271.162087] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421765271.414257] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.6 ms +[1421765271.640711] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421765271.870888] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421765272.159421] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.7 ms +[1421765272.389139] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.5 ms +[1421765272.594427] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765272.800717] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765273.007535] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.91 ms +[1421765273.225875] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421765273.435776] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.99 ms +[1421765273.651130] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.7 ms +[1421765273.869866] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421765274.092588] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421765274.369139] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.6 ms +[1421765274.651548] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.4 ms +[1421765274.935772] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.2 ms +[1421765275.163654] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421765275.445802] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.3 ms +[1421765275.671375] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421765275.897086] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421765276.180648] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.6 ms +[1421765276.406246] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421765276.689549] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.3 ms +[1421765276.978870] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.3 ms +[1421765277.185892] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.87 ms +[1421765277.390781] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765277.596149] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765277.811253] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421765278.035478] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421765278.248534] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.14 ms +[1421765278.464640] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.9 ms +[1421765278.683920] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421765278.952227] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=64.2 ms +[1421765279.174504] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421765279.459467] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.1 ms +[1421765279.679480] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421765279.966931] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.2 ms +[1421765280.172476] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765280.378562] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765280.584095] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765280.789562] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765280.995944] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765281.201815] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765281.407895] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765281.613353] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765281.840630] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421765282.115131] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.3 ms +[1421765282.346244] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.4 ms +[1421765282.570431] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421765282.790663] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421765283.015897] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421765283.298672] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.7 ms +[1421765283.503754] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765283.709566] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421765283.915173] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765284.149266] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.3 ms +[1421765284.414550] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=61.6 ms +[1421765284.625996] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.44 ms +[1421765284.841005] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421765285.103962] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.6 ms +[1421765285.325024] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421765285.548722] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421765285.773534] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421765286.000751] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421765286.288311] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.5 ms +[1421765286.501105] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.92 ms +[1421765286.720123] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421765287.008039] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.1 ms +[1421765287.233877] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421765287.573624] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=135 ms +[1421765287.801435] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421765288.086596] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.8 ms +[1421765288.292352] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421765288.497222] 1175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765288.704352] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.56 ms +[1421765288.925543] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421765289.139198] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.2 ms +[1421765289.355489] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421765289.571911] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421765289.837963] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.3 ms +[1421765290.110319] 1888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=68.7 ms +[1421765290.393419] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.3 ms +[1421765290.617177] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421765290.832138] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421765291.068252] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.2 ms +[1421765291.274977] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421765291.500495] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421765291.708627] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.15 ms +[1421765291.915150] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765292.120556] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765292.329237] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.63 ms +[1421765292.538554] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.60 ms +[1421765292.750989] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.88 ms +[1421765292.966531] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.9 ms +[1421765293.226800] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.2 ms +[1421765293.463123] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.4 ms +[1421765293.668362] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765293.873633] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765294.078947] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421765294.287520] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.78 ms +[1421765294.499530] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.89 ms +[1421765294.712334] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.83 ms +[1421765294.980883] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=64.7 ms +[1421765295.203548] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421765295.425788] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421765295.632173] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765295.837140] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765296.042236] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765296.248892] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765296.454137] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765296.659133] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765296.864838] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765297.149612] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.4 ms +[1421765297.354456] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765297.559540] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765297.764388] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765297.970540] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765298.177144] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421765298.398559] 1880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421765298.611690] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.00 ms +[1421765298.829467] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421765299.046431] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421765299.262394] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.2 ms +[1421765299.490027] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421765299.716142] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421765299.935876] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421765300.160374] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421765300.389165] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421765300.594765] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765300.800199] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765301.005576] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421765301.214600] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.07 ms +[1421765301.426641] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.26 ms +[1421765301.643454] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421765301.861443] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421765302.080301] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421765302.303250] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421765302.531968] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421765302.756552] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421765303.041249] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.8 ms +[1421765303.319852] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.8 ms +[1421765303.531041] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.18 ms +[1421765303.737175] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421765303.942102] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765304.147680] 904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421765304.352878] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765304.558375] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421765304.763531] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765304.969600] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765305.174105] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765305.380306] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765305.586050] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765305.791059] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765305.997471] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765306.202439] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765306.407421] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765306.612522] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765306.817785] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765307.022648] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765307.227246] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765307.433571] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421765307.638825] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765307.844491] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765308.050489] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421765308.255232] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765308.460209] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765308.665517] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765308.870538] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765309.075120] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765309.280511] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765309.485999] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765309.690962] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765309.895889] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765310.100324] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765310.305580] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765310.511038] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765310.717323] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765310.922753] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765311.127909] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765311.334106] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765311.539750] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765311.745124] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765311.950293] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765312.155392] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765312.360251] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765312.565388] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421765312.770337] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765312.975397] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765313.181683] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421765313.387907] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765313.593200] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765313.798153] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765314.003231] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765314.209342] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765314.415427] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765314.621286] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765314.827330] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765315.032397] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765315.237487] 1156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765315.442167] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765315.647085] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765315.853733] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765316.058612] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765316.263857] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765316.469405] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765316.674721] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765316.879531] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765317.085015] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765317.290351] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765317.495615] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765317.700328] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765317.905624] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765318.117653] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.79 ms +[1421765318.324343] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421765318.529599] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765318.734453] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765318.939266] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765319.145338] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421765319.350409] 814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765319.563541] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.35 ms +[1421765319.768827] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765319.974342] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765320.180959] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765320.386261] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765320.591100] 1451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765320.795804] 89 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765321.001761] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765321.207035] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765321.412180] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765321.617561] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765321.823081] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765322.027979] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765322.233259] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765322.438931] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765322.644981] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765322.851034] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765323.056443] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765323.261402] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765323.466766] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765323.672090] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765323.878287] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765324.083312] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765324.288041] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765324.493310] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765324.698510] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765324.903681] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765325.108154] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765325.312936] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765325.518941] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765325.723466] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765325.929034] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765326.135467] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765326.342055] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765326.547704] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765326.753165] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765326.958741] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765327.164367] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765327.369918] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765327.575672] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765327.782108] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765327.987869] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765328.193458] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765328.399588] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765328.604750] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765328.810058] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765329.015796] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765329.220666] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765329.427142] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421765329.633032] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765329.838949] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765330.044880] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765330.249905] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765330.456664] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765330.661669] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765330.866695] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765331.072971] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765331.278140] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765331.483168] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421765331.688368] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765331.893918] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765332.100019] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421765332.306203] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765332.512702] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765332.718906] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765332.925702] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421765333.130857] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765333.335677] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765333.540736] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765333.745889] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765333.950925] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765334.156118] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765334.361363] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765334.567527] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765334.772676] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765334.977752] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421765335.183977] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765335.389201] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765335.594674] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765335.800084] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765336.005033] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765336.210271] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765336.415812] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765336.621171] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765336.827627] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421765337.032556] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765337.237615] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765337.443026] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765337.648559] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765337.854349] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765338.059412] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765338.264969] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765338.471188] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765338.676531] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765338.883386] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765339.088588] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765339.293586] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765339.499955] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421765339.705493] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765339.911241] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421765340.116574] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765340.321524] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765340.527463] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765340.732702] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765340.957654] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421765341.163857] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421765341.369165] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765341.574368] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765341.780676] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421765341.986011] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765342.192488] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765342.398608] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765342.604674] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765342.810058] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765343.015074] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765343.220109] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765343.426129] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765343.631738] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765343.837279] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765344.042452] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765344.247590] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765344.453003] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765344.658642] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765344.863880] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765345.069827] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765345.274672] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765345.479655] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765345.684650] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765345.889773] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765346.094742] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765346.299943] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765346.505593] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765346.712645] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421765346.918870] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765347.125095] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765347.330696] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421765347.536138] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765347.741427] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765347.947459] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765348.152863] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765348.358129] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765348.563403] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765348.769656] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765348.976008] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765349.182928] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421765349.387944] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765349.594504] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421765349.800059] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765350.005041] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765350.209937] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765350.415282] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765350.620890] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765350.827096] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765351.036353] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.93 ms +[1421765351.247547] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.21 ms +[1421765351.453786] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765351.672462] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421765351.931577] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=54.5 ms +[1421765352.138015] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765352.343379] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765352.548776] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765352.755022] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765352.963975] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.25 ms +[1421765353.173712] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.69 ms +[1421765353.385841] 89 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.28 ms +[1421765353.599350] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.42 ms +[1421765353.858954] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=55.4 ms +[1421765354.081888] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421765354.307611] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421765354.532432] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421765354.757730] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421765354.982679] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421765355.188700] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765355.393914] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765355.599879] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765355.805256] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765356.009953] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765356.214809] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765356.419970] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765356.625985] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765356.830863] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765357.035473] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765357.240288] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765357.445981] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765357.651713] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.99 ms +[1421765357.873897] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421765358.109376] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.0 ms +[1421765358.325176] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421765358.585298] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.3 ms +[1421765358.808756] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421765359.088328] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.3 ms +[1421765359.293719] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765359.499554] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421765359.707602] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.91 ms +[1421765359.917655] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.38 ms +[1421765360.131684] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421765360.343029] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.48 ms +[1421765360.563588] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421765360.787548] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421765361.070644] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.6 ms +[1421765361.343685] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.0 ms +[1421765361.564464] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421765361.793450] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.0 ms +[1421765362.018903] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421765362.223902] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765362.451801] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421765362.674423] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421765362.952125] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.3 ms +[1421765363.178550] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421765363.405041] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421765363.686732] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.7 ms +[1421765363.891881] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765364.096885] 1451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765364.302208] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765364.509392] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.08 ms +[1421765364.719985] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.60 ms +[1421765364.934519] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421765365.152325] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421765365.408754] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=52.8 ms +[1421765365.631889] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421765365.856143] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421765366.080976] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421765366.362874] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.2 ms +[1421765366.642815] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.1 ms +[1421765366.871304] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421765367.097988] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421765367.325686] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421765367.610144] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.2 ms +[1421765367.815508] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765368.020421] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765368.262897] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.5 ms +[1421765368.531828] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=65.0 ms +[1421765368.752909] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421765368.958131] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765369.163085] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765369.370829] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.56 ms +[1421765369.582972] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.71 ms +[1421765369.820209] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.0 ms +[1421765370.035645] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.0 ms +[1421765370.255812] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421765370.481459] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421765370.748620] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.9 ms +[1421765370.978930] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.1 ms +[1421765371.206141] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421765371.430687] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765371.635691] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765371.840469] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765372.045331] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765372.251119] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765372.457365] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765372.662427] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765372.867434] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765373.073183] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765373.278959] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765373.484980] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765373.689871] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765373.895086] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765374.100120] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765374.305188] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765374.512916] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.53 ms +[1421765374.724090] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.87 ms +[1421765374.963390] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.4 ms +[1421765375.210192] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.6 ms +[1421765375.428034] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421765375.706678] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.5 ms +[1421765375.911987] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765376.116869] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765376.322962] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765376.530743] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.97 ms +[1421765376.756011] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421765376.969812] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.99 ms +[1421765377.186523] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421765377.407858] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421765377.612814] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421765377.817695] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765378.022107] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765378.227199] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765378.432492] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765378.637093] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765378.842120] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765379.047691] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765379.253000] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765379.458929] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765379.664336] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765379.869595] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765380.075260] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765380.280255] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765380.485755] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765380.691291] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765380.897878] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765381.103040] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765381.308151] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765381.513655] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765381.718848] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765381.924271] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765382.128985] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765382.334000] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765382.538698] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765382.744335] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765382.950526] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765383.155934] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765383.360780] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765383.565684] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765383.770550] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765383.976126] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765384.181402] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765384.387620] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765384.593225] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765384.798971] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765385.004978] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765385.210336] 1261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765385.416464] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421765385.621438] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765385.826910] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765386.031758] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765386.236808] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765386.443088] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765386.649084] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765386.854814] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421765387.060037] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765387.265083] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765387.470625] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765387.676294] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421765387.881738] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765388.086673] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765388.291468] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765388.497977] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765388.704103] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765388.909543] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765389.115046] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421765389.320268] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765389.527256] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421765389.733402] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765389.939662] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765390.145910] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765390.351328] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765390.557403] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765390.762900] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765390.968208] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765391.173028] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765391.378185] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765391.584248] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765391.789378] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765391.995492] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765392.200818] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765392.406229] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765392.611720] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765392.817274] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765393.021968] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765393.228655] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421765393.435141] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421765393.641687] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765393.847031] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765394.051775] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765394.256775] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765394.461976] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765394.667407] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765394.873104] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765395.078007] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765395.282702] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765395.488549] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421765395.693977] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765395.900623] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765396.105377] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765396.310601] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765396.515880] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765396.721590] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765396.927244] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421765397.133766] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765397.339141] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765397.544584] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765397.750211] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421765397.956010] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421765398.162124] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765398.367766] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765398.572993] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765398.779943] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421765398.985959] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765399.191345] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765399.396770] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765399.603241] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765399.808636] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765400.013281] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765400.218582] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765400.423616] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765400.629017] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765400.835204] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765401.040589] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765401.247096] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765401.453272] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765401.659775] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765401.865439] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765402.070996] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421765402.276690] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765402.481809] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765402.687440] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765402.892769] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765403.097599] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421765403.302504] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765403.507523] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765403.713640] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765403.919962] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765404.125135] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765404.330731] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765404.536701] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421765404.741892] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765404.946907] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765405.151652] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765405.356627] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765405.561693] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765405.766445] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765405.971609] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765406.176617] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765406.381673] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765406.588367] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765406.793186] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765406.998739] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765407.204642] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.93 ms +[1421765407.427508] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421765407.641320] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.59 ms +[1421765407.884888] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.5 ms +[1421765408.144700] 1522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=55.8 ms +[1421765408.421460] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.7 ms +[1421765408.706033] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.5 ms +[1421765408.927060] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421765409.159038] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.7 ms +[1421765409.390001] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.1 ms +[1421765409.674252] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.3 ms +[1421765409.880647] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765410.085323] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765410.330931] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=41.7 ms +[1421765410.536537] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765410.742170] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765410.948474] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421765411.159667] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.31 ms +[1421765411.396850] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.3 ms +[1421765411.645568] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.8 ms +[1421765411.864317] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421765412.090876] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421765412.316800] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421765412.541338] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421765412.766643] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421765413.050235] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.0 ms +[1421765413.279182] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421765413.484339] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765413.759122] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.9 ms +[1421765413.981292] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421765414.265896] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.7 ms +[1421765414.491633] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421765414.776378] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.0 ms +[1421765415.005989] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.1 ms +[1421765415.211251] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765415.417099] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765415.621955] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765415.841924] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421765416.047070] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421765416.252047] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765416.456913] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765416.663082] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765416.868327] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765417.073833] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765417.279877] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421765417.485216] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765417.690559] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765417.895766] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765418.101108] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765418.306255] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765418.513033] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765418.719182] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765418.925735] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765419.131235] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765419.336480] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765419.541924] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765419.747055] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765419.953302] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765420.159408] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765420.364321] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765420.569225] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765420.773843] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765420.979029] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765421.184321] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765421.390447] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765421.595018] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765421.799713] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765422.004071] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765422.209318] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765422.414504] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765422.619665] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765422.825765] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421765423.032104] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421765423.236998] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765423.441980] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765423.647294] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765423.852688] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765424.057500] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765424.262396] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765424.467553] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765424.673303] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765424.879272] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765425.084276] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765425.290339] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421765425.495843] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765425.700884] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765425.906098] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421765426.111498] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765426.316207] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765426.521095] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765426.726165] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765426.931496] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765427.136627] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765427.341936] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765427.547559] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765427.753014] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765427.958661] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765428.164076] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765428.369435] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765428.575420] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421765428.782248] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.72 ms +[1421765428.988448] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765429.193916] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765429.399027] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765429.604592] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765429.810177] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765430.014486] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765430.219665] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765430.425107] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765430.630156] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765430.835153] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765431.041153] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765431.246433] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765431.451772] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765431.656827] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765431.862138] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765432.067787] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765432.272571] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765432.477459] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765432.682193] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421765432.888217] 1716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421765433.093910] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421765433.298785] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765433.504531] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765433.709204] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765433.914666] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765434.119753] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765434.324456] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765434.529217] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765434.733952] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765434.939104] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765435.144453] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765435.349762] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765435.554945] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765435.761233] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765435.967082] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765436.173499] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765436.378592] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765436.584616] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421765436.789796] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765436.994482] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765437.199413] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765437.404407] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765437.609308] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765437.814261] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765438.019929] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421765438.224518] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765438.429807] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765438.636134] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765438.841404] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765439.047300] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765439.254079] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421765439.460063] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421765439.666679] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421765439.872738] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765440.151695] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.1 ms +[1421765440.356517] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.02 ms +[1421765440.562431] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765440.767850] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765440.972693] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765441.178729] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765441.383875] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765441.589993] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765441.795313] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765442.000559] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765442.206764] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765442.411928] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765442.618629] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765442.823961] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765443.028567] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765443.233655] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765443.438726] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765443.644942] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765443.850665] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765444.056429] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.07 ms +[1421765444.261546] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765444.466829] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765444.672410] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765444.906513] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.8 ms +[1421765445.123483] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421765445.341030] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421765445.563267] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421765445.786077] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421765446.007139] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421765446.240938] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.1 ms +[1421765446.464675] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421765446.692060] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421765446.920085] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421765447.164509] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=40.8 ms +[1421765447.392698] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765447.622853] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.3 ms +[1421765447.911788] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.0 ms +[1421765448.192091] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.6 ms +[1421765448.397400] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765448.603610] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421765448.808546] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765449.013851] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421765449.234598] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421765449.446382] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.65 ms +[1421765449.684013] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.4 ms +[1421765449.900058] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.7 ms +[1421765450.119519] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421765450.347461] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421765450.571574] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421765450.789258] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421765451.005601] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421765451.240631] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.1 ms +[1421765451.445171] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765451.650240] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765451.855334] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765462.091149] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421765462.318656] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421765462.524333] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765462.730804] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421765462.936285] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765463.141180] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765463.350073] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.25 ms +[1421765463.562361] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.00 ms +[1421765463.802747] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.2 ms +[1421765464.051862] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.1 ms +[1421765464.270594] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421765464.548175] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.6 ms +[1421765464.821508] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.8 ms +[1421765465.027247] 1716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765465.232437] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765465.439296] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421765465.645314] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.88 ms +[1421765465.855694] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.28 ms +[1421765466.069681] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.67 ms +[1421765466.312810] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.4 ms +[1421765466.570794] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=53.8 ms +[1421765466.791836] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421765467.016915] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421765467.242728] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421765467.464995] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421765467.686273] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421765467.891845] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765468.171297] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.5 ms +[1421765468.399754] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421765468.681200] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.2 ms +[1421765468.908135] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421765469.132872] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421765469.359597] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421765469.587573] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421765469.793143] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765469.998474] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765470.203938] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765470.415001] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.89 ms +[1421765470.631842] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421765470.877595] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.1 ms +[1421765471.097301] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421765471.360435] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.4 ms +[1421765471.638047] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.5 ms +[1421765471.917635] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.0 ms +[1421765472.140950] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421765472.346233] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765472.554626] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.67 ms +[1421765472.760971] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421765472.971681] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.54 ms +[1421765473.177732] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765473.384000] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765473.590616] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765473.796354] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421765474.001474] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765474.207278] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421765474.415168] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.19 ms +[1421765474.643865] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421765474.857432] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.30 ms +[1421765475.075420] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421765475.296547] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421765475.520945] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421765475.744992] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421765475.956491] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.37 ms +[1421765476.161947] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765476.366870] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765476.573513] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.92 ms +[1421765476.784475] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.88 ms +[1421765477.020589] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.0 ms +[1421765477.235711] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421765477.495547] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=55.8 ms +[1421765477.770332] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.6 ms +[1421765478.053990] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.6 ms +[1421765478.284805] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.7 ms +[1421765478.508196] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421765478.713722] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765478.919396] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765479.125758] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765479.331472] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765479.536976] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765479.742820] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421765479.959829] 1529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421765480.171979] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.14 ms +[1421765480.411795] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.8 ms +[1421765480.666118] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=49.8 ms +[1421765480.887481] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421765481.111471] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421765481.393376] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.5 ms +[1421765481.599188] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765481.805635] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765482.011817] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765482.219654] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.39 ms +[1421765482.447892] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421765482.661880] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.97 ms +[1421765482.877466] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421765483.094173] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421765483.316833] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421765483.598694] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.8 ms +[1421765483.823914] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421765484.042845] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421765484.247862] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765484.472091] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421765484.678882] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421765484.900738] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421765485.129269] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421765485.413167] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.0 ms +[1421765485.639958] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421765485.870021] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421765486.095847] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421765486.323534] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421765486.548996] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421765486.754813] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765486.960118] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765487.167373] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.68 ms +[1421765487.396636] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421765487.612042] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421765487.826685] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421765488.047202] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421765488.265383] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421765488.488868] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421765488.714010] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421765488.938997] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421765489.166287] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421765489.449842] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.5 ms +[1421765489.655055] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765489.878479] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421765490.108393] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.4 ms +[1421765490.328893] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421765490.557638] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421765490.782246] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421765491.009987] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421765491.236664] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421765491.453937] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421765491.659225] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765491.864709] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765492.070288] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765492.278298] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.03 ms +[1421765492.483568] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765492.696011] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.08 ms +[1421765492.901468] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765493.115865] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421765493.371000] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.5 ms +[1421765493.641478] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=66.4 ms +[1421765493.865652] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421765494.090287] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421765494.314381] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421765494.593992] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.5 ms +[1421765494.816301] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421765495.036431] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421765495.263636] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421765495.549030] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.2 ms +[1421765495.841282] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=88.1 ms +[1421765496.064069] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421765496.270945] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.97 ms +[1421765496.475919] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765496.681202] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765496.888294] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.36 ms +[1421765497.113136] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421765497.329655] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421765497.550132] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421765497.765761] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.4 ms +[1421765497.986333] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421765498.208343] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421765498.490577] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.3 ms +[1421765498.779807] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.1 ms +[1421765499.064156] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.2 ms +[1421765499.313196] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.0 ms +[1421765499.518752] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765499.736246] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421765500.005548] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=65.0 ms +[1421765500.227013] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421765500.506761] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.1 ms +[1421765500.797141] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=86.1 ms +[1421765501.002468] 1330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765501.207749] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765501.412964] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765501.618537] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765501.841575] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421765502.052372] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.39 ms +[1421765502.265425] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.38 ms +[1421765502.519361] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=49.9 ms +[1421765502.743524] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421765503.004361] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.7 ms +[1421765503.230317] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421765503.453477] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421765503.726582] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=68.8 ms +[1421765504.016376] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.7 ms +[1421765504.296222] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.8 ms +[1421765504.521669] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421765504.743123] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421765505.028794] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.8 ms +[1421765505.257673] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421765505.487584] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421765505.715374] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421765505.924406] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.74 ms +[1421765506.129148] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765506.334955] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765506.540221] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765506.747771] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.72 ms +[1421765506.956358] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.59 ms +[1421765507.184483] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421765507.426640] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.4 ms +[1421765507.640323] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.84 ms +[1421765507.861311] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421765508.087898] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421765508.309242] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421765508.587535] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.6 ms +[1421765508.811048] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421765509.030144] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421765509.254384] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421765509.481948] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421765509.705147] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421765509.929862] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421765510.149506] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421765510.432752] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.2 ms +[1421765510.716567] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.0 ms +[1421765510.921942] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765511.127504] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765511.338082] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.71 ms +[1421765511.549597] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.21 ms +[1421765511.761157] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.13 ms +[1421765512.001490] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.2 ms +[1421765512.264108] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=58.3 ms +[1421765512.541691] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.5 ms +[1421765512.828461] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.4 ms +[1421765513.050584] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421765513.280125] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421765513.499218] 1063 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421765513.725375] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421765513.959765] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.4 ms +[1421765514.179576] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421765514.400385] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421765514.624149] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421765514.850348] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421765515.074401] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421765515.279846] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765515.561956] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.1 ms +[1421765515.767849] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421765515.973709] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421765516.179153] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765516.386333] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.46 ms +[1421765516.596627] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.43 ms +[1421765516.813801] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421765517.032968] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421765517.294188] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=57.5 ms +[1421765517.515093] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421765517.742036] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421765518.031707] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.7 ms +[1421765518.256724] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421765518.486463] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421765518.716688] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421765518.948332] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.3 ms +[1421765519.174042] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421765519.394557] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421765519.620696] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421765519.843929] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421765520.071382] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421765520.294947] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421765520.519188] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421765520.725066] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765520.930234] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765521.138662] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.75 ms +[1421765521.351230] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.35 ms +[1421765521.562503] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.93 ms +[1421765521.780663] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421765522.038835] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=54.3 ms +[1421765522.312385] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.7 ms +[1421765522.536610] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421765522.762833] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421765523.044698] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421765523.264167] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421765523.490329] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421765523.696082] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765523.923392] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421765524.141859] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421765524.364534] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421765524.593538] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421765524.878124] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.6 ms +[1421765525.162137] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.1 ms +[1421765525.388613] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421765525.593833] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765525.799651] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765526.005021] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765526.211852] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.09 ms +[1421765526.423198] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.31 ms +[1421765526.628638] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765526.834068] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765527.038874] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765527.247142] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.24 ms +[1421765527.456381] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.62 ms +[1421765527.674360] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421765527.891613] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421765528.114379] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421765528.336302] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421765528.566884] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.4 ms +[1421765528.794782] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421765529.019194] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421765529.225823] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.78 ms +[1421765529.454072] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421765529.673988] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421765529.888253] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.94 ms +[1421765530.093403] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765530.298509] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765530.503941] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765530.709233] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765530.914994] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421765531.135598] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421765531.347901] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.27 ms +[1421765531.559657] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.56 ms +[1421765531.779784] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421765531.985110] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765532.191196] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765532.396382] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765532.602684] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765532.828650] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421765533.042976] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421765533.282295] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.5 ms +[1421765533.500211] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.1 ms +[1421765533.769387] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=65.2 ms +[1421765533.996177] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421765534.225245] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421765534.446084] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421765534.670592] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421765534.893871] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421765535.118991] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421765535.409189] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=86.0 ms +[1421765535.632012] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421765535.860280] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421765536.084253] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421765536.314819] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.8 ms +[1421765536.519774] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765536.725320] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765536.932811] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.26 ms +[1421765537.144022] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.48 ms +[1421765537.356228] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.51 ms +[1421765537.571345] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421765537.791226] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.7 ms +[1421765538.017456] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421765538.243557] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421765538.523529] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.8 ms +[1421765538.812843] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.1 ms +[1421765539.017562] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765539.222631] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765539.427902] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765539.633318] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765539.838725] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765540.043848] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765540.249366] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765540.454652] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765540.661708] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.88 ms +[1421765540.888849] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421765541.124867] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.0 ms +[1421765541.343317] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421765541.562166] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421765541.782091] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765541.987166] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765542.206493] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421765542.431309] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421765542.636568] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765542.843777] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.64 ms +[1421765543.057199] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.79 ms +[1421765543.283854] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421765543.501734] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421765543.718847] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421765543.938887] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421765544.212960] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.6 ms +[1421765544.494003] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.1 ms +[1421765544.716391] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421765544.943348] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421765545.220793] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.5 ms +[1421765545.442296] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421765545.666098] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421765545.871529] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765546.077201] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765546.282284] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765546.488018] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421765546.693172] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765546.898384] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765547.103423] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765547.309168] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765547.514069] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765547.723752] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.54 ms +[1421765547.958231] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.1 ms +[1421765548.176244] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421765548.393993] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421765548.655029] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=57.0 ms +[1421765548.884790] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421765549.090032] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765549.295472] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765549.500939] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421765549.706666] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765549.912538] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765550.117907] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765550.323416] 1297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765550.528938] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765550.734510] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765550.940283] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765551.145073] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765551.350506] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765551.556045] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765551.761147] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765551.966504] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765552.171574] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765552.376635] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765552.582951] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421765552.788537] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765552.994221] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765553.199610] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765553.405047] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765553.610509] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765553.816915] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765554.021836] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765554.227802] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421765554.433585] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765554.639555] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765554.845424] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765555.050394] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765555.255224] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765555.461582] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765555.666879] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765555.872418] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765556.078114] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765556.283007] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421765556.487881] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765556.692815] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765556.898329] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765557.103015] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765557.308048] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765557.513273] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765557.718827] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765557.923578] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765558.128690] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765558.333787] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765558.539325] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765558.744942] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765558.950721] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765559.155576] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765559.361028] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421765559.566367] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765559.774768] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.01 ms +[1421765559.984604] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.94 ms +[1421765560.197878] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.99 ms +[1421765560.444553] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.5 ms +[1421765560.663809] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421765560.934898] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=66.9 ms +[1421765561.148492] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.62 ms +[1421765561.353581] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765561.558895] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765561.764689] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765561.970486] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765562.176712] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765562.381710] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765562.586888] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765562.791792] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765562.998301] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421765563.203823] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765563.409288] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765563.614502] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765563.819495] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765564.025285] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765564.230355] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765564.435714] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765564.641074] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765564.846290] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765565.051209] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765565.256289] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765565.461527] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765565.667350] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765565.872499] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765566.078530] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421765566.283712] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765566.489153] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765566.695434] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765566.901538] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421765567.106808] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765567.311658] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765567.516464] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765567.721660] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765567.927269] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765568.133623] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765568.339289] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765568.544466] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765568.749779] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765568.956568] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765569.161861] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765569.367624] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.85 ms +[1421765569.573842] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421765569.779735] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765569.988399] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765570.199357] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.10 ms +[1421765570.441760] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.3 ms +[1421765570.660523] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421765570.881141] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421765571.102593] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421765571.307617] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765571.513747] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421765571.720165] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765571.925352] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765572.130483] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765572.336395] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765572.541597] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765572.746662] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421765572.951756] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765573.156971] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765573.361935] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765573.567581] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421765573.774209] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421765573.988535] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421765574.194529] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765574.400207] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421765574.605520] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765574.812740] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.57 ms +[1421765575.031555] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421765575.238985] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.78 ms +[1421765575.443863] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765575.648752] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765575.853181] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765576.063788] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.20 ms +[1421765576.270778] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.11 ms +[1421765576.480818] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.15 ms +[1421765576.718027] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.8 ms +[1421765576.923402] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765577.128381] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765577.333391] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765577.543411] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.01 ms +[1421765577.753867] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.05 ms +[1421765577.965097] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.45 ms +[1421765578.179082] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.59 ms +[1421765578.392683] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.83 ms +[1421765578.598565] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765578.803226] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765579.020804] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421765579.226343] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765579.432055] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765579.637020] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765579.843683] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.84 ms +[1421765580.050169] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421765580.255536] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765580.461396] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765580.666407] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765580.871368] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765581.076423] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765581.281183] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765581.486244] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765581.691065] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765581.896249] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765582.102232] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765582.307075] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765582.512128] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765582.716882] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765582.922603] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765583.127551] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765583.332851] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765583.537409] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765583.746658] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.82 ms +[1421765583.954687] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765584.160940] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765584.366898] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765584.572534] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765584.777878] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765584.984220] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765585.189690] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765585.394679] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765585.599469] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765585.804555] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765586.009688] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765586.214150] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765586.420235] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765586.625591] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765586.830817] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765587.035585] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765587.240264] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765587.445260] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765587.650389] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765587.855462] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765588.059889] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765588.266020] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765588.471513] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765588.676020] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765588.881143] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765589.086059] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765589.291021] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765589.496346] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765589.701533] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765589.907136] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765590.113469] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765590.319254] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765590.524988] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765590.730218] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765590.935201] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765591.140766] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765591.346042] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765591.550995] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765591.757074] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765591.963629] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765592.168656] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765592.375121] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421765592.580604] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765592.786727] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765592.992991] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765593.198342] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765593.403820] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765593.609100] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765593.815433] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421765594.020640] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765594.225683] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765594.430898] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765594.637284] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765594.842368] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765595.048235] 1897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765595.253590] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765595.458898] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765595.663987] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765595.870114] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765596.074759] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765596.279736] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765596.484787] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765596.690295] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765596.895147] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765597.100969] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765597.306941] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765597.512346] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765597.718024] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765597.924333] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765598.129714] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765598.335910] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765598.541075] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765598.746122] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765598.952488] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765599.157869] 1026 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765599.362975] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765599.568655] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421765599.774306] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765599.979598] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765600.185549] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765600.390907] 814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765600.596252] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765600.802917] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765601.007637] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765601.212868] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765601.418254] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765601.623407] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765601.829368] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765602.034627] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765602.239839] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765602.445440] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421765602.650687] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765602.855876] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765603.061624] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765603.266593] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765603.472658] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765603.677627] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765603.883725] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765604.088874] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765604.295133] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765604.501033] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421765604.706654] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765604.911972] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765605.116776] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765605.321579] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765605.526833] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765605.733211] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765605.938695] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765606.143627] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765606.348825] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765606.553863] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765606.759043] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765606.964786] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421765607.170878] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421765607.376797] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421765607.583027] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421765607.788230] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765607.993798] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765608.200336] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765608.405554] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765608.610614] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765608.816122] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765609.022218] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765609.227030] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765609.433237] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421765609.638540] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765609.843824] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421765610.050324] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421765610.255781] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765610.461668] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765610.666845] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765610.872169] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765611.078203] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421765611.283339] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765611.488381] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765611.694422] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765611.900658] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765612.105559] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765612.310869] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765612.516022] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765612.721026] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765612.926237] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765613.131658] 1186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765613.337165] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765613.543923] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765613.749632] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765613.956122] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765614.162466] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765614.368432] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765614.574368] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765614.779787] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765614.984896] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765615.189661] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765615.394496] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765615.599660] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765615.804772] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765616.009356] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765616.215299] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765616.420622] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765616.626086] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765616.832107] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421765617.037935] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765617.243652] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421765617.448978] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765617.654096] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765617.860354] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421765618.066168] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765618.271367] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765618.477197] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765618.683583] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765618.888551] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765619.093271] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765619.298419] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765619.503845] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765619.709408] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765619.915025] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765620.121374] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765620.326989] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765620.533636] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765620.740203] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765620.945556] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765621.151095] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765621.357571] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765621.564597] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421765621.770456] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765621.976106] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765622.182317] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765622.388489] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765622.594704] 1529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765622.800818] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421765623.006893] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765623.212001] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765623.418525] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765623.623824] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765623.828994] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765624.034067] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765624.239059] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765624.445525] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765624.651070] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765624.857371] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421765625.062195] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765625.267164] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765625.472763] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765625.677809] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765625.882939] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765626.087888] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765626.293715] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765626.498554] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765626.704582] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765626.909578] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765627.114497] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765627.319744] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765627.525230] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765627.730654] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765627.937004] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765628.143263] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765628.349407] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765628.554709] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765628.760193] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765628.966794] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765629.172440] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765629.377849] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765629.583428] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765629.788820] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765629.994733] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765630.200107] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765630.405026] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765630.610446] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765630.816371] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765631.021337] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765631.227290] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765631.432892] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765631.638326] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765631.843915] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765632.048602] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421765632.253888] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765632.459190] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765632.665122] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765632.871582] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765633.076492] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765633.281634] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765633.486796] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765633.692100] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765633.898638] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421765634.103520] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765634.309927] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765634.515344] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765634.721236] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765634.927182] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765635.132089] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765635.337230] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765635.542368] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765635.747493] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765635.952887] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765636.158188] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765636.364374] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765636.569780] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765636.775219] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765636.980890] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421765637.186054] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765637.392199] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765637.598001] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765637.803507] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765638.009730] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765638.215051] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765638.421268] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765638.626661] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765638.831864] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765639.036790] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765639.241790] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765639.447231] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765639.652482] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765639.858574] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421765640.063416] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765640.268492] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765640.474263] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765640.679638] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421765640.885806] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.92 ms +[1421765641.091151] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765641.296330] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765641.501520] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765641.707836] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765641.913283] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421765642.118565] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765642.323784] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765642.529186] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765642.735915] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421765642.941508] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765643.146862] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765643.352422] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765643.557639] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765643.762877] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765643.968383] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765644.173750] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765644.379104] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765644.584846] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765644.790420] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421765644.995296] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765645.200704] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765645.405876] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765645.611259] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421765645.816921] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765646.021797] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765646.228186] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765646.433632] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765646.639175] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765646.845629] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765647.050462] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421765647.255407] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765647.460472] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765647.665154] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765647.870295] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765648.075480] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765648.280646] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765648.486223] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765648.691757] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765648.897454] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765649.102284] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765649.307604] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765649.514669] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421765649.721264] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765649.927303] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765650.132424] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765650.338633] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765650.544144] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765650.749711] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765650.955412] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765651.160625] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765651.365674] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765651.571080] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765651.777270] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421765651.982223] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765652.188024] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765652.394075] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765652.599472] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765652.806141] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765653.011145] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765653.217514] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765653.422883] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765653.628256] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765653.834771] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765654.040691] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765654.245578] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765654.450930] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765654.657629] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421765654.863008] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765655.067927] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765655.273821] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421765655.479240] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765655.685002] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765655.890586] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765656.095705] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765656.301007] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765656.506634] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421765656.712553] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765656.918957] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765657.124722] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421765657.329548] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765657.534515] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765657.739637] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765657.945316] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765658.150729] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765658.356628] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765658.561940] 1063 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765658.767509] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765658.973013] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765659.178424] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765659.383558] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765659.588998] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765659.795602] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421765660.000865] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765660.206347] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765660.411653] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765660.617622] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765660.822738] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765661.027271] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765661.233154] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765661.438487] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765661.644100] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765661.850693] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765662.055507] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765662.260900] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765662.467442] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421765662.672685] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765662.878337] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765663.083261] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765663.288487] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765663.494073] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765663.700630] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765663.906141] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765664.110850] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765664.317419] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421765664.523049] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765664.728580] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765664.934323] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765665.140380] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765665.346965] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421765665.552828] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765665.758927] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765665.964894] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765666.170349] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765666.375913] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765666.581799] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765666.787592] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765666.993184] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765667.198615] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765667.404264] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765667.610772] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765667.817233] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421765668.022222] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421765668.227628] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421765668.432928] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765668.638329] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765668.843659] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765669.048625] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765669.253615] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765669.459872] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765669.665085] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765669.870564] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765670.075824] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765670.282036] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765670.486999] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765670.691784] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765670.896998] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765671.102628] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765671.308419] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765671.513711] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765671.720055] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765671.926243] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765672.131116] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765672.336018] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765672.542160] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765672.748746] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765672.954147] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765673.159805] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765673.364519] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765673.570912] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421765673.776195] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765673.981665] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765674.186991] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765674.392445] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765674.598029] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765674.804667] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765675.009669] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765675.215546] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765675.420568] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765675.625819] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765675.831348] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765676.036445] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765676.242353] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765676.447607] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765676.652784] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765676.859297] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765677.065184] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421765677.271240] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765677.476350] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765677.681389] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765677.887351] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765678.093185] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765678.298548] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765678.504441] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765678.710910] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765678.916265] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421765679.121662] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765679.327848] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765679.533901] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421765679.739550] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765679.945144] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765680.150863] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765680.356817] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765680.562363] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765680.767396] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765680.972371] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765681.177639] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765681.382572] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765681.587592] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765681.793582] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765682.009785] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421765682.220859] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.17 ms +[1421765682.439385] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421765682.695139] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.8 ms +[1421765682.917576] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421765683.143002] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421765683.425388] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421765683.630717] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765683.836010] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765684.042353] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765684.248980] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421765684.455445] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765684.661142] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765684.867289] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765685.072726] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765685.278523] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765685.484071] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765685.689721] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765685.894974] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765686.100735] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765686.311930] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.65 ms +[1421765686.551819] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.1 ms +[1421765686.766859] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421765686.989605] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421765687.211740] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421765687.495830] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.9 ms +[1421765687.722797] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421765688.003827] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.3 ms +[1421765688.222646] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421765688.450171] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421765688.675901] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421765688.893118] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421765689.171440] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.7 ms +[1421765689.401779] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.2 ms +[1421765689.618508] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421765689.849236] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.8 ms +[1421765690.070263] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421765690.275475] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765690.481022] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765690.688393] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.89 ms +[1421765690.898387] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.57 ms +[1421765691.109661] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.43 ms +[1421765691.324847] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421765691.544852] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421765691.764144] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421765691.987292] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421765692.214566] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421765692.496690] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421765692.719869] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421765692.943423] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421765693.149126] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765693.354437] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765693.560316] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765693.765456] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765693.971128] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765694.176814] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765694.382001] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765694.587114] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765694.792909] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765695.000137] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.81 ms +[1421765695.205691] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765695.415322] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.16 ms +[1421765695.623877] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.45 ms +[1421765695.855469] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.0 ms +[1421765696.071170] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.7 ms +[1421765696.289122] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421765696.495555] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421765696.700908] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765696.906928] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765697.112477] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765697.318031] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765697.523177] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765697.728275] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765697.933112] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765698.139187] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765698.345014] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421765698.551260] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421765698.757056] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765698.962198] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765699.167548] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765699.373026] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765699.579778] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421765699.784899] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765699.990364] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765700.195525] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765700.400898] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765700.606565] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765700.813151] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765701.017932] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765701.223027] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765701.429174] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765701.635607] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421765701.841858] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421765702.047037] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765702.251740] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765702.457877] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765702.663752] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765702.868719] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765703.073462] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421765703.278426] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765703.484076] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765703.690522] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765703.895440] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765704.101075] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765704.306137] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765704.511471] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765704.720979] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765704.927395] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765705.133727] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765705.339067] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765705.545349] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765705.749996] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421765705.955389] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421765706.160318] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765706.365031] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765706.570318] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765706.775785] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765706.982120] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765707.187668] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765707.393634] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765707.598806] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765707.803946] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765708.009598] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765708.214755] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765708.420179] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765708.625598] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765708.830890] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765709.035797] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765709.241813] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765709.447664] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765709.653129] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765709.858394] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765710.063211] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765710.268494] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765710.473948] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765710.679785] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765710.885653] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765711.090711] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765711.295815] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765711.501193] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765711.706685] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765711.913052] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765712.118528] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765712.323800] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765712.529124] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765712.734360] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765712.940595] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765713.145740] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765713.350942] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765713.556047] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765713.761554] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765713.967200] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765714.173006] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765714.378612] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765714.585150] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765714.790190] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765714.996787] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765715.203220] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765715.408487] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765715.614875] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421765715.820268] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765716.026049] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765716.230858] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765716.436380] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765716.641956] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765716.847676] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765717.052378] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765717.258281] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421765717.463584] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765717.669223] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765717.874755] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765718.079363] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765718.285133] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765718.490400] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765718.695810] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765718.901241] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765719.106081] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765719.311042] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765719.516462] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765719.721634] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765719.927971] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421765720.133432] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765720.338601] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765720.543324] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765720.748425] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765720.954607] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765721.159452] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765721.364945] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765721.571203] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765721.776105] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765721.981519] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765722.186327] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765722.391481] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765722.597789] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765722.802544] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765723.007268] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765723.212599] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765723.418972] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765723.624329] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765723.829932] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765724.034797] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765724.240383] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765724.446395] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765724.652604] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765724.859423] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765725.065761] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765725.270781] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765725.476732] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421765725.682113] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421765725.887558] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765726.095943] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.55 ms +[1421765726.300907] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765726.507084] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765726.712500] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765726.917723] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765727.123039] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765727.327975] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765727.533344] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765727.738867] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765727.945507] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421765728.151870] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421765728.357530] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.94 ms +[1421765728.562867] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765728.767940] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765728.973111] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765729.178673] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765729.383965] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765729.589908] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765729.795691] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765730.001669] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421765730.207082] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765730.412431] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765730.617823] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765730.823360] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765731.028299] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765731.234143] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421765731.439303] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765731.644950] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765731.850719] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765732.056735] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765732.261621] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765732.466519] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765732.671905] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765732.878609] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765733.083704] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765733.288486] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765733.493620] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765733.700263] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765733.906223] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765734.110939] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765734.317027] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765734.522223] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765734.727399] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765734.932140] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765735.136478] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421765735.341512] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765735.546762] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765735.752084] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765735.958007] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765736.163654] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765736.369903] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765736.575688] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765736.781440] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765736.987981] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765737.193273] 1175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765737.398280] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765737.603811] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765737.808812] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765738.013828] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765738.219638] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765738.426653] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.78 ms +[1421765738.634253] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.12 ms +[1421765738.839243] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765739.044101] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765739.250253] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765739.455607] 130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765739.660724] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765739.865784] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765740.071459] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765740.277666] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765740.482675] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765740.688594] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765740.894602] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765741.098942] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765741.305079] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765741.510683] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421765741.716334] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765741.921035] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765742.125995] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765742.331327] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765742.537119] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765742.742640] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765742.948986] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765743.153606] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765743.358505] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765743.563539] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765743.768637] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765743.974750] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765744.179914] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765744.384624] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765744.590366] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765744.796688] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765745.001738] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765745.207970] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765745.414038] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765745.619759] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765745.825235] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765746.030035] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765746.235050] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765746.440335] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765746.646218] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765746.851746] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765747.057141] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421765747.262366] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765747.468365] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765747.673469] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765747.879564] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765748.084411] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765748.294455] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.28 ms +[1421765748.499983] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765748.705027] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765748.910423] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765749.115223] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765749.321780] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765749.528404] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765749.733369] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765749.938373] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765750.143617] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765750.349222] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765750.554622] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765750.759926] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765750.966175] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765751.171795] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765751.377038] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765751.582180] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765751.787470] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765751.993121] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765752.198388] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765752.404318] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765752.610325] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765752.817310] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421765753.023230] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.03 ms +[1421765753.228989] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765753.434733] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765753.639966] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765753.846395] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421765754.051641] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765754.257440] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421765754.463749] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765754.669153] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765754.877168] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.06 ms +[1421765755.083012] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765755.289500] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421765755.494964] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765755.701530] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421765755.907325] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765756.112138] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765756.317235] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765756.522482] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765756.727921] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765756.933019] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765757.138245] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765757.344642] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765757.550106] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765757.756778] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765757.962071] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765758.168040] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421765758.374543] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765758.580069] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765758.785246] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765758.990241] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765759.195220] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765759.401651] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765759.606977] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765759.813098] 1156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765760.021904] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.42 ms +[1421765760.227187] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765760.431997] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765760.638103] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765760.847966] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.99 ms +[1421765761.062517] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421765761.279455] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421765761.495737] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.2 ms +[1421765761.759635] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.9 ms +[1421765762.033563] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.1 ms +[1421765762.262886] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.3 ms +[1421765762.492456] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421765762.722182] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421765763.008892] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.7 ms +[1421765763.232284] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421765763.519190] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.9 ms +[1421765763.746002] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421765764.024425] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.4 ms +[1421765764.306011] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.7 ms +[1421765764.530979] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421765764.736475] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765764.943016] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421765765.151249] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.93 ms +[1421765765.361160] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.87 ms +[1421765765.572177] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.78 ms +[1421765765.786392] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421765766.008050] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421765766.272406] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.5 ms +[1421765766.500116] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421765766.732019] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.4 ms +[1421765766.960738] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421765767.196888] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.2 ms +[1421765767.426385] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.4 ms +[1421765767.654723] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421765767.882073] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421765768.107859] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765768.391178] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.4 ms +[1421765768.677239] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.6 ms +[1421765768.905795] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421765769.180157] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.6 ms +[1421765769.385183] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765769.590480] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765769.802967] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.26 ms +[1421765770.012942] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.23 ms +[1421765770.226969] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.3 ms +[1421765770.471803] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=40.9 ms +[1421765770.688382] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421765770.913320] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421765771.136206] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765771.362376] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421765771.586603] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421765771.811864] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421765772.043064] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.5 ms +[1421765772.260384] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421765772.486060] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421765772.776860] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=86.5 ms +[1421765773.001620] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421765773.231000] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.3 ms +[1421765773.456649] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421765773.680062] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421765773.886468] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765774.091549] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765774.296823] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765774.502585] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765774.710179] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.61 ms +[1421765774.938624] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421765775.173034] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.5 ms +[1421765775.389291] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.0 ms +[1421765775.608760] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421765775.834846] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421765776.053124] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421765776.335113] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421765776.621616] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.6 ms +[1421765776.843689] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421765777.074034] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.6 ms +[1421765777.289155] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421765777.518449] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421765777.745757] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421765777.977322] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.2 ms +[1421765778.211183] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.3 ms +[1421765778.499950] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.6 ms +[1421765778.721378] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421765778.927064] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765779.132226] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765779.338832] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421765779.548944] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.62 ms +[1421765779.762682] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.77 ms +[1421765779.968276] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765780.173427] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765780.378932] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765780.585262] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765780.790743] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765780.996356] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765781.201209] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765781.407334] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765781.614037] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765781.819396] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765782.024021] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765782.228904] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765782.433975] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765782.639325] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765782.845621] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765783.050498] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765783.255376] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765783.460698] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765783.667150] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765783.872830] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765784.077584] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421765784.282778] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765784.488507] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765784.694396] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765784.900184] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765785.105331] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765785.314944] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.86 ms +[1421765785.521431] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765785.727106] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765785.933932] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765786.139956] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765786.345722] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421765786.552687] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421765786.759750] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421765786.965563] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765787.171847] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765787.377196] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765787.582427] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765787.787919] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765787.994812] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421765788.201599] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421765788.406803] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765788.613834] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421765788.819817] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421765789.024975] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765789.230253] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765789.436504] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421765789.642048] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765789.847257] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765790.052249] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765790.257498] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765790.463616] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765790.668914] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765790.875181] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.94 ms +[1421765791.080606] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765791.286734] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765791.491522] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765791.699075] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.68 ms +[1421765791.904395] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765792.109087] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765792.316507] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.57 ms +[1421765792.523407] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421765792.730350] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765792.935916] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765793.141958] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.98 ms +[1421765793.347121] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765793.552583] 1021 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765793.757770] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765793.963510] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765794.169529] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765794.374815] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765794.581802] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421765794.787310] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765794.992651] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765795.197903] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765795.403019] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765795.608340] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765795.813850] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765796.018793] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765796.223723] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765796.428737] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765796.633535] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765796.839741] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765797.044605] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765797.249895] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765797.455246] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765797.660334] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765797.865451] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765798.071142] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765798.276314] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421765798.481696] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765798.687002] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765798.892104] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765799.097434] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765799.302072] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765799.507373] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765799.713272] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421765799.918392] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765800.124684] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421765800.329898] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765800.535795] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765800.741738] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765800.948310] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421765801.153817] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765801.358871] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765801.565175] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765801.770807] 1410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765801.975705] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765802.181989] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765802.388037] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765802.594604] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765802.800247] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765803.005337] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765803.210516] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765803.415649] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765803.620734] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765803.826863] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765804.031752] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765804.237115] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765804.443474] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765804.648984] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765804.855212] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765805.060585] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765805.267302] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421765805.472681] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765805.677852] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765805.883342] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765806.089248] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765806.294116] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765806.500299] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765806.706370] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765806.911707] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765807.116315] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765807.321454] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765807.528253] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.82 ms +[1421765807.733940] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765807.938774] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765808.143673] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765808.349112] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765808.554875] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765808.760377] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765808.966116] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765809.171024] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765809.376198] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765809.582491] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421765809.787856] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765809.993176] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765810.198687] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765810.403574] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765810.609619] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765810.814898] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765811.023407] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.58 ms +[1421765811.230321] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.07 ms +[1421765811.435977] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765811.642499] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421765811.847569] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765812.053325] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765812.258510] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765812.463502] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765812.670450] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421765812.876126] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765813.080936] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765813.286287] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765813.491697] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765813.697758] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765813.903449] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765814.109569] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421765814.316035] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765814.521715] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765814.727116] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765814.933202] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765815.140369] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765815.346623] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765815.552982] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421765815.758891] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765815.964930] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765816.171409] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765816.376570] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765816.582027] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765816.787780] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421765816.992743] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765817.201102] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765817.406224] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765817.611476] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765817.817278] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765818.022016] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765818.228173] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765818.433105] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765818.638205] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765818.843935] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765819.049227] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765819.254508] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421765819.459936] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765819.665854] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765819.871697] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765820.077744] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765820.284262] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421765820.489786] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765820.695576] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421765820.900636] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765821.105366] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765821.310653] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765821.515988] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765821.721016] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765821.926791] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765822.133078] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421765822.339428] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421765822.545618] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421765822.751520] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765822.956537] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765823.161844] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765823.367538] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421765823.573168] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765823.778928] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765823.984331] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765824.189935] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421765824.396783] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.85 ms +[1421765824.604245] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.13 ms +[1421765824.817262] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.70 ms +[1421765825.033203] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421765825.287587] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=50.9 ms +[1421765825.558522] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=67.1 ms +[1421765825.778577] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421765826.060086] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.8 ms +[1421765826.292245] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.4 ms +[1421765826.516072] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421765826.743695] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421765826.970618] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421765827.189581] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421765827.418891] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.4 ms +[1421765827.636946] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.1 ms +[1421765827.842109] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765828.046613] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765828.252481] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.98 ms +[1421765828.467153] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421765828.676253] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.30 ms +[1421765828.886360] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.19 ms +[1421765829.127685] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=37.5 ms +[1421765829.346374] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421765829.568120] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421765829.845653] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.2 ms +[1421765830.073347] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421765830.342479] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=65.3 ms +[1421765830.571275] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421765830.797313] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421765831.023757] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421765831.247500] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421765831.472538] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421765831.694123] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421765831.977659] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.0 ms +[1421765832.259932] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421765832.466177] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765832.671417] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765832.876913] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765833.084913] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.27 ms +[1421765833.298303] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.34 ms +[1421765833.516448] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421765833.731695] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421765833.954328] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421765834.177804] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421765834.399624] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421765834.622242] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421765834.843097] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421765835.125945] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.7 ms +[1421765835.353876] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421765835.577780] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421765835.783357] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765835.988509] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765836.193609] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765836.399811] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765836.619105] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421765836.832901] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.61 ms +[1421765837.047399] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421765837.302596] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.1 ms +[1421765837.526295] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421765837.749261] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421765837.954439] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765838.160782] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765838.366039] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765838.574174] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765838.799231] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421765839.011126] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.98 ms +[1421765839.229035] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421765839.445969] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421765839.668966] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421765839.897002] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421765840.121448] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421765840.410130] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.0 ms +[1421765840.634972] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421765840.840075] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765841.061272] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421765841.279158] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421765841.563541] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.8 ms +[1421765841.792513] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421765842.018048] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421765842.240725] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765842.469126] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421765842.698988] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421765842.904330] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765843.108985] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765843.314435] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765843.528216] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.94 ms +[1421765843.737571] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.88 ms +[1421765843.952799] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421765844.165194] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.22 ms +[1421765844.385418] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421765844.605817] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421765844.831192] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421765845.052932] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421765845.277150] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421765845.503291] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421765845.787982] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.3 ms +[1421765846.012053] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421765846.236243] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421765846.520351] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.1 ms +[1421765846.743839] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421765846.973535] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.3 ms +[1421765847.200548] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421765847.414232] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.33 ms +[1421765847.619627] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765847.824514] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765848.029246] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765848.237790] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.65 ms +[1421765848.451669] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.36 ms +[1421765848.668350] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.2 ms +[1421765848.927932] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=55.3 ms +[1421765849.204717] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.9 ms +[1421765849.430881] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421765849.662790] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.6 ms +[1421765849.885673] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421765850.111394] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421765850.337374] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421765850.562988] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421765850.848323] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.0 ms +[1421765851.132839] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.5 ms +[1421765851.338082] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765851.542865] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765851.749402] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765851.955942] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765852.161355] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765852.366382] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765852.571556] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765852.777935] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765852.983691] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765853.189189] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765853.394458] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765853.600898] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765853.806717] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765854.012412] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765854.218866] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421765854.427001] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.75 ms +[1421765854.638276] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.53 ms +[1421765854.874521] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.9 ms +[1421765855.080454] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765855.286656] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765855.491926] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765855.699195] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.06 ms +[1421765855.908936] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.43 ms +[1421765856.143819] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.0 ms +[1421765856.363356] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421765856.624186] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.5 ms +[1421765856.849155] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421765857.131787] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.8 ms +[1421765857.358445] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421765857.575249] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421765857.797777] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421765858.003861] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421765858.231688] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421765858.457786] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421765858.687403] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.4 ms +[1421765858.917585] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421765859.134621] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421765859.359828] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421765859.584526] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421765859.790011] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765859.995583] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421765860.200738] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765860.409717] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.17 ms +[1421765860.621383] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.37 ms +[1421765860.826762] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765861.031570] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765861.237740] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765861.442944] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765861.649586] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421765861.855613] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421765862.061330] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421765862.266752] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765862.472128] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765862.677483] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765862.882723] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765863.087474] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765863.293698] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765863.500104] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765863.706374] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765863.912717] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765864.118234] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765864.323662] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765864.529825] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765864.735467] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765864.940849] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765865.145720] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765865.352054] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765865.557150] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765865.762306] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765865.967553] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765866.172836] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765866.378265] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765866.584365] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765866.789974] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765866.995227] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765867.200759] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765867.406239] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765867.612413] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765867.818070] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765868.022656] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765868.228666] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421765868.433498] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765868.639079] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765868.845676] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765869.050695] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765869.255657] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765869.461100] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765869.667795] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421765869.873902] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421765870.078654] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765870.283593] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765870.488960] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765870.694371] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765870.899788] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765871.104510] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765871.309280] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765871.514244] 555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765871.720477] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765871.925969] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765872.130987] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765872.336279] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765872.541845] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765872.748487] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421765872.955188] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765873.161028] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765873.366350] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765873.571773] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765873.777302] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765873.982944] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765874.188476] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765874.393839] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765874.600967] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421765874.808569] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421765875.013106] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765875.218588] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765875.424848] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765875.630579] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765875.836403] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765876.042400] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421765876.247629] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765876.453167] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765876.659807] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421765876.865549] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765877.071385] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765877.276790] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765877.482230] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765877.687933] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765877.894292] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765878.099459] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765878.304861] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765878.510806] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765878.717151] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765878.922384] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765879.128809] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765879.334377] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765879.539682] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765879.746629] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421765879.952516] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421765880.157651] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765880.362742] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765880.568925] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765880.774616] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765880.980010] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765881.185390] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765881.392335] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421765881.598824] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765881.804324] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765882.009231] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765882.214511] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765882.420275] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765882.626603] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765882.832831] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421765883.037761] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765883.243017] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765883.448827] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765883.654818] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765883.860539] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765884.066956] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421765884.272880] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421765884.478454] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765884.684150] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765884.889672] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765885.094569] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765885.299521] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421765885.504573] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765885.710253] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765885.915825] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765886.120960] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765886.325911] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765886.531036] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765886.736590] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421765886.942710] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421765887.147870] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765887.353833] 1417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421765887.560298] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765887.765720] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765887.971527] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765888.176994] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765888.383112] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765888.588706] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765888.793500] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765888.998831] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765889.204515] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765889.409751] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765889.614868] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765889.820295] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421765890.025184] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765890.230347] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765890.435513] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765890.640744] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765890.846121] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765891.050813] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765891.255798] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765891.461248] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765891.666753] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765891.873285] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765892.078190] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765892.283510] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765892.489903] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765892.696170] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421765892.902749] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765893.108210] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765893.313413] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765893.519479] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765893.726249] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765893.931461] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765894.136587] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765894.341758] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765894.547409] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765894.753373] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765894.958884] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765895.164318] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765895.369602] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765895.574973] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765895.780336] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765895.986717] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421765896.192540] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765896.397743] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765896.604332] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421765896.809738] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765897.015846] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765897.220953] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765897.426165] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765897.631746] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765897.837872] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765898.042960] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765898.249679] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.06 ms +[1421765898.454943] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765898.660406] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765898.865562] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765899.070718] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765899.275633] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765899.480810] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765899.686475] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765899.892424] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765900.097397] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765900.302483] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765900.508060] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765900.714949] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421765900.919968] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765901.125656] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421765901.331084] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765901.537379] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765901.743169] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765901.950046] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765902.155556] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765902.361148] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765902.567648] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765902.773653] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765902.979191] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765903.185519] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765903.391780] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765903.597367] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765903.802976] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765904.008226] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765904.213637] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765904.418992] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765904.625194] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765904.830326] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765905.034947] 30 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765905.240418] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765905.446019] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765905.651723] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765905.857392] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765906.062328] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765906.268048] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421765906.474672] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765906.680509] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765906.886103] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421765907.091150] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765907.297280] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421765907.502674] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765907.708528] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765907.914103] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765908.120051] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765908.325340] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765908.531344] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765908.736911] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765908.942171] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765909.147166] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765909.352100] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765909.557343] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765909.764174] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421765909.969822] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421765910.176032] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765910.381696] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765910.587685] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765910.792998] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765910.998416] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765911.204919] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421765911.410199] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421765911.615797] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421765911.820874] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765912.025649] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765912.230476] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765912.435478] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765912.641101] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765912.846411] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765913.050987] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765913.256220] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765913.462271] 1482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765913.668600] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765913.873894] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765914.080019] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765914.285410] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765914.491162] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765914.697138] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765914.903777] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765915.109164] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765915.314900] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765915.521511] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765915.727442] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765915.932969] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765916.138489] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765916.343853] 1148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765916.550343] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421765916.755351] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765916.961833] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765917.167136] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765917.373299] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765917.578864] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765917.784248] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765917.989924] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765918.195391] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765918.401004] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765918.606824] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765918.813559] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765919.018200] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765919.223458] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765919.428948] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765919.634595] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765919.839576] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765920.045655] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765920.251797] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765920.458488] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421765920.664859] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765920.870105] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765921.075001] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765921.280107] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765921.485173] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765921.691586] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765921.898085] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765922.102728] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765922.308389] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765922.514653] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421765922.719898] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765922.924944] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765923.130465] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765923.336085] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421765923.542623] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421765923.748625] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765923.953859] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765924.159114] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765924.364799] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765924.570497] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765924.775666] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765924.982080] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421765925.187513] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765925.394159] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765925.600764] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765925.806580] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765926.011622] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765926.216800] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765926.424988] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.70 ms +[1421765926.634736] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.68 ms +[1421765926.849557] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421765927.054248] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765927.259407] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765927.464773] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765927.671294] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765927.877752] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765928.083225] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765928.288054] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765928.494577] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765928.700715] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765928.906110] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765929.112540] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765929.318703] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765929.523531] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765929.728898] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765929.935421] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421765930.141979] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765930.347130] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765930.553750] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765930.759480] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765930.965213] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765931.170471] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765931.376584] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765931.581869] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765931.788484] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765931.994418] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765932.199476] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765932.404418] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765932.609631] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765932.814503] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765933.018913] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765933.223712] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765933.428527] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765933.634090] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765933.839082] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765934.043667] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765934.249582] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765934.454813] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765934.660073] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765934.865646] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765935.070661] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765935.276811] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765935.483000] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421765935.688619] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765935.894646] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765936.100275] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765936.306975] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.67 ms +[1421765936.512762] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765936.718444] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765936.923777] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765937.129033] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765937.334211] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765937.539792] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765937.745519] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765937.951460] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765938.157837] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765938.362926] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765938.568384] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765938.774452] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765938.980055] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765939.186073] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765939.391276] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765939.598346] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421765939.805421] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421765940.010356] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765940.216692] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421765940.423086] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765940.628720] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765940.833999] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765941.038835] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765941.244846] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421765941.450140] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765941.655733] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765941.860777] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765942.066819] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765942.272061] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765942.477313] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765942.683090] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765942.889807] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765943.094742] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765943.300143] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765943.506585] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421765943.711983] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765943.916812] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421765944.122756] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765944.328126] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765944.535428] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421765944.740835] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765944.946183] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765945.152292] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765945.357103] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765945.561813] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765945.768169] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765945.973595] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765946.178507] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765946.383679] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765946.589575] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765946.796435] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421765947.003909] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.15 ms +[1421765947.261615] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=53.7 ms +[1421765947.466816] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765947.672251] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765947.877834] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765948.084102] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.87 ms +[1421765948.290228] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765948.495679] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765948.701434] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765948.906534] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765949.111433] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765949.316695] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765949.522089] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765949.726607] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765949.932153] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421765950.137515] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421765950.343001] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765950.548488] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765950.754030] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765950.959410] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765951.168652] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.98 ms +[1421765951.373709] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765951.578809] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765951.783620] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765951.989820] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765952.195176] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765952.400857] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765952.606455] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765952.812878] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765953.018013] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765953.224093] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765953.429244] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765953.635467] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765953.840340] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765954.044966] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765954.250160] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765954.455556] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421765954.661939] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765954.867989] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421765955.072682] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765955.277654] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765955.484293] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421765955.689714] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765955.894869] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765956.100884] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765956.306046] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765956.511177] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765956.715961] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765956.921193] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765957.126433] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765957.332071] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765957.537277] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765957.742227] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765957.947976] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765958.153388] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421765958.358552] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765958.564177] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765958.769810] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765958.975493] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765959.181998] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421765959.387120] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765959.592220] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765959.799050] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421765960.005579] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421765960.211098] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765960.416532] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765960.622005] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765960.827027] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765961.031563] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421765961.236742] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765961.443069] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421765961.649214] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765961.854686] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765962.059496] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765962.264792] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765962.471203] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421765962.676573] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765962.882296] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765963.087962] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765963.293391] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765963.499895] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765963.705050] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765963.910351] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421765964.115310] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765964.321656] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765964.529314] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.19 ms +[1421765964.734926] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765964.941134] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765965.147189] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.90 ms +[1421765965.352474] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765965.557980] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421765965.763556] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765965.969150] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421765966.174505] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765966.379997] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421765966.585572] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765966.791176] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765966.996916] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421765967.202993] 1566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421765967.409195] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765967.615670] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765967.820963] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421765968.025642] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765968.230872] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765968.437166] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421765968.643236] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765968.848997] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765969.053672] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765969.258898] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765969.464185] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765969.669745] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765969.875634] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421765970.080905] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421765970.285834] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765970.491114] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421765970.697088] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421765970.902826] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421765971.107474] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421765971.312710] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421765971.518898] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765971.724607] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421765971.930030] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765972.135264] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765972.340385] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765972.547024] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421765972.775152] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421765973.014207] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.0 ms +[1421765973.232935] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421765973.496683] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.9 ms +[1421765973.720567] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421765973.948352] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421765974.236103] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.6 ms +[1421765974.457316] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421765974.694046] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.0 ms +[1421765974.928997] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.9 ms +[1421765975.135146] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421765975.340061] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421765975.547473] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.57 ms +[1421765975.755450] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.99 ms +[1421765975.967630] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.58 ms +[1421765976.211493] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.6 ms +[1421765976.464905] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=49.3 ms +[1421765976.683820] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421765976.903604] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421765977.124499] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421765977.410168] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.8 ms +[1421765977.634286] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421765977.852948] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421765978.081621] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421765978.311314] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421765978.533820] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421765978.762009] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421765979.042929] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.7 ms +[1421765979.270299] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421765979.475543] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765979.681772] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421765979.887565] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765980.093206] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421765980.298525] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765980.503958] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765980.710398] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421765980.916679] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421765981.122686] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765981.328960] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421765981.537786] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.02 ms +[1421765981.743444] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765981.949871] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421765982.155326] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421765982.374447] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421765982.586056] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.67 ms +[1421765982.829667] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.0 ms +[1421765983.048699] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421765983.272257] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421765983.509907] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.4 ms +[1421765983.715247] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765983.920907] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421765984.126640] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421765984.332259] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421765984.538056] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421765984.744655] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421765984.951384] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765985.156786] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421765985.361953] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765985.568657] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765985.774636] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765985.980471] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765986.185697] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421765986.390891] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765986.596597] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765986.802257] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765987.007666] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421765987.213034] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765987.418080] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765987.623686] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765987.829227] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765988.034182] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765988.239202] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421765988.445895] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765988.651538] 1392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421765988.856726] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765989.062778] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421765989.268785] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421765989.474888] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421765989.680060] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765989.886647] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421765990.091549] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421765990.296841] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765990.502283] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421765990.707638] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421765990.912982] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765991.117802] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421765991.324117] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421765991.530324] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421765991.736620] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421765991.941910] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765992.148218] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765992.354227] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421765992.559859] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421765992.765555] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421765992.970668] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421765993.177039] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421765993.383503] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421765993.588283] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421765993.793598] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421765993.999226] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421765994.204688] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765994.409756] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421765994.616399] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421765994.821804] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421765995.026953] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421765995.232113] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421765995.437797] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421765995.643591] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765995.849404] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421765996.054500] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765996.259852] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421765996.465392] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421765996.672560] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421765996.878083] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765997.083011] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421765997.288693] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421765997.495129] 1503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421765997.700403] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421765997.905286] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765998.111275] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421765998.317457] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421765998.523126] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765998.729010] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421765998.934758] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421765999.141401] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421765999.348407] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421765999.553961] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421765999.760354] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421765999.968793] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.30 ms +[1421766000.201125] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.9 ms +[1421766000.416333] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421766000.633641] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421766000.902030] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=64.3 ms +[1421766001.129805] 841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421766001.359370] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421766001.587262] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421766001.809391] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421766002.030808] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421766002.237442] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766002.442831] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766002.649584] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766002.854869] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766003.059755] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766003.266759] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.01 ms +[1421766003.490740] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421766003.706019] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421766003.924813] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421766004.143393] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.1 ms +[1421766004.367858] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421766004.593180] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421766004.818605] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421766005.037094] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421766005.242368] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766005.448281] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421766005.653673] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766005.859297] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766006.065228] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421766006.270304] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766006.475495] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766006.681664] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766006.886631] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766007.092116] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766007.297396] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421766007.503110] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766007.708475] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766007.927112] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421766008.138234] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.16 ms +[1421766008.376855] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.9 ms +[1421766008.597755] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421766008.865627] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=63.7 ms +[1421766009.089948] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421766009.315851] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421766009.543700] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421766009.749573] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421766009.955242] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766010.162810] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.15 ms +[1421766010.372847] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.81 ms +[1421766010.587304] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.3 ms +[1421766010.830949] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.4 ms +[1421766011.052353] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421766011.273086] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421766011.495958] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421766011.722601] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421766011.949160] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421766012.154699] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766012.379458] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421766012.600402] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421766012.809396] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.60 ms +[1421766013.034210] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421766013.267272] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.9 ms +[1421766013.485465] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421766013.718622] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.3 ms +[1421766013.948093] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421766014.173871] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421766014.379145] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766014.584648] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766014.792802] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.77 ms +[1421766015.010506] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421766015.223785] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.64 ms +[1421766015.466517] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.1 ms +[1421766015.686062] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421766015.893580] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.21 ms +[1421766016.099493] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766016.304425] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766016.509669] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766016.715988] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421766016.921699] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766017.127740] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766017.333253] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766017.538931] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766017.744189] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766017.950479] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766018.157037] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766018.362203] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766018.568736] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421766018.774024] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766018.980375] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766019.187104] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766019.392279] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766019.597390] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766019.802881] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766020.008050] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766020.214016] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766020.420391] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766020.626644] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766020.832044] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766021.037246] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766021.242179] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766021.448397] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766021.654707] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421766021.860114] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766022.064960] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766022.271256] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766022.477634] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766022.682931] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766022.888565] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766023.093252] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766023.299325] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766023.506167] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766023.711735] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766023.916947] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766024.122257] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766024.327756] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766024.532881] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766024.738509] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766024.944750] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766025.150143] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766025.355347] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766025.560806] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766025.766175] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766025.971649] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766026.176767] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766026.383271] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766026.588792] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766026.795404] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421766027.000756] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766027.206099] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766027.412427] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766027.617356] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766027.823659] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766028.029728] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766028.235459] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766028.442426] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421766028.648163] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766028.853497] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766029.058454] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421766029.263976] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766029.469353] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766029.675919] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766029.882810] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766030.088410] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421766030.293482] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766030.499815] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421766030.705341] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766030.910115] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766031.114839] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766031.320254] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421766031.525594] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766031.731096] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766031.935990] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766032.141212] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766032.346575] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766032.552362] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766032.758140] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766032.964656] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766033.170028] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766033.375374] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766033.580858] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766033.787224] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766033.992123] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766034.197305] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766034.402600] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766034.609296] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766034.815164] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766035.020596] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766035.225724] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766035.431793] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766035.636819] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766035.842132] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766036.047328] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766036.252427] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766036.457707] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766036.662846] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766036.868021] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766037.073716] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766037.279422] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766037.484879] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766037.691217] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766037.896517] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766038.102706] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766038.308054] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766038.513436] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766038.718164] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766038.924658] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766039.131103] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766039.336712] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766039.542103] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766049.951693] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421766050.157555] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766050.362524] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766050.568443] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766050.774565] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766050.980017] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766051.185450] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766051.391765] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766051.598170] 1503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766051.803387] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766052.008349] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766052.213346] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766052.419797] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766052.625092] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766052.830609] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766053.035770] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766053.241769] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766053.447431] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421766053.653136] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766053.858818] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766054.064112] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766054.270239] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766054.475843] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766054.680990] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421766054.887260] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766055.092599] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766055.297690] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766055.502987] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766055.709523] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766055.916003] 1955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766056.121301] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766056.326613] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766056.532393] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766056.738492] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421766056.944408] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421766057.149537] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766057.355915] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766057.561301] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766057.766359] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766057.971931] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766058.177289] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766058.382849] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766058.587881] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766058.793404] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766058.998729] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766059.204130] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766059.409009] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766059.614200] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766059.819590] 30 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766060.025242] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766060.230609] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766060.436243] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766060.643193] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.79 ms +[1421766060.848846] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766061.054068] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766061.259008] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766061.557165] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=94.0 ms +[1421766062.037901] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=276 ms +[1421766062.243590] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766062.448714] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766062.653841] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766062.865151] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.15 ms +[1421766063.077564] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.72 ms +[1421766063.286582] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.21 ms +[1421766063.492209] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766063.702217] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.38 ms +[1421766063.960433] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=53.8 ms +[1421766064.166208] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766064.371735] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766064.577450] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766064.789557] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.80 ms +[1421766064.994957] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766065.200690] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766065.405963] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766065.611792] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421766065.818530] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421766066.023548] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766066.228802] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766066.434067] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766066.639325] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766066.845021] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766067.050011] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766067.255127] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766067.460732] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766067.666674] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421766067.872135] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766068.077038] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766068.282312] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766068.487139] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766068.691768] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766068.896615] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766069.101347] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766069.307509] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766069.513863] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766069.719313] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766069.924966] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.85 ms +[1421766070.130761] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421766070.335809] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766070.540743] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766070.745896] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766070.952104] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766071.157507] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766071.362875] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766071.568648] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766071.775422] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766071.981387] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766072.186990] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766072.392819] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766072.598055] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766072.804991] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766073.009742] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766073.214446] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766073.419722] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766073.625818] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766073.831052] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766074.035924] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766074.240954] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421766074.446207] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766074.664053] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421766074.869551] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766075.074552] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766075.280061] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421766075.486635] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766075.692047] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766075.897661] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766076.102606] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766076.307578] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766076.513464] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766076.719101] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766076.924942] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766077.130746] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421766077.336628] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766077.541937] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766077.748295] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766077.954512] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766078.161327] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766078.366772] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766078.572392] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766078.777991] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766078.983690] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766079.189181] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766079.394630] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766079.600717] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766079.806685] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766080.012056] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766080.218417] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766080.423805] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766080.629196] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766080.834648] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766081.039258] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766081.245149] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766081.450353] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766081.656687] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766081.862294] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421766082.066808] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766082.271794] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766082.477256] 1156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766082.682503] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766082.887740] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766083.092347] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766083.298588] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766083.504443] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766083.709915] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766083.916191] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766084.122420] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421766084.328317] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766084.534382] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766084.740981] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766084.947315] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766085.152938] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766085.358172] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766085.563991] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421766085.770665] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766085.976680] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766086.182906] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766086.388981] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766086.594512] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766086.799359] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766087.004308] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766087.210062] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766087.418173] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766087.624602] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766087.831059] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421766088.036630] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421766088.242088] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766088.447574] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766088.653967] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766088.859468] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421766089.064880] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421766089.270416] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766089.475915] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766089.682114] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766089.888184] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766090.093386] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766090.298436] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766090.504350] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421766090.710045] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766090.915478] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766091.120112] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766091.326229] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766091.531734] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766091.736855] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766091.942543] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.07 ms +[1421766092.148151] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421766092.353500] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421766092.558794] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766092.763896] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766092.968676] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766093.174135] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766093.378885] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766093.584276] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421766093.789476] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766093.995914] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766094.201198] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766094.406639] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766094.612692] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766094.819355] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421766095.025406] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766095.230398] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766095.436546] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421766095.642474] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766095.847793] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766096.053397] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766096.258094] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421766096.463726] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766096.670742] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766096.877257] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421766097.082406] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766097.288600] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766097.493670] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766097.699031] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766097.904321] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766098.110328] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766098.315686] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421766098.520900] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766098.726487] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766098.932569] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766099.137704] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766099.342826] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766099.547960] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766099.754150] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421766099.960145] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766100.165809] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766100.372455] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766100.578295] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766100.783764] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766100.989032] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766101.194585] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766101.399761] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766101.605052] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766101.810690] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766102.016085] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421766102.222249] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766102.428765] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766102.634936] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766102.841834] 1880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421766103.048164] 1888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766103.253502] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766103.459806] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766103.665041] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766103.870558] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766104.075536] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766104.280471] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766104.485888] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766104.691384] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766104.898024] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766105.102549] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766105.307348] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766105.512716] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766105.718524] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766105.924034] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766106.129368] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766106.334387] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766106.540144] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.88 ms +[1421766106.746638] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766106.952730] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766107.158764] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766107.364916] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766107.570215] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766107.776430] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766107.982224] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766108.187793] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766108.393303] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766108.599223] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766108.804635] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766109.009044] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766109.213967] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766109.420314] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766109.625194] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766109.831116] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421766110.035452] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766110.240552] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766110.445540] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766110.651376] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766110.857269] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421766111.062038] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766111.266684] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766111.471758] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766111.677211] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766111.883362] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766112.087878] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766112.293885] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766112.500075] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766112.705221] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766112.910274] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766113.114957] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766113.320137] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766113.526362] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766113.732859] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421766113.942637] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.47 ms +[1421766114.173673] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.9 ms +[1421766114.391578] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421766114.611701] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421766114.817742] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766115.023376] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766115.228422] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766115.447706] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.2 ms +[1421766115.659463] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.70 ms +[1421766115.905952] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.7 ms +[1421766116.123159] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421766116.395943] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=68.7 ms +[1421766116.621795] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421766116.909238] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.8 ms +[1421766117.140607] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.4 ms +[1421766117.367814] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421766117.589361] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421766117.795074] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766118.079146] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.9 ms +[1421766118.306313] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421766118.524255] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421766118.744416] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421766119.023982] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.4 ms +[1421766119.311077] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.2 ms +[1421766119.515981] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766119.720570] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766119.927283] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.99 ms +[1421766120.151427] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421766120.356492] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766120.561481] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766120.766615] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766120.972005] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766121.177723] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766121.384034] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766121.589778] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766121.796071] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766122.001367] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766122.206569] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766122.412642] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766122.619013] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766122.825784] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766123.030953] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766123.236896] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766123.441903] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766123.647076] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766123.851908] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766124.056662] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766124.262414] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421766124.467769] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766124.674626] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421766124.879775] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766125.084478] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766125.289069] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766125.494156] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766125.699657] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766125.904913] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766126.109599] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766126.315956] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421766126.521761] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421766126.727484] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766126.932945] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766127.138882] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766127.343540] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766127.549286] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766127.755691] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766127.960951] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766128.166511] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.87 ms +[1421766128.375264] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.84 ms +[1421766128.581466] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766128.787132] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766128.992118] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766129.197851] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421766129.402658] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766129.607564] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421766129.812968] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766130.018515] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766130.223785] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766130.428997] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766130.634333] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766130.840956] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421766131.046054] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766131.251649] 1330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766131.457278] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766131.662825] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766131.868362] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766132.074430] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421766132.279956] 1072 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766132.485726] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766132.692680] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766132.898295] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766133.104073] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421766133.309098] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766133.514676] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766133.719966] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766133.925155] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766134.130394] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766134.335747] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766134.541614] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766134.746639] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766134.952031] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421766135.158623] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766135.363643] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766135.568671] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766135.773974] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766135.979868] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766136.184984] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766136.390240] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766136.595326] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766136.800833] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421766137.006439] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766137.212140] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766137.418687] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766137.624244] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766137.830360] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766138.035776] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766138.240781] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766138.447076] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766138.651944] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766138.857380] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766139.063814] 1612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421766139.268767] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766139.473811] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766139.679436] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766139.885019] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766140.089792] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766140.295161] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766140.500968] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766140.705890] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766140.910938] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766141.116925] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766141.322074] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.01 ms +[1421766141.528018] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421766141.733660] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766141.940516] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766142.145705] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766142.350879] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766142.556696] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766142.762655] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766142.968997] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421766143.174618] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766143.380797] 1888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766143.586030] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766143.792248] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421766143.997986] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766144.204540] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766144.410838] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766144.616250] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766144.821538] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766145.026464] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766145.231818] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766145.437350] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766145.643773] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766145.850800] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766146.056363] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766146.261933] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766146.467639] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766146.673177] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766146.879677] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766147.084341] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766147.289340] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766147.494782] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766147.700551] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766147.906565] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421766148.111905] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766148.317955] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766148.524303] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766148.729663] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766148.935420] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766149.141639] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766149.347112] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766149.552565] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766149.757634] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766149.964104] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421766150.170527] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766150.376778] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766150.583214] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766150.789379] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766150.995911] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766151.202652] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766151.407557] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766151.612663] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766151.817836] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766152.022720] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766152.229119] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766152.436128] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421766152.642196] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766152.849566] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.77 ms +[1421766153.055382] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766153.261859] 1720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421766153.468361] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766153.673779] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766153.879324] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766154.084486] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766154.289658] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766154.495960] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766154.701432] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766154.907046] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766155.112375] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766155.318573] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766155.525182] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421766155.731921] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421766155.937759] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766156.143161] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766156.348563] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766156.554287] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766156.760028] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766156.965278] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766157.170421] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766157.376095] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766157.581102] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766157.786436] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766157.991269] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766158.196159] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766158.401555] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766158.608093] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766158.813641] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766159.019013] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766159.224268] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766159.430201] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766159.635485] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766159.841900] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766160.046437] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766160.251597] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766160.458162] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766160.664578] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766160.870776] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766161.075280] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766161.279893] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766161.485179] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766161.691656] 1716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766161.897483] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766162.102370] 161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766162.307800] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766162.513469] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766162.719916] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766162.926958] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766163.132705] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766163.338144] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766163.544852] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766163.750711] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766163.956946] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766164.162749] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766164.367876] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766164.572829] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766164.778056] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766164.983326] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766165.188252] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766165.394308] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421766165.600562] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766165.805627] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766166.010546] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766166.215501] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766166.420488] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766166.626063] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766166.832088] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421766167.037706] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766167.243126] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766167.449201] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766167.654797] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766167.861749] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.99 ms +[1421766168.072108] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.57 ms +[1421766168.285031] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.28 ms +[1421766168.500417] 1392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421766168.721938] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421766168.992180] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=66.1 ms +[1421766169.220819] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421766169.446600] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421766169.730142] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.9 ms +[1421766169.957181] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421766170.182315] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421766170.408263] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421766170.690282] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.4 ms +[1421766170.918261] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421766171.140178] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421766171.345554] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766171.550973] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766171.765578] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421766171.976304] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.21 ms +[1421766172.211394] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.0 ms +[1421766172.427835] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421766172.690750] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=58.6 ms +[1421766172.915391] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421766173.141694] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766173.427947] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.1 ms +[1421766173.711037] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.9 ms +[1421766173.937951] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421766174.162293] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421766174.390077] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421766174.615455] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421766174.839409] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421766175.066202] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421766175.294486] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421766175.522208] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421766175.745656] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421766175.952019] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421766176.157524] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766176.366002] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.14 ms +[1421766176.594514] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421766176.807091] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.12 ms +[1421766177.024180] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421766177.242018] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421766177.511058] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=64.8 ms +[1421766177.791572] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.0 ms +[1421766178.013469] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421766178.238228] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421766178.463564] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421766178.689554] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421766178.894846] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766179.121315] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421766179.404787] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.4 ms +[1421766179.633619] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421766179.864764] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.1 ms +[1421766180.088629] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421766180.294099] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766180.499396] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766180.704795] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766180.910666] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766181.115660] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766181.321841] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421766181.527231] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766181.732236] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766181.937782] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766182.146511] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.63 ms +[1421766182.357524] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.94 ms +[1421766182.572945] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421766182.789498] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421766183.009300] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421766183.236302] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421766183.521667] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.2 ms +[1421766183.745342] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421766184.019300] 1880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.0 ms +[1421766184.225352] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766184.430294] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766184.635712] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766184.841305] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766185.046878] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766185.252436] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766185.458816] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766185.664003] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766185.869298] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766186.075067] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766186.280042] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766186.485569] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766186.691160] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766186.897404] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766187.102344] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766187.309040] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421766187.514995] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766187.720908] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421766187.926773] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766188.132548] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766188.338239] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766188.543985] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766188.761244] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421766188.973137] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.76 ms +[1421766189.214974] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.0 ms +[1421766189.431658] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421766189.650695] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421766189.872384] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.7 ms +[1421766190.077019] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766190.282148] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766190.488157] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766190.697255] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.29 ms +[1421766190.909125] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.90 ms +[1421766191.124219] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421766191.339379] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421766191.562163] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421766191.844064] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.6 ms +[1421766192.064633] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421766192.349490] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.5 ms +[1421766192.573266] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421766192.797866] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421766193.027566] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.4 ms +[1421766193.249029] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421766193.475423] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421766193.695291] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421766193.928464] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.7 ms +[1421766194.152863] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421766194.434587] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.7 ms +[1421766194.640393] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766194.847055] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421766195.052959] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766195.260588] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.90 ms +[1421766195.472343] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.93 ms +[1421766195.696207] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421766195.907821] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.35 ms +[1421766196.125224] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421766196.391635] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.4 ms +[1421766196.668516] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.5 ms +[1421766196.957691] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.9 ms +[1421766197.240388] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.5 ms +[1421766197.469687] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.2 ms +[1421766197.695690] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421766197.917160] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421766198.146223] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421766198.351867] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766198.557568] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766198.762573] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766198.968281] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766199.173337] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766199.379474] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766199.585187] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766199.792460] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.10 ms +[1421766200.019269] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421766200.234618] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421766200.441124] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766200.646521] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766200.851976] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766201.057727] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766201.263151] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766201.468525] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766201.674842] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766201.881014] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766202.085995] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766202.291207] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766202.497593] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766202.703620] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421766202.909509] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421766203.114817] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766203.320943] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766203.526257] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766203.731656] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766203.936886] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766204.142495] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766204.347679] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766204.552691] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766204.757609] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766204.964318] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421766205.169684] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766205.375128] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766205.580802] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766205.786494] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766205.991570] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766206.197924] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766206.404137] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766206.609792] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766206.815334] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766207.021548] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766207.226342] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766207.432751] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766207.638161] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766207.844835] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766208.049219] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766208.254424] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766208.459423] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766208.664054] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766208.869436] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766209.074502] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766209.279822] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766209.485249] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766209.690694] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766209.896488] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766210.101445] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766210.307040] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766210.512704] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766210.718610] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766210.925720] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766211.132274] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766211.338116] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766211.543925] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766211.749511] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766211.955362] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766212.161622] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766212.368249] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421766212.575041] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421766212.780454] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766212.987638] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.95 ms +[1421766213.193895] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421766213.399036] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421766213.604257] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766213.810851] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421766214.016258] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421766214.221573] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766214.426967] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766214.632022] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766214.836942] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766215.042598] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766215.248864] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766215.454746] 1529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766215.659688] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766215.864829] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766216.070500] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766216.276712] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766216.483123] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766216.689126] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766216.894364] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766217.099235] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766217.304646] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766217.511116] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766217.716478] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766217.921687] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766218.128133] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766218.334384] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766218.541054] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766218.747661] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766218.953125] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766219.158541] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766219.363898] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766219.569466] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766219.783102] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.16 ms +[1421766219.988960] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421766220.193902] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766220.399643] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766220.604604] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766220.810704] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766221.016519] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766221.221697] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766221.426999] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766221.632585] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766221.838079] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766222.043321] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766222.248542] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766222.454052] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766222.659757] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766222.865006] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766223.069985] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766223.274822] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766223.479879] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766223.684811] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766223.890176] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766224.094799] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766224.300422] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766224.506082] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766224.711881] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766224.917163] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766225.122375] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766225.327672] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766225.534256] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766225.739587] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766225.944794] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766226.150121] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766226.356378] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766226.561664] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766226.767086] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766226.973470] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766227.179107] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766227.384807] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766227.590589] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766227.795929] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766228.001082] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766228.207370] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766228.412735] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766228.618351] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766239.027333] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766239.232381] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766239.437842] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766239.643446] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766239.850005] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421766240.054533] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766240.259643] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766240.466175] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766240.672372] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766240.877951] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766241.083126] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766241.288754] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766241.494140] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766241.699412] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766241.904849] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766242.110736] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766242.315984] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766242.522462] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766242.728153] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766242.933565] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766243.139133] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766243.344641] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766243.551201] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766243.757542] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766243.962857] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766244.167629] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766244.397994] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.1 ms +[1421766244.603395] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766244.809946] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766245.014456] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766245.219471] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766245.424903] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766245.631382] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766245.836721] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766246.041743] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766246.246918] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766246.452921] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766246.657809] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766246.863545] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766247.069644] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766247.275802] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766247.481500] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766247.688502] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766247.894286] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421766248.098801] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766248.304594] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766248.510957] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421766248.716942] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766248.923991] 1716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421766249.129654] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766249.336148] 1541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766249.541542] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766249.746852] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766249.951977] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766250.156927] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766250.372276] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421766250.577831] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766250.783128] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766250.988386] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766251.198040] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.45 ms +[1421766251.403413] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766251.608793] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766251.815514] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766252.021646] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766252.226806] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766252.431608] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766252.636618] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766252.841987] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766253.047428] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766253.252612] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766253.458407] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766253.664963] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766253.870072] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766254.075007] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766254.281204] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766254.488085] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766254.694885] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421766254.900661] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766255.105664] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766255.311183] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766255.516707] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766255.722468] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766255.928044] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766256.132974] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766256.337660] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766256.542713] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766256.747700] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766256.953930] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766257.159293] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766257.364823] 1410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421766257.570267] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766257.775544] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766257.980518] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766258.185261] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766258.390290] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766258.595052] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421766258.799764] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766259.004227] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766259.210686] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766259.417371] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766259.622708] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766259.828965] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421766260.034007] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766260.239102] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766260.444383] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766260.649782] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766260.855179] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766261.059794] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766261.265030] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766261.470167] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766261.679638] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766261.885357] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766262.090305] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766262.295416] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766262.501818] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766262.707745] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766262.913521] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766263.118170] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766263.323115] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766263.528759] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766263.734604] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766263.940124] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766264.145227] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766264.350427] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766264.555803] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766264.761951] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421766264.968879] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421766265.177538] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.58 ms +[1421766265.388108] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.73 ms +[1421766265.602555] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.3 ms +[1421766265.816796] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.77 ms +[1421766266.036115] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421766266.258171] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421766266.539551] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.7 ms +[1421766266.755950] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421766267.037164] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.9 ms +[1421766267.320153] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.2 ms +[1421766267.609360] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.6 ms +[1421766267.831375] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421766268.055980] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421766268.283955] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421766268.508336] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421766268.738385] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421766268.964340] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421766269.169557] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766269.376130] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766269.581881] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766269.787364] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766269.996172] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.91 ms +[1421766270.210538] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.99 ms +[1421766270.415715] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766270.621171] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766270.826253] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766271.031420] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766271.236964] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421766271.442477] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766271.647704] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766271.853240] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766272.058390] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766272.264575] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766272.471208] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766272.676617] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766272.882171] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766273.087203] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766273.292925] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421766273.498368] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766273.704094] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766273.910286] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766274.116820] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421766274.322241] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766274.528911] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766274.735133] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766274.940013] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766275.145220] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766275.350405] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766275.556720] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766275.761841] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766275.967647] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421766276.172568] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766276.377958] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766276.583419] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766276.788113] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766276.993515] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766277.200284] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766277.406679] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766277.612252] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766277.817941] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766278.022815] 296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766278.227813] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766278.434313] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766278.639765] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766278.845219] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766279.050056] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766279.255510] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766279.460709] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766279.666667] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766279.872680] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421766280.077614] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766280.282565] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766280.487926] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766280.692905] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766280.898183] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766281.103576] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766281.309108] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766281.514166] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766281.719315] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766281.925223] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766282.130452] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766282.335958] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766282.540896] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766282.745748] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766282.950692] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766283.156006] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766283.361084] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766283.566435] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766283.771493] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766283.976749] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766284.181766] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766284.387091] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766284.592346] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766284.797189] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766285.003075] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766285.209471] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766285.415977] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766285.622652] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766285.828375] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766286.034478] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766286.239885] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766286.446119] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766286.652588] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766286.858151] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766287.064100] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766287.269331] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766287.475349] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766287.680331] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766287.886535] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766288.091076] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766288.296185] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766288.501116] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766288.707528] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766288.912763] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766289.117467] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766289.322771] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766289.527874] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766289.732919] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766289.938126] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766290.143227] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766290.348635] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766290.554687] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766290.760340] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766290.967086] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766291.172428] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766291.377548] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766291.582762] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766291.789120] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766291.995342] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766292.200727] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766292.405932] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766292.611072] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766292.816625] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766293.021595] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766293.226883] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766293.433356] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421766293.639457] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766293.845964] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766294.051102] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766294.257134] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766294.462260] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766294.667638] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766294.873309] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766295.078357] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766295.283545] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766295.489225] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766295.696246] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766295.902023] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766296.107101] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766296.312624] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766296.518153] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766296.723301] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766296.928785] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766297.134332] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766297.339372] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766297.544423] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766297.749515] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766297.955396] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766298.161224] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766298.367052] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421766298.572989] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766298.778805] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766298.984136] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766299.189351] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766299.394900] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421766299.601594] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766299.806536] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766300.011526] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421766300.216926] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766300.422302] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766300.628768] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421766300.834495] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766301.039494] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766301.245413] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766301.451113] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766301.657903] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766301.863954] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421766302.070160] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766302.274709] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766302.480097] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766302.684570] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766302.889940] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766303.095230] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766303.300229] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766303.505508] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766303.710690] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766303.915583] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766304.120321] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766304.329863] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766304.535680] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766304.741356] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421766304.948175] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766305.153856] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766305.359166] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766305.564517] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766305.770316] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766305.976016] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766306.182769] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421766306.388038] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766306.593282] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766306.798363] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766307.004608] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766307.210845] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766307.416628] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766307.621629] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766307.826500] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766308.031327] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766308.236315] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766308.441798] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421766308.647930] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421766308.854025] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421766309.059015] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766309.264021] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766309.469854] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766309.675320] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766309.881500] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766310.086571] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766310.292128] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766310.497533] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766310.703903] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766310.910230] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766311.115231] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766311.320347] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766311.525645] 1392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766311.731627] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766311.936989] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766312.141594] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766312.347070] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766312.552826] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766312.758707] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766312.964298] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766313.169475] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766313.375938] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766313.581690] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766313.788563] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766313.994525] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766314.199112] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766314.405421] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766314.610831] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766314.816080] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766315.022157] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766315.227292] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766315.433043] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766315.638363] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766315.844072] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766316.050573] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.69 ms +[1421766316.255530] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766316.461155] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766316.667359] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766316.873864] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766317.079962] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766317.285957] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766317.491150] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766317.697145] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766317.902526] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766318.107232] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766318.312574] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766318.518255] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766318.724077] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766318.930480] 1410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766319.135859] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766319.342059] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766319.547511] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766319.753300] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766319.958974] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766320.164632] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766320.370203] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766320.575672] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766320.780873] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766320.986073] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766321.191863] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766321.398452] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766321.605404] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766321.811339] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766322.016358] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766322.221008] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766322.427388] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766322.632832] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766322.838142] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766323.044134] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766323.249149] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421766323.454256] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766323.660089] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766323.866855] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766324.071922] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766324.277134] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766324.482674] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766324.688154] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766324.893488] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766325.098668] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766325.304825] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766325.511050] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766325.717714] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766325.923184] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766326.128466] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766326.333418] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766326.538385] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766326.744094] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766326.950281] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766327.155663] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766327.360764] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766327.566469] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766327.773453] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421766327.980017] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766328.185286] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766328.390899] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766328.596418] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766328.801941] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766329.006774] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766329.211633] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766329.417932] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766329.623506] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766329.828818] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766330.033760] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766330.238831] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766330.445404] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766330.650736] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766330.856212] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766331.061986] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766331.267899] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421766331.473946] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766331.679621] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766331.885946] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766332.091766] 1541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421766332.298900] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.25 ms +[1421766332.504289] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766332.709237] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766332.914938] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766333.119926] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766333.326627] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766333.532507] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766333.737921] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766333.944680] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.12 ms +[1421766334.151441] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766334.356704] 1021 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766334.561717] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766334.770837] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.03 ms +[1421766334.977249] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766335.183161] 1392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766335.388329] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766335.594197] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766335.800141] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766336.006151] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766336.211245] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766336.416441] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766336.622891] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766336.829409] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766337.034017] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766337.239315] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766337.444802] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766337.649915] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766337.855423] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766338.061317] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766338.266684] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766338.472194] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766338.677519] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766338.883147] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766339.089338] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766339.294628] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766339.499849] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766339.705565] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421766339.911842] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766340.117176] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766340.322205] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766340.528796] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766340.733858] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766340.939966] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421766341.145220] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766341.350173] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766341.555432] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766341.760592] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766341.993208] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.5 ms +[1421766342.199710] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421766342.405085] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766342.610544] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766342.815413] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766343.020360] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766343.225322] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766343.430190] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766343.635189] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766343.840367] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766344.045446] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766344.250552] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766344.455654] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766344.662167] 1670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766344.867309] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766345.072130] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766345.277168] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766345.482324] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766345.688450] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766345.893601] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766346.098628] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766346.304039] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766346.509400] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766346.714817] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766346.921677] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766347.127100] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766347.332100] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766347.538615] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766347.745476] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766347.951494] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421766348.157375] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766348.363524] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766348.569263] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766348.774903] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766348.980022] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766349.186096] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766349.391230] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766349.596436] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766349.802176] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766350.007045] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766350.212705] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766350.418593] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766350.624037] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766350.829000] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766351.034046] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766351.239735] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766351.445781] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766351.651674] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766351.856626] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766352.061277] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766352.266135] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766352.472287] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766352.678319] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766352.883396] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766353.089635] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766353.294615] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766353.500026] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766353.706429] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766353.911355] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766354.116337] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766354.322106] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766354.527773] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766354.733723] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766354.939251] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766355.144696] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766355.350713] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766355.555761] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766355.760963] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766355.966160] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766356.172291] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766356.377659] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766356.583154] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766356.789555] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766356.995008] 814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766357.201649] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766357.406654] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766357.611607] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766357.817419] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421766358.023431] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766358.228497] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766358.434722] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421766358.640318] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.87 ms +[1421766358.845220] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766359.050115] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766359.255371] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766359.461233] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766359.668137] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766359.874329] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766360.079223] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766360.288385] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.12 ms +[1421766360.499503] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.75 ms +[1421766360.713772] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.91 ms +[1421766360.964080] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.2 ms +[1421766361.185756] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421766361.409916] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421766361.630017] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421766361.862315] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.3 ms +[1421766362.087622] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421766362.308814] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421766362.534768] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421766362.764793] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421766362.992563] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421766363.218291] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421766363.440279] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421766363.645661] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766363.851275] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766364.057468] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766364.264192] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766364.469783] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766364.674770] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766364.881386] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766365.087446] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766365.293959] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421766365.504687] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.42 ms +[1421766365.720471] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421766365.940122] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.2 ms +[1421766366.205993] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=61.5 ms +[1421766366.427143] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421766366.652846] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421766366.875595] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421766367.103129] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421766367.331921] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421766367.555457] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421766367.783006] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421766368.008705] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421766368.231204] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421766368.458250] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421766368.688123] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421766368.915777] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421766369.137660] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421766369.344100] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766369.549498] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766369.755483] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766369.961191] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766370.166418] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766370.371945] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421766370.577622] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766370.782747] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766370.988093] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766371.193137] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766371.398725] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766371.605221] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766371.810926] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766372.016243] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766372.221407] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766372.426823] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766372.632108] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766372.837686] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766373.042416] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766373.247883] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766373.454078] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766373.659911] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766373.865525] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766374.071504] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766374.276605] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766374.481851] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766374.687314] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766374.894038] 1955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766375.098810] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766375.304347] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766375.511398] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766375.717357] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766375.923746] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766376.129224] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766376.335248] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421766376.541514] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766376.746705] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766376.951810] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766377.158012] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766377.363559] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766377.568982] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766377.774601] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766377.980871] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766378.186733] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766378.392381] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766378.597494] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766378.803101] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766379.007763] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766379.213712] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766379.419205] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766379.624515] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766379.829981] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766380.035176] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421766380.240471] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766380.445781] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766380.651267] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766380.857054] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421766381.062190] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421766381.268095] 1897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766381.473474] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766381.680058] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766381.885459] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766382.090290] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766382.295489] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766382.500826] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766382.707161] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766382.912534] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766383.118094] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766383.323617] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766383.529254] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766383.734797] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766383.940227] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766384.145132] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766384.351677] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766384.557333] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766384.763816] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766384.969412] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766385.174717] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766385.384285] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.58 ms +[1421766385.596638] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766385.815335] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421766386.069561] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=49.9 ms +[1421766386.291702] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421766386.512794] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421766386.737974] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421766387.021979] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.8 ms +[1421766387.248856] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421766387.532386] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.7 ms +[1421766387.756344] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421766387.982311] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421766388.207099] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421766388.437689] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.2 ms +[1421766388.662154] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421766388.889733] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421766389.115700] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421766389.322175] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766389.527695] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766389.733594] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421766389.941246] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.26 ms +[1421766390.146490] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766390.351823] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766390.558125] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421766390.771853] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.61 ms +[1421766390.980629] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.35 ms +[1421766391.190706] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.05 ms +[1421766391.403732] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.23 ms +[1421766391.618190] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421766391.834906] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421766392.058533] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421766392.311537] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.9 ms +[1421766392.537856] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421766392.743437] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766392.950162] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766393.155418] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766393.361300] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766393.566202] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766393.772463] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766393.977928] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766394.184182] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.98 ms +[1421766394.394396] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.34 ms +[1421766394.606345] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.84 ms +[1421766394.819453] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.99 ms +[1421766395.079160] 1503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.2 ms +[1421766395.350760] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=67.2 ms +[1421766395.575169] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421766395.801921] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421766396.047194] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=41.3 ms +[1421766396.252509] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766396.461894] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.47 ms +[1421766396.680108] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421766396.913756] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.4 ms +[1421766397.127024] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766397.344131] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421766397.566944] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421766397.790544] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421766398.013065] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421766398.218694] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766398.434655] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.7 ms +[1421766398.641231] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766398.847523] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766399.052400] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766399.257195] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766399.462385] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766399.667633] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766399.873134] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766400.079763] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421766400.285190] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766400.490344] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766400.695583] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766400.901361] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766401.106241] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766401.311486] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766401.517079] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766401.722241] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766401.927508] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766402.132971] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766402.338507] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766402.544816] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766402.750154] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766402.956562] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766403.161821] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766403.379613] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421766403.613463] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.6 ms +[1421766403.833002] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421766404.053373] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421766404.313901] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.5 ms +[1421766404.537479] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421766404.767450] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421766404.997118] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421766405.224134] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421766405.451368] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421766405.657824] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766405.864382] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766406.068969] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766406.275695] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.92 ms +[1421766406.487144] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.23 ms +[1421766406.726397] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.9 ms +[1421766406.932514] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766407.137923] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766407.343172] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766407.548298] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766407.754082] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766407.959159] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766408.163972] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766408.369340] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766408.574775] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766408.780033] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766408.985611] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766409.191113] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766409.397299] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766409.602998] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766409.808695] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766410.013782] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766410.218879] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766410.423764] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766410.628959] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766410.834872] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766411.039943] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766411.246520] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421766411.453264] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766411.658920] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421766411.864307] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766412.069542] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766412.274898] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766412.480218] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766412.685446] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766412.890565] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766413.095454] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766413.302488] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.16 ms +[1421766413.507659] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766413.713579] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766413.918935] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766414.124095] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766414.330666] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766414.536335] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766414.758435] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421766414.965147] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766415.170785] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766415.375792] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.03 ms +[1421766415.581509] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766415.787126] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766415.992767] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766416.197983] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766416.403417] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766416.610106] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421766416.815864] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766417.020872] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766417.225693] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766417.442001] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421766417.647438] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766417.852825] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766418.057673] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766418.262797] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766418.467956] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766418.674293] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421766418.880347] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.93 ms +[1421766419.085254] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766419.290322] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766419.495565] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766419.701641] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766419.907055] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766420.112079] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766420.317534] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.87 ms +[1421766420.522424] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766420.728366] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766420.933418] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766421.138399] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766421.343412] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766421.549758] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766421.755333] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766421.960783] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766422.166060] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766422.371898] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766422.578359] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421766422.783689] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766422.989185] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766423.194442] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766423.399994] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766423.605695] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421766423.810909] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766424.015612] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766424.221515] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766424.427507] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421766424.633859] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766424.840127] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766425.046429] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766425.251684] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766425.458529] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766425.665188] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766425.871032] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766426.077004] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766426.282028] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766426.487427] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766426.694038] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766426.899416] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766427.104129] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766427.308872] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766427.513861] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766427.719035] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766427.924939] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421766428.130332] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766428.335690] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766428.541623] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766428.747017] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766428.952205] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766429.157296] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766429.364086] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421766429.570999] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.69 ms +[1421766429.776871] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766429.982565] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766430.189499] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421766430.395544] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421766430.601219] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766430.806557] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766431.011873] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421766431.216854] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766431.422365] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766431.627272] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766431.833439] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766432.039276] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766432.245538] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766432.452285] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766432.657762] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766432.862992] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766433.068116] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766433.273194] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766433.478881] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766433.683867] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766433.890326] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766434.095322] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766434.301268] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766434.507639] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766434.712931] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766434.919452] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766435.124981] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766435.330211] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766435.535683] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766435.741229] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766435.948103] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766436.153756] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766436.359778] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421766436.565236] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766436.770513] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766436.976138] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766437.181417] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766437.386940] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766437.592501] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766437.804623] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.78 ms +[1421766438.011351] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766438.217147] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766438.422856] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766438.629910] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766438.835391] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766439.040754] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766439.245758] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766439.451534] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766439.658597] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766439.864513] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421766440.069643] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766440.275595] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766440.481431] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.90 ms +[1421766440.687874] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766440.893383] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766441.098051] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766441.303161] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766441.509547] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766441.715932] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766441.922201] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766442.127185] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766442.332303] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766442.537539] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766442.743193] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766442.948989] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766443.154751] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766443.360293] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766443.565577] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766443.771805] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766443.977346] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766444.183211] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766444.389876] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766444.595667] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766444.801225] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766445.006570] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766445.212039] 1049 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766445.417599] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766445.623048] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766445.828482] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766446.033242] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766446.238525] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766446.443809] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766446.649034] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766446.854496] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766447.059777] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766447.264400] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421766447.469268] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766447.674275] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766447.880199] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766448.085508] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766448.290714] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766448.495749] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766448.701479] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766448.906768] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766449.113187] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766449.318334] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766449.524743] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766449.731389] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766449.937882] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766450.143330] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766450.349652] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766450.555951] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766450.761218] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766450.966476] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766451.172025] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766451.377077] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766451.583931] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421766451.789517] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766451.994577] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766452.200257] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766452.406674] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766452.612428] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421766452.818808] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421766453.024215] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421766453.229209] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766453.434121] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766453.640663] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766453.847363] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766454.052214] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766454.257369] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766454.463098] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766454.668980] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766454.874361] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421766455.079575] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766455.285249] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766455.490918] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766455.697747] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421766455.903475] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766456.109929] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421766456.315129] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766456.520317] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766456.726303] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421766456.931476] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766457.136496] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766457.341597] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766457.547735] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766457.753197] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766457.958588] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766458.164112] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766458.369642] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766458.576007] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421766458.781347] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766458.986657] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766459.191295] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766459.396946] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766459.603706] 1897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766459.809426] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766460.015151] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766460.222211] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421766460.428356] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766460.634999] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421766460.840630] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766461.046155] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766461.251285] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766461.456534] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766461.662208] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766461.868127] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766462.072947] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766462.278431] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766462.483668] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766462.689595] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766462.894663] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766463.100632] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766463.305773] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766463.511579] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766463.717923] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.87 ms +[1421766463.923272] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766464.128545] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766464.334978] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766464.540735] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766464.746509] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766464.952259] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766465.157905] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766465.363334] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766465.569054] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766465.774433] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766465.980866] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766466.186354] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766466.392884] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766466.599591] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766466.805215] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766467.011373] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766467.216561] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421766467.421778] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766467.627151] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766467.832563] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766468.037269] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766468.242314] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766468.449452] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766468.654903] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766468.860134] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766469.065419] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766469.270342] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766469.476756] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766469.682089] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766469.888626] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766470.094988] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421766470.301219] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766470.507733] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766470.713158] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766470.918477] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766471.123447] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766471.328572] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766471.534784] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766471.740373] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766471.945719] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766472.154355] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766472.359313] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766472.564868] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766472.770607] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766472.976090] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766473.180922] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766473.385872] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766473.591340] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421766473.797220] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766474.002819] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766474.207945] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766474.413856] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766474.619780] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766474.826583] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766475.032661] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766475.237495] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766475.442475] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766475.648492] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766475.853977] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766476.059431] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766476.264677] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766476.469649] 841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766476.675084] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766476.880662] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766477.085498] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766477.291941] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421766477.497843] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766477.704207] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766477.909697] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766478.114802] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766478.320276] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766478.525415] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766478.730932] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766478.936560] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766479.142681] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421766479.348084] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766479.553167] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766479.758250] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766479.964662] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766480.170781] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766480.376072] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766480.582285] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421766480.787689] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766480.993113] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766481.199941] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766481.405265] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766481.611876] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766481.817041] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766482.022804] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766482.227873] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766482.433733] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766482.638900] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766482.844731] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766483.050798] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766483.255825] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766483.461099] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766483.666190] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766483.871146] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766484.076912] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766484.283214] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766484.489305] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421766484.694306] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766484.899635] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766485.104998] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766485.311287] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766485.516896] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766485.722699] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766485.929246] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766486.135539] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766486.341733] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766486.547655] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766486.753338] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766486.958927] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766487.164108] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766487.369624] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766487.574804] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766487.780640] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421766487.987063] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766488.193594] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766488.398942] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766488.604370] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766488.809511] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766489.014447] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766489.220716] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766489.426034] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766489.631443] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766489.836734] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766490.041785] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766490.247185] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421766490.452083] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421766490.657288] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766490.863333] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766491.068446] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766491.273763] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766491.478936] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766491.683885] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766491.888818] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766492.093957] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766492.300166] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766492.506584] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766492.711937] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766492.916916] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766493.121565] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766493.326944] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766493.533429] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766493.738760] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766493.944875] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766494.150226] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766494.355681] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766494.561721] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766494.766911] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766494.972112] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766495.177006] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766495.381955] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766495.588543] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766495.794886] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766495.999802] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766496.205359] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766496.410394] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766496.615731] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766496.820364] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766497.026008] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766497.231357] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766497.436695] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766497.642560] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421766497.847508] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766498.052553] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766498.257790] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766498.463037] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766498.668331] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766498.873752] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766499.080246] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766499.286662] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766499.491899] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766499.698184] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421766499.903381] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766500.108273] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766500.313479] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766500.519144] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766500.724381] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766500.929566] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766501.135097] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766501.340172] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766501.545098] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766501.750019] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766501.954735] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766502.160102] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766502.365825] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766502.571299] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766502.776457] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766502.981490] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766503.186949] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766513.596068] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766513.801164] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766514.006114] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766514.212318] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766514.417252] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766514.622823] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766514.828473] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766515.034281] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421766515.239120] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766515.446381] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.27 ms +[1421766515.653170] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421766515.859243] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766516.064187] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766516.269437] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766516.475400] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766516.682369] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421766516.887679] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766517.092600] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766517.297899] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766517.502945] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766517.707931] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766517.913412] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766518.118918] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766518.323868] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766518.530322] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766518.736616] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766518.942256] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766519.148716] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766519.353957] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766519.563335] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.03 ms +[1421766519.773076] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.45 ms +[1421766520.014429] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=37.5 ms +[1421766520.233228] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421766520.458421] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766520.677003] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421766520.962515] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.7 ms +[1421766521.183419] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421766521.396327] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.39 ms +[1421766521.624347] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421766521.850907] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421766522.073818] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421766522.301645] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421766522.506554] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766522.711758] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766522.919303] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.40 ms +[1421766523.127576] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.10 ms +[1421766523.333111] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766523.538664] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766523.744425] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766523.949550] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766524.154795] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766524.361012] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766524.566261] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766524.771684] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766524.976834] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766525.181966] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766525.386714] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766525.591477] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766525.797002] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766526.003137] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766526.208491] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766526.413340] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766526.618387] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766526.823259] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766527.027892] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766527.233093] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766527.438404] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766527.643507] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766527.849179] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766528.055150] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766528.259954] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766528.464778] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766528.670928] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766528.876238] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766529.081085] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766529.285894] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766529.492131] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766529.700820] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766529.905723] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766530.111032] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421766530.316333] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766530.521511] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766530.727119] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766530.932213] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766531.137517] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766531.342573] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766531.548739] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766531.753627] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766531.959226] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766532.164654] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766532.370228] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766532.576424] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766532.782549] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766532.988303] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766533.193372] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766533.398231] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766533.604102] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766533.809225] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766534.014567] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766534.220201] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766534.425129] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766534.630488] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766534.836256] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766535.041734] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421766535.246751] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766535.452368] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766535.657811] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766535.863335] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766536.068546] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766536.274548] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766536.479681] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766536.685776] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766536.891140] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766537.096462] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766537.302653] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766537.507796] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766537.712742] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766537.918376] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766538.123799] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766538.330767] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421766538.536519] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766538.742308] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766538.948453] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766539.153790] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766539.359730] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421766539.566670] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421766539.772665] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766539.978243] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766540.183782] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766540.388884] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766540.594463] 1133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421766540.800018] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766541.004907] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766541.211208] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766541.416176] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766541.621658] 1261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766541.827914] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766542.032923] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766542.237978] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766542.443920] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421766542.649117] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766542.854719] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766543.060034] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766543.265528] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421766543.471828] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766543.677547] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766543.883032] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766544.088775] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766544.294330] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766544.499934] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766544.705586] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766544.911163] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766545.116950] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766545.322197] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766545.528007] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766545.734728] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766545.939633] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766546.145210] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766546.351293] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766546.556859] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766546.762232] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766546.967564] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766547.172775] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766547.378894] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766547.583976] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766547.790244] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421766547.995368] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766548.201542] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766548.406724] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766548.612447] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766548.818185] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766549.022663] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766549.227797] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766549.433028] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766549.637549] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766549.842261] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766550.048483] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421766550.254229] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766550.459303] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766550.665440] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766550.874142] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.25 ms +[1421766551.085271] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.41 ms +[1421766551.300389] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421766551.513814] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.38 ms +[1421766551.719643] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766551.924997] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766552.130599] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766552.336049] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766552.541667] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766552.747428] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766552.953302] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766553.158886] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766553.364309] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766553.569272] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766553.774458] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766553.980857] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766554.186493] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766554.392959] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421766554.598697] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766554.804343] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766555.009305] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766555.214676] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766555.420160] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766555.625219] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766555.830991] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766556.036922] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421766556.242180] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766556.448411] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766556.653965] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766556.859248] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766557.065489] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421766557.270838] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766557.475934] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766557.681139] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766557.887656] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766558.093623] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766558.298717] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766558.504048] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766558.710434] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766558.917034] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766559.122522] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766559.327898] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766559.533680] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766559.739436] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766559.945085] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766560.151000] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766560.357213] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421766560.562911] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766560.768769] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766560.974059] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766561.179197] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766561.384623] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766561.590829] 1870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766561.796132] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766562.001372] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766562.206755] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766562.412710] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766562.617987] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766562.823548] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766563.028133] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766563.233628] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766563.439384] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766563.644669] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766563.851438] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766564.056236] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766564.261255] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766564.466874] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766564.672603] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766564.877992] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766565.084130] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766565.290204] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766565.495621] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766565.701585] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766565.907646] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421766566.112772] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766566.318547] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766566.524420] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766566.730205] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766566.935405] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766567.140884] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766567.346364] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766567.552912] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766567.758199] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766567.963430] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766568.168385] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766568.373531] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766568.579207] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766568.784488] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766568.991000] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766569.196625] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766569.403539] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766569.610371] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766569.815643] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766570.021202] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766570.226345] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766570.433036] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421766570.639062] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766570.844441] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766571.050352] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766571.255435] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766571.460682] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766571.665792] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766571.871216] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766572.075934] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766572.280794] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421766572.486761] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766572.693149] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766572.898663] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766573.103773] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766573.309155] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766573.514692] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766573.719790] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766573.925614] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421766574.132008] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766574.337472] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766574.542755] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766574.748753] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766574.953998] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766575.159851] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421766575.364983] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766575.571547] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766575.777876] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766575.983263] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766576.188431] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766576.393764] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766576.599592] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421766576.805283] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766577.010488] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766577.215542] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766577.420660] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766577.625639] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766577.831466] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766578.036958] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766578.241660] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766578.447521] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766578.652791] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766578.858054] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766579.062777] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766579.267840] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766579.473275] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766579.678732] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766579.883742] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766580.088736] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766580.293624] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766580.499415] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766580.704671] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766580.909955] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766581.116275] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766581.321459] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766581.526666] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766581.731863] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766581.937594] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766582.143866] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766582.349611] 555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766582.554564] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766582.759344] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766582.965682] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766583.171465] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766583.376814] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766583.582163] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766583.787770] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421766583.992954] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766584.198159] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766584.403391] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766584.608865] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766584.814689] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766585.020866] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766585.226114] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766585.431396] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766585.637432] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766585.842784] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766586.047666] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766586.253661] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766586.459102] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766586.665001] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766586.870018] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766587.074863] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766587.279869] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766587.485949] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766587.691489] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766587.896637] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766588.101658] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766588.307769] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766588.513998] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766588.720204] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766588.926060] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766589.133850] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766589.339632] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766589.546291] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766589.752795] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766589.959205] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766590.164558] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766590.370985] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421766590.576203] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766590.781737] 1451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766590.987379] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766591.192918] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766591.399508] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766591.605796] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766591.811205] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766592.015778] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766592.220625] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766592.425549] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421766592.630514] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766592.835651] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766593.040313] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766593.245588] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766593.450708] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766593.655863] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766593.861642] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766594.066099] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766594.271086] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766594.476602] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766594.681338] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766594.886382] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766595.091696] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766595.297412] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766595.503498] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421766595.709230] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766595.914291] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766596.119077] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766596.324050] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766596.529536] 1049 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766596.735265] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766596.940804] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766597.146166] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766597.351299] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766597.556867] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766597.762212] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766597.967297] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766598.172368] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766598.377596] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766598.582814] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766598.787835] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766598.993092] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766599.199188] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766599.404875] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766599.610275] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766599.815952] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766600.021812] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766600.226918] 512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766600.432447] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766600.639076] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421766600.843765] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766601.048498] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766601.253657] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766601.458980] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766601.665048] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766601.871051] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766602.078192] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.32 ms +[1421766602.283635] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766602.492249] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.98 ms +[1421766602.704043] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.82 ms +[1421766602.919164] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421766603.134170] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421766603.351861] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421766603.577981] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421766603.860448] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.3 ms +[1421766604.086530] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421766604.314696] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421766604.603573] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.6 ms +[1421766604.822716] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421766605.027698] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766605.233438] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766605.439033] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421766605.645311] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421766605.855478] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.10 ms +[1421766606.068107] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.02 ms +[1421766606.280365] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.16 ms +[1421766606.500005] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421766606.720679] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421766606.943784] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421766607.164585] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421766607.388112] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421766607.611967] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421766607.817940] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766608.026445] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766608.232357] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766608.437860] 296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766608.643248] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421766608.848306] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766609.053129] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766609.259122] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766609.464402] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766609.669295] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766609.874659] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766610.080785] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766610.286301] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421766610.492992] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421766610.698838] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421766610.905685] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421766611.110613] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766611.319018] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.39 ms +[1421766611.531432] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.21 ms +[1421766611.747973] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.2 ms +[1421766611.968180] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421766612.237755] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=65.6 ms +[1421766612.463456] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421766612.685922] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421766612.892146] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766613.096828] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766613.301765] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766613.508982] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.25 ms +[1421766613.718976] 1049 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.91 ms +[1421766613.931726] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.73 ms +[1421766614.144515] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.81 ms +[1421766614.362096] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421766614.632900] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=66.8 ms +[1421766614.860946] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421766615.082714] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421766615.304767] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421766615.532268] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421766615.764439] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.0 ms +[1421766615.990057] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421766616.273775] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.5 ms +[1421766616.497830] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421766616.726253] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421766616.954173] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421766617.172767] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421766617.396004] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421766617.601749] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421766617.807168] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766618.011749] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766618.221026] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.78 ms +[1421766618.433705] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.80 ms +[1421766618.651088] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421766618.869507] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421766619.074663] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766619.309231] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.7 ms +[1421766619.553193] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=40.0 ms +[1421766619.814026] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.8 ms +[1421766620.032044] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421766620.316304] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.3 ms +[1421766620.533135] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421766620.812548] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.3 ms +[1421766621.037949] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421766621.262371] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421766621.467716] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766621.674182] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766621.881085] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766622.087138] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421766622.292157] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766622.497226] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766622.702341] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766622.909039] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766623.114246] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766623.319406] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766623.525003] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766623.730229] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766623.942817] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.34 ms +[1421766624.154562] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.33 ms +[1421766624.365722] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.12 ms +[1421766624.571587] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766624.776821] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766624.982097] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766625.196768] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421766625.427303] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.3 ms +[1421766625.667665] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.2 ms +[1421766625.885587] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421766626.154836] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=65.4 ms +[1421766626.438419] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.4 ms +[1421766626.724218] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.7 ms +[1421766626.950749] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421766627.177704] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421766627.404625] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421766627.611026] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766627.898005] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.5 ms +[1421766628.124974] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421766628.351513] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421766628.636807] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.1 ms +[1421766628.857160] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421766629.089237] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.4 ms +[1421766629.294457] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766629.500059] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766629.706728] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766629.912777] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.94 ms +[1421766630.123051] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.91 ms +[1421766630.328943] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766630.537963] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.65 ms +[1421766630.756372] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421766630.972078] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.4 ms +[1421766631.187821] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.0 ms +[1421766631.456519] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=64.6 ms +[1421766631.682689] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421766631.909929] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421766632.199300] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.4 ms +[1421766632.428567] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.2 ms +[1421766632.652365] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421766632.875991] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421766633.099612] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421766633.325227] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421766633.552063] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421766633.770010] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421766634.002236] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.5 ms +[1421766634.208137] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421766634.413668] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766634.618782] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766634.826048] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.58 ms +[1421766635.035155] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.73 ms +[1421766635.272202] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.3 ms +[1421766635.488846] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421766635.718171] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.0 ms +[1421766635.943046] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421766636.168728] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421766636.397251] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421766636.623257] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421766636.896474] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.1 ms +[1421766637.181458] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.1 ms +[1421766637.406599] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421766637.628757] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421766637.853288] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421766638.081559] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421766638.308740] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421766638.533329] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421766638.762919] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.5 ms +[1421766638.968276] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766639.173814] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421766639.379881] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421766639.585790] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766639.791749] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766639.997454] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766640.203181] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766640.408808] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766640.615551] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766640.820356] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766641.025137] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766641.230298] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766641.435792] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766641.641381] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766641.847169] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766642.052183] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766642.257225] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766642.462363] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766642.667493] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766642.872778] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766643.078059] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766643.283162] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766643.488747] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766643.694274] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766643.899403] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766644.105015] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421766644.310116] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766644.515871] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421766644.722500] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766644.928316] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766645.133694] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766645.339959] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766645.545235] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766645.751382] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766645.957118] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766646.162266] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766646.367624] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766646.574319] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766646.779552] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766646.984415] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766647.189746] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766647.395087] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766647.600829] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766647.805640] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766648.010442] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766648.216686] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766648.422976] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766648.628799] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766648.833994] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766649.038663] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766649.244410] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421766649.450430] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766649.655876] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766649.860902] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766650.067076] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766650.272490] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421766650.478251] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766650.685235] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766650.891387] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421766651.096054] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766651.301940] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766651.507125] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766651.712845] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766651.918847] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766652.124675] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766652.329742] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766652.535219] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766652.740421] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766652.945430] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766653.150819] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766653.355892] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766653.562543] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766653.768415] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766653.975182] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766654.180569] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766654.385777] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766654.591830] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766654.797071] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766655.001913] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766655.208324] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766655.413694] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766655.618997] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766655.823775] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766656.029016] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766656.234292] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766656.439998] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766656.645433] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766656.850589] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766657.056059] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766657.261112] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766657.466242] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766657.671402] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766657.877752] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766658.083713] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421766658.289242] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766658.494528] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766658.700511] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766658.907237] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766659.113415] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766659.318755] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766659.525275] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766659.731561] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766659.937236] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766660.142828] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421766660.348372] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766660.553927] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766660.759522] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766660.964863] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766661.170061] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766661.375254] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766661.580935] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766661.786337] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766661.992720] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766662.197973] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766662.404123] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766662.609643] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766662.814753] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766663.019305] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766663.224525] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766663.430805] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.67 ms +[1421766663.639080] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.22 ms +[1421766663.852628] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.33 ms +[1421766664.065537] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.37 ms +[1421766664.286184] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421766664.505821] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421766664.728849] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421766664.957643] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421766665.181668] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421766665.414072] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.5 ms +[1421766665.637539] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421766665.862168] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421766666.088159] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421766666.315933] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421766666.603719] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.7 ms +[1421766666.831125] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421766667.035832] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766667.240777] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766667.445728] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766667.655659] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.67 ms +[1421766667.886067] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.2 ms +[1421766668.101236] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421766668.314258] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.27 ms +[1421766668.520098] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766668.725294] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766668.930844] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421766669.137067] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.89 ms +[1421766669.342490] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766669.548273] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766669.753587] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766669.959625] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766670.166325] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766670.371991] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766670.586134] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.41 ms +[1421766670.799827] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.68 ms +[1421766671.019827] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421766671.243174] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421766671.523863] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.8 ms +[1421766671.736974] 837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.10 ms +[1421766671.942362] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766672.148475] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766672.354103] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421766672.559797] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421766672.766821] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421766672.973303] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766673.179415] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421766673.386379] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421766673.598464] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.67 ms +[1421766673.838970] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.1 ms +[1421766674.057234] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.4 ms +[1421766674.314865] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=53.7 ms +[1421766674.538126] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421766674.744925] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766674.951868] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421766675.157078] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766675.362397] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766675.567662] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766675.772737] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766675.978392] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766676.192595] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421766676.448902] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=52.2 ms +[1421766676.671541] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421766676.898059] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421766677.181275] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.2 ms +[1421766677.464717] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.5 ms +[1421766677.687075] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421766677.922212] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.8 ms +[1421766678.127292] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766678.332536] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766678.542542] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.19 ms +[1421766678.751454] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.57 ms +[1421766678.963790] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.46 ms +[1421766679.180707] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421766679.402212] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421766679.623904] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421766679.846329] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421766680.119541] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.1 ms +[1421766680.401662] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421766680.684513] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.8 ms +[1421766680.911114] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421766681.194614] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.6 ms +[1421766681.476884] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421766681.700066] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421766681.927195] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421766682.155308] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421766682.383323] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421766682.588761] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766682.794174] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766683.000476] 1716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766683.206261] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421766683.414031] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.87 ms +[1421766683.626026] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.68 ms +[1421766683.843616] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421766684.059760] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421766684.280472] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421766684.500963] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421766684.726788] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421766684.950108] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421766685.180067] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421766685.404355] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421766685.689387] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.8 ms +[1421766685.915376] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421766686.199747] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.2 ms +[1421766686.428630] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421766686.652839] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421766686.935267] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.2 ms +[1421766687.208632] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.2 ms +[1421766687.413949] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766687.619305] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766687.828794] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.41 ms +[1421766688.034068] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766688.248727] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421766688.490945] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.2 ms +[1421766688.738227] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.9 ms +[1421766688.956068] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421766689.231810] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.5 ms +[1421766689.458807] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421766689.748667] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.8 ms +[1421766690.034659] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.8 ms +[1421766690.260231] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421766690.465293] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766690.671730] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421766690.878045] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421766691.083351] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766691.289857] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766691.496600] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766691.706192] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.85 ms +[1421766691.915986] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.54 ms +[1421766692.129509] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.61 ms +[1421766692.343228] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.95 ms +[1421766692.595563] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.6 ms +[1421766692.815922] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421766693.020688] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766693.225816] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766693.431663] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766693.641791] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.20 ms +[1421766693.854384] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.63 ms +[1421766694.067211] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.14 ms +[1421766694.283444] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421766694.508200] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421766694.728645] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421766694.935504] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421766695.141572] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421766695.357878] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421766695.622922] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.9 ms +[1421766695.828343] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766696.055789] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421766696.338727] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.9 ms +[1421766696.558841] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421766696.847183] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.0 ms +[1421766697.070275] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421766697.356797] 1913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.5 ms +[1421766697.581132] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421766697.787581] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421766697.993261] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766698.198798] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766698.405311] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421766698.625748] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421766698.858865] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.0 ms +[1421766699.105368] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.7 ms +[1421766699.363125] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=53.6 ms +[1421766699.583297] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421766699.805772] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421766700.029090] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421766700.253673] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421766700.483135] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.3 ms +[1421766700.771080] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.4 ms +[1421766700.998253] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421766701.222738] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421766701.450128] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421766701.675680] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421766701.901108] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421766702.188686] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.7 ms +[1421766702.394010] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766702.599274] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766702.805753] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766703.010653] 1186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766703.215728] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766703.421033] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766703.627081] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766703.832537] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766704.037550] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766704.242492] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766704.450079] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.70 ms +[1421766704.659864] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.68 ms +[1421766704.865231] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766705.070022] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766705.275195] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766705.479875] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766705.686404] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421766705.892131] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766706.096966] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766706.302684] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766706.507984] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766706.713231] 1451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766706.919675] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766707.125313] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766707.330565] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766707.535867] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766707.741201] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766707.947038] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766708.152987] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766708.359201] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766708.564637] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766708.770153] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766708.975700] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766709.181571] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766709.386917] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766709.592475] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766709.797072] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766710.003097] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766710.209368] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766710.414309] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766710.619291] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766710.825847] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766711.031756] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766711.236806] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766711.441974] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766711.648156] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421766711.853716] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766712.059930] 1720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766712.265641] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766712.471789] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766712.676670] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766712.882575] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766713.087563] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766713.293714] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766713.498438] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766713.704720] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766713.910226] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766714.115258] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766714.321146] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766714.526313] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766714.731519] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766714.937815] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766715.142747] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766715.347829] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766715.552690] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766715.757563] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766715.962928] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766716.168577] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766716.375312] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766716.581308] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421766716.787540] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766716.993340] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766717.200282] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421766717.406384] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766717.611538] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766717.817636] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766718.023442] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.99 ms +[1421766718.228769] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766718.433943] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766718.640308] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766718.846855] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766719.052337] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766719.258426] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421766719.463538] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766719.668904] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766719.873875] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766720.079470] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421766720.284713] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766720.490401] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766720.696058] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421766720.901835] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766721.106857] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766721.311619] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766721.516776] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766721.722226] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766721.928956] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766722.134114] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766722.340118] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421766722.545489] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766722.751337] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766722.957236] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766723.162966] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766723.369332] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766723.575800] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766723.781535] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766723.987932] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421766724.194571] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766724.400282] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766724.606256] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766724.811745] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766725.016212] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766725.222482] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766725.428493] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766725.634311] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766725.840358] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766726.045413] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766726.250543] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766726.456841] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766726.661762] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766726.867137] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766727.072184] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766727.277275] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766727.482471] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766727.688020] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766727.893414] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766728.098297] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766728.304516] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766728.510921] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421766728.715932] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766728.921118] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766729.126455] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766729.331627] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766729.537486] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766729.744419] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766729.950663] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766730.155998] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766730.362285] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421766730.568118] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766730.773522] 1451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421766730.978844] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766731.184973] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766731.389883] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766731.595238] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766731.801109] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766732.006674] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766732.211792] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766732.418059] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766732.623829] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421766732.829845] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766733.036205] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421766733.242777] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.76 ms +[1421766733.448891] 1072 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421766733.654306] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766733.859787] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766734.065816] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766734.271059] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766734.477034] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766734.682409] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766734.887605] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766735.092695] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766735.297900] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766735.503230] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766735.708623] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766735.913915] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766736.119602] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766736.325013] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766736.530212] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766736.736715] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766736.941788] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766737.148588] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766737.353613] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766737.558791] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766737.765178] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766737.971060] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766738.176814] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766738.382859] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421766738.588333] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766738.794141] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766738.999573] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766739.204476] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766739.409567] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766739.615474] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766739.821272] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766740.027275] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766740.232267] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766740.438525] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766740.645131] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766740.851572] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766741.056326] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766741.261300] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766741.466356] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766741.671922] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766741.877039] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766742.091207] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421766742.301126] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.88 ms +[1421766742.516317] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421766742.728354] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.21 ms +[1421766742.989007] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.6 ms +[1421766743.212804] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421766743.436640] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421766743.655170] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421766743.942270] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.0 ms +[1421766744.169383] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421766744.376044] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421766744.601259] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421766744.884252] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.9 ms +[1421766745.105830] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421766745.372295] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.5 ms +[1421766745.578106] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766745.784158] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766745.989882] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766746.195329] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766746.400394] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766746.605701] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766746.811137] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766747.024330] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.66 ms +[1421766747.230311] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766747.435486] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766747.640841] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766747.845507] 555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766748.050295] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766748.255196] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766748.460425] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766748.666829] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766748.872491] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766749.077807] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766749.283076] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766749.488650] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766749.694019] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766749.899092] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766750.104742] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766750.309689] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766750.514900] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766750.721830] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421766750.927768] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766751.133976] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766751.339029] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766751.544320] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766751.749648] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766751.955343] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766752.161564] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421766752.367287] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766752.573142] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766752.778783] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766752.984376] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766753.189183] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766753.395420] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766753.601238] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766753.806673] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766754.011406] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766754.216249] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766754.422531] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766754.627595] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766754.833696] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421766755.039044] 512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766755.245693] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421766755.451355] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766755.656955] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766755.862546] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766756.067541] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766756.272819] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766756.478414] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766756.684145] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766756.890734] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766757.095726] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766757.300529] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766757.506659] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766757.712248] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766757.918661] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421766758.123858] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766758.329194] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766758.534542] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766758.741377] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421766758.947781] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421766759.153102] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766759.358800] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766759.564567] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766759.770028] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766759.976243] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766760.182777] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766760.387807] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766760.593186] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766760.798947] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766761.003726] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766761.208853] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766761.413887] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766761.620011] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766761.826145] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766762.031687] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421766762.236640] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766762.442058] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766762.647525] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766762.853824] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766763.058786] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766763.263883] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766763.469221] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766763.674711] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766763.880846] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766764.085691] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766764.291254] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766764.497273] 1075 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766764.702296] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766764.907391] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766765.112846] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766765.318298] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766765.523937] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766765.729201] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766765.935766] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766766.141541] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766766.346561] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766766.552722] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766766.758945] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421766766.965334] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421766767.170415] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766767.375503] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766767.581005] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766767.786196] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766767.991493] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766768.196273] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766768.403279] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.92 ms +[1421766768.609896] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766768.816038] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766769.022540] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766769.227409] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766769.432823] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766769.638220] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766769.844504] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766770.050610] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766770.256651] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766770.461982] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766770.667536] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421766770.877159] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.42 ms +[1421766771.082117] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766771.286960] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766771.492516] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766771.699119] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766771.905548] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766772.110440] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766772.315974] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766772.522176] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766772.727598] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766772.933403] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766773.141043] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.25 ms +[1421766773.346552] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766773.551704] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766773.757942] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766773.964551] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766774.169911] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766774.374997] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766774.579918] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766774.786304] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421766774.993222] 1880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766775.198521] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766775.403824] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766775.610101] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421766775.817645] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.46 ms +[1421766776.022601] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766776.227655] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421766776.433082] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766776.638039] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766776.843282] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766777.047921] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766777.253137] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766777.458201] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766777.663341] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766777.868758] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766778.074986] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421766778.286918] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.55 ms +[1421766778.499410] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.03 ms +[1421766778.717544] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421766778.965890] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.2 ms +[1421766779.184126] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421766779.406786] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421766779.690245] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.5 ms +[1421766779.910133] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.7 ms +[1421766780.196555] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.7 ms +[1421766780.423397] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421766780.643064] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421766780.876581] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.0 ms +[1421766781.110254] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.8 ms +[1421766781.333787] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421766781.608204] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.3 ms +[1421766781.829807] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421766782.034679] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766782.240168] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766782.448379] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.03 ms +[1421766782.660504] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.08 ms +[1421766782.876639] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.0 ms +[1421766783.097066] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421766783.317357] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421766783.588261] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=66.9 ms +[1421766783.810860] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421766784.041701] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.0 ms +[1421766784.264929] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421766784.487677] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421766784.714070] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421766784.919524] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766785.125070] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766785.331007] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766785.536019] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766785.741136] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766785.946554] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766786.153230] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766786.358558] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766786.565215] 1932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766786.771097] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421766786.980828] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.85 ms +[1421766787.194029] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.05 ms +[1421766787.443467] 1955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.6 ms +[1421766787.665341] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421766787.885140] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421766788.090236] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766788.295562] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766788.505704] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.92 ms +[1421766788.726066] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421766788.940221] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.91 ms +[1421766789.158760] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421766789.375720] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421766789.593805] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421766789.869909] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.0 ms +[1421766790.099539] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421766790.325373] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421766790.551182] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421766790.775035] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421766790.981525] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421766791.202916] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421766791.481652] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.4 ms +[1421766791.765956] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.8 ms +[1421766791.990882] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421766792.217859] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421766792.448854] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.7 ms +[1421766792.674571] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421766792.879923] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766793.084820] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766793.289845] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766793.497689] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.88 ms +[1421766793.708788] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.68 ms +[1421766793.931224] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421766794.177380] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.0 ms +[1421766794.428236] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.7 ms +[1421766794.696202] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=64.1 ms +[1421766794.918611] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421766795.142505] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421766795.370187] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421766795.655768] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.4 ms +[1421766795.887680] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.9 ms +[1421766796.171480] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.0 ms +[1421766796.401437] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421766796.606773] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766796.812050] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766797.017208] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766797.222584] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766797.444123] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421766797.679061] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.7 ms +[1421766797.898076] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421766798.104490] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766798.309967] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766798.514957] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766798.725622] 1156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.42 ms +[1421766798.937639] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.67 ms +[1421766799.154746] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421766799.372835] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421766799.590439] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421766799.816718] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421766800.100882] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.9 ms +[1421766800.330783] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421766800.563503] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.7 ms +[1421766800.846639] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.3 ms +[1421766801.071666] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421766801.295495] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421766801.523074] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421766801.742916] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421766802.029074] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.8 ms +[1421766802.257646] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421766802.484226] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421766802.716356] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.3 ms +[1421766802.946677] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.5 ms +[1421766803.151878] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766803.360133] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766803.565782] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766803.770910] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766803.994403] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421766804.207918] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.50 ms +[1421766804.457131] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.9 ms +[1421766804.678275] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421766804.900928] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421766805.177822] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.8 ms +[1421766805.457679] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.9 ms +[1421766805.686514] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421766805.915591] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421766806.137072] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421766806.364334] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421766806.587461] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421766806.815554] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421766807.020469] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766807.225929] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421766807.430752] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766807.636091] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766807.841528] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766808.047023] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766808.251763] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766808.456940] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766808.663464] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766808.868681] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766809.073242] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766809.278975] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.97 ms +[1421766809.485851] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.22 ms +[1421766809.717302] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.4 ms +[1421766809.933451] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421766810.152123] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421766810.357152] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766810.562484] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766810.767954] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766810.975996] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.30 ms +[1421766811.185474] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.66 ms +[1421766811.425484] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.0 ms +[1421766811.675336] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.0 ms +[1421766811.897213] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421766812.175082] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.9 ms +[1421766812.403557] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421766812.632819] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.0 ms +[1421766812.861119] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421766813.084771] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421766813.290198] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766813.514851] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421766813.725732] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.81 ms +[1421766814.009944] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.3 ms +[1421766814.236289] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421766814.523496] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.3 ms +[1421766814.729858] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421766814.955633] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421766815.160985] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766815.366583] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421766815.572930] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.87 ms +[1421766815.780157] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.99 ms +[1421766815.996863] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.2 ms +[1421766816.230293] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.2 ms +[1421766816.448972] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421766816.661758] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.83 ms +[1421766816.927678] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=61.8 ms +[1421766817.149400] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421766817.428215] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.9 ms +[1421766817.711925] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.5 ms +[1421766817.999617] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.3 ms +[1421766818.220409] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421766818.503246] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.5 ms +[1421766818.730658] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421766818.958261] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421766819.176255] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421766819.402586] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421766819.629207] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421766819.854777] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421766820.060441] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766820.266159] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766820.471518] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766820.685918] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421766820.897203] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.97 ms +[1421766821.112274] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.4 ms +[1421766821.317151] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766821.523042] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766821.728164] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766821.934047] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766822.139412] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766822.344479] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766822.549875] 1063 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766822.755935] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766822.960912] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766823.166338] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766823.372725] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766823.577947] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766823.782655] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766823.988644] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766824.194553] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766824.399935] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766824.605394] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766824.811256] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766825.017046] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421766825.221973] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766825.427353] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766825.634082] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766825.839661] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766826.045127] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766826.250513] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766826.456876] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.85 ms +[1421766826.662934] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766826.868853] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766827.074048] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766827.278957] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766827.484825] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766827.691059] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766827.896995] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766828.102092] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766828.308209] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766828.513084] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766828.718547] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766828.923885] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766829.130015] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766829.335710] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421766829.541187] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766829.747057] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766829.952642] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766830.157744] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766830.362782] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766830.567907] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766830.774197] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766830.979144] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421766831.185293] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766831.390760] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766831.596414] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766831.802820] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766832.007765] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766832.213026] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766832.418210] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766832.623405] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766832.828401] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766833.032838] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766833.237855] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766833.443383] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766833.649578] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421766833.854763] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766834.059714] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766834.265860] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766834.471609] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766834.676635] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766834.882100] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766835.088355] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766835.293224] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766835.498410] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766835.703857] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766835.910000] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766836.116180] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766836.321761] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766836.527537] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766836.732830] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766836.938575] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766837.144192] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766837.349367] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766837.555586] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766837.761978] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766837.966724] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766838.171779] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766838.378131] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766838.583966] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766838.790496] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766838.996521] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766839.201671] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766839.407094] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766839.612272] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766839.817691] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766840.043496] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421766840.248553] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766840.453881] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766840.664827] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.49 ms +[1421766840.870011] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766841.075863] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421766841.281443] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766841.486855] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766841.692112] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766841.897206] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766842.101820] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766842.307444] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766842.514127] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766842.720046] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766842.925777] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766843.132245] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766843.337564] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766843.543854] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766843.750039] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421766843.954840] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766844.160001] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766844.364939] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766844.571438] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421766844.777119] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421766844.983212] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766845.188299] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766845.393690] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766845.600637] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766845.807334] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421766846.012171] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766846.217461] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766846.423941] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421766846.629498] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766846.834680] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766847.039344] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766847.245775] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766847.451776] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766847.657299] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766847.863711] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766848.070422] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766848.275796] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766848.481450] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766848.688140] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421766848.893719] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766849.098818] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766849.305088] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766849.510646] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766849.715792] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766849.921542] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766850.127042] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766850.333053] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.94 ms +[1421766850.538976] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421766850.745828] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421766850.951242] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766851.157553] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766851.363978] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766851.570503] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766851.775924] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421766851.981928] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766852.186715] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766852.392746] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766852.599000] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421766852.803774] 1175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766853.008510] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766853.213375] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766853.418856] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766853.624449] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766853.830438] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766854.035432] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766854.241428] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766854.446712] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766854.651788] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766854.856468] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766855.061475] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766855.267656] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766855.473375] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766855.679915] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766855.885582] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766856.091558] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421766856.296506] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766856.501412] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766856.706604] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766856.912266] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766857.117864] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766857.323329] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766857.529164] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766857.734855] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766857.940652] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766858.146074] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766858.352307] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766858.557330] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766858.763950] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766858.969143] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766859.175512] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766859.380480] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766859.585774] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766859.791405] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766859.997898] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766860.204602] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766860.411812] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.20 ms +[1421766860.635963] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421766860.850784] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421766861.098141] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.6 ms +[1421766861.316111] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421766861.541929] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421766861.827667] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.5 ms +[1421766862.053022] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421766862.278362] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421766862.496653] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421766862.774769] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.9 ms +[1421766862.981052] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766863.185901] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766863.391588] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421766863.597085] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766863.803359] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766864.008931] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766864.213745] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766864.418696] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766864.623858] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766864.829407] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766865.045680] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421766865.250545] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766865.455449] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766865.660346] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766865.875798] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421766866.103336] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421766866.308548] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766866.515069] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766866.721238] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766866.927743] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421766867.137685] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.57 ms +[1421766867.352469] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421766867.593469] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.7 ms +[1421766867.814644] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421766868.087394] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.3 ms +[1421766868.313880] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421766868.542911] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421766868.753608] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.91 ms +[1421766868.977690] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421766869.199738] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421766869.416339] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421766869.640040] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421766869.867829] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421766870.147707] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.9 ms +[1421766870.373699] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421766870.599961] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421766870.823783] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421766871.028456] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766871.233215] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766871.439264] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421766871.650985] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.55 ms +[1421766871.861370] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.44 ms +[1421766872.076598] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421766872.322524] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=41.9 ms +[1421766872.543862] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421766872.819791] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.6 ms +[1421766873.104288] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.5 ms +[1421766873.327706] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421766873.553665] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421766873.779458] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421766874.050976] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=67.2 ms +[1421766874.338812] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.6 ms +[1421766874.564039] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421766874.789663] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421766875.076689] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.1 ms +[1421766875.361706] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.0 ms +[1421766875.587036] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421766875.812688] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421766876.017508] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766876.222870] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766876.428040] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766876.636747] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.48 ms +[1421766876.851226] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421766877.083766] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.6 ms +[1421766877.328887] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=41.2 ms +[1421766877.548478] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421766877.766103] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421766877.986550] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421766878.208253] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421766878.429175] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421766878.657191] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421766878.888232] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.1 ms +[1421766879.175191] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.3 ms +[1421766879.459371] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.4 ms +[1421766879.682546] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421766879.906975] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421766880.132781] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766880.338005] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766880.543342] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766880.748814] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766880.954287] 1186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766881.162696] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.70 ms +[1421766881.368199] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766881.573503] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766881.780120] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766881.987094] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421766882.196773] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766882.407955] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.04 ms +[1421766882.619968] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.12 ms +[1421766882.881021] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.9 ms +[1421766883.104495] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421766883.387836] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.6 ms +[1421766883.615960] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421766883.844452] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421766884.128025] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.7 ms +[1421766884.357201] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421766884.583647] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421766884.811974] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421766885.035112] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421766885.261793] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421766885.546962] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.8 ms +[1421766885.772598] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421766886.018294] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=41.4 ms +[1421766886.224314] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766886.431272] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.97 ms +[1421766886.638675] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.01 ms +[1421766886.862990] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421766887.079886] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.2 ms +[1421766887.323608] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.5 ms +[1421766887.539782] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421766887.814137] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.2 ms +[1421766888.039021] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421766888.328685] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.8 ms +[1421766888.556526] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421766888.786311] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.5 ms +[1421766889.061098] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.0 ms +[1421766889.336786] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.7 ms +[1421766889.566716] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421766889.797958] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.1 ms +[1421766890.026859] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.2 ms +[1421766890.247267] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766890.452883] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766890.658410] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766890.865048] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421766891.071281] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421766891.279613] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.53 ms +[1421766891.485339] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766891.690463] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766891.896758] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766892.101372] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766892.306590] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766892.512892] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766892.718590] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766892.924329] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766893.129253] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766893.334427] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766893.539684] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766893.744727] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766893.950867] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766894.156962] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766894.362398] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766894.567969] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766894.774652] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766894.980051] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766895.184973] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766895.389962] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766895.594911] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766895.800596] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766896.005835] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766896.211137] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766896.416183] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766896.621181] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766896.826346] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766897.030874] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766897.236049] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766897.441155] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766897.647369] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766897.852650] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766898.057845] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766898.263967] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766898.469542] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766898.675647] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766898.880865] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766899.085807] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766899.291033] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766899.496435] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766899.702518] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766899.907548] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766900.113261] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766900.318290] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766900.523531] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766900.728484] 130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766900.934862] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766901.140207] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766901.345645] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421766901.551875] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766901.757756] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766901.963264] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766902.167994] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766902.374346] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766902.580882] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766902.786940] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766902.991742] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766903.196911] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766903.402100] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766903.607201] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766903.812320] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766904.018320] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766904.223507] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766904.428548] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766904.634855] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766904.840545] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766905.046776] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766905.252115] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766905.457592] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766905.663983] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766905.869046] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766906.074031] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766906.279029] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766906.483806] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766906.688718] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766906.895014] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766907.100747] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766907.306002] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766907.511194] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766907.717095] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766907.923174] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766908.127975] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766908.334298] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766908.539804] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766908.744710] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766908.949852] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421766909.154959] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766909.360240] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766909.566632] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766909.773055] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766909.979541] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766910.184886] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766910.391338] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421766910.597254] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766910.804104] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421766911.009167] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766911.214337] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766911.420632] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766911.626219] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766911.833655] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.77 ms +[1421766912.038880] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766912.244051] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766912.450207] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766912.656438] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766912.861550] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766913.066509] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766913.272703] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766913.478967] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766913.684561] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766913.889943] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421766914.094828] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766914.300163] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766914.505810] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766914.711474] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766914.917616] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766915.123337] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421766915.328642] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766915.535140] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.69 ms +[1421766915.740250] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766915.945207] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766916.150289] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766916.355655] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766916.562112] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766916.767623] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766916.972499] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766917.177496] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766917.383161] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766917.589654] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766917.795255] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766918.000491] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766918.205741] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766918.411158] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766918.616584] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766918.822078] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766919.026791] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766919.232108] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766919.437919] 1888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766919.643356] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766919.848881] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766920.062017] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.24 ms +[1421766920.267156] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766920.472736] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766920.678685] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421766920.884551] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766921.089166] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766921.294136] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766921.499323] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766921.705876] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766921.911544] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766922.117427] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766922.322935] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421766922.529019] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766922.735216] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421766922.940377] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766923.145940] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766923.350985] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766923.556119] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421766923.761474] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766923.967567] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766924.173140] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766924.378518] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421766924.584557] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421766924.790097] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421766924.995573] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766925.200636] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766925.406793] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421766925.611637] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766925.817172] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766926.021994] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766926.226878] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766926.433102] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766926.639021] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766926.845867] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766927.051448] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766927.257238] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766927.462352] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766927.667536] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766927.873797] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766928.079502] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421766928.284779] 145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766928.490156] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766928.696150] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766928.962651] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.4 ms +[1421766929.168237] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766929.373405] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766929.594539] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421766929.823522] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.2 ms +[1421766930.029269] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766930.234023] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766930.440260] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766930.645360] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766930.850527] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766931.055492] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766931.260412] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766931.466612] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766931.671829] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766931.877961] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766932.082777] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766932.287727] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766932.492838] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766932.699024] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766932.928028] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421766933.150690] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421766933.356703] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766933.562245] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421766933.767343] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766933.973303] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421766934.178642] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766934.383969] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766934.589781] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421766934.795183] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766935.000269] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766935.205518] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766935.411732] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421766935.617240] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766935.823297] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766936.028206] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766936.233330] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766936.439026] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766936.644779] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766936.853882] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.76 ms +[1421766937.210383] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=152 ms +[1421766937.415959] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421766937.622438] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421766937.828063] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766938.033851] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766938.240150] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766938.445705] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766938.650997] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766938.857103] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766939.062071] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766939.267115] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766939.473238] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766939.678869] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766939.884314] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766940.089127] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766940.294259] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766940.499867] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421766940.705610] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766940.910886] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766941.115499] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766941.320733] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766941.526371] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766941.731725] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766941.937001] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766942.142214] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766942.347428] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766942.552999] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766942.758852] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766942.964432] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766943.170598] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766943.375823] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766943.581358] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766943.787422] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766943.993648] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421766944.198784] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766944.404224] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766944.609579] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766944.815795] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766945.020747] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766945.226775] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766945.432281] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766945.637164] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766945.842115] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766946.047140] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766946.252816] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766946.458247] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766946.664053] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766946.870196] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421766947.075426] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766947.280590] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766947.485912] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766947.691610] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766947.897165] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766948.103915] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766948.309784] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766948.515410] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766948.720552] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766948.926665] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766949.132092] 555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766949.337332] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421766949.543002] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766949.748730] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766949.955014] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766950.160160] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766950.365154] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766950.570820] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421766950.777280] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766950.982768] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766951.189363] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766951.395623] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766951.600940] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766951.806665] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766952.011656] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766952.217775] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766952.423556] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766952.629417] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766952.835248] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766953.040445] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766953.246619] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766953.452387] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766953.658874] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766953.864367] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766954.069251] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766954.273972] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766954.479442] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766954.685483] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766954.890780] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766955.095486] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421766955.301818] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766955.507370] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766955.712396] 1063 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766955.918682] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766956.123593] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766956.330089] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766956.536527] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421766956.742030] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766956.947943] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766957.152994] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766957.359419] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766957.565054] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766957.771875] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766957.977300] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766958.182681] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766958.388391] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766958.594207] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766958.799151] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766959.004702] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421766959.210093] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766959.415902] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766959.621040] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766959.827401] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766960.033235] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421766960.245352] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.17 ms +[1421766960.451868] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421766960.657624] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421766960.863543] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766961.068367] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766961.303138] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.6 ms +[1421766961.508625] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766961.714081] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766961.919429] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766962.125341] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766962.330400] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421766962.536911] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421766962.742299] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766962.948452] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766963.153487] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766963.359671] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766963.565172] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766963.770803] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766963.975748] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766964.180661] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766964.385840] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766964.590753] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421766964.796821] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421766965.002377] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766965.207846] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421766965.414546] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421766965.620040] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766965.826257] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766966.031143] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421766966.236426] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766966.441620] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766966.649661] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766966.855282] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766967.061516] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766967.266531] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766967.471906] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766967.677250] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766967.883114] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421766968.088250] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766968.298204] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.30 ms +[1421766968.503837] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766968.709213] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766968.915861] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766969.122076] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766969.327397] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421766969.532650] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766969.738541] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766969.944021] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766970.149497] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766970.354680] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421766970.561162] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421766970.766974] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766970.973558] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766971.178853] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766971.384252] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766971.590321] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766971.796618] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766972.001639] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766972.206948] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766972.413153] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766972.619161] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421766972.824804] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766973.029603] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766973.235721] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766973.441102] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766973.647331] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421766973.865572] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421766974.077328] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.64 ms +[1421766974.289234] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.00 ms +[1421766974.509267] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421766974.726854] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421766974.949642] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421766975.175635] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421766975.398937] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421766975.623712] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421766975.908776] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.6 ms +[1421766976.114160] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421766976.342650] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421766976.572040] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421766976.799657] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421766977.032757] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.2 ms +[1421766977.237875] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421766977.444577] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421766977.651583] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.90 ms +[1421766977.863278] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.78 ms +[1421766978.077405] 841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421766978.324393] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.9 ms +[1421766978.542337] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421766978.817351] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.8 ms +[1421766979.022316] 847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766979.227520] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421766979.432531] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766979.638749] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421766979.844692] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766980.049436] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766980.254737] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766980.459780] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421766980.666564] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421766980.873691] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421766981.078662] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766981.283710] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766981.489802] 1566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766981.695096] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421766981.900793] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421766982.106753] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421766982.311972] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766982.518252] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421766982.723854] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766982.929679] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766983.135364] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766983.341085] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421766983.546814] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766983.751688] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766983.956841] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766984.162149] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421766984.367160] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421766984.573787] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421766984.780664] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766984.986126] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766985.192297] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766985.397634] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766985.603519] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766985.809606] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421766986.015762] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421766986.221136] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766986.426758] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421766986.632572] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421766986.839135] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421766987.044285] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766987.250483] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421766987.456908] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421766987.662003] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421766987.867757] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766988.072682] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421766988.277521] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766988.483163] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421766988.689006] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421766988.894363] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766989.099938] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421766989.304773] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766989.510110] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766989.715375] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421766989.920797] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421766990.127002] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421766990.333166] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421766990.538161] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421766990.744319] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421766990.950032] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421766991.155709] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421766991.360907] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766991.567433] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766991.773207] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421766991.978503] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421766992.184507] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421766992.391697] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.48 ms +[1421766992.615639] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421766992.820965] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766993.025834] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421766993.230970] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421766993.435964] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421766993.641753] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766993.847935] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421766994.053544] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766994.258722] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421766994.463922] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421766994.669864] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421766994.876029] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421766995.081095] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766995.287436] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421766995.493284] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421766995.699688] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421766995.905474] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421766996.111425] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421766996.317467] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421766996.522684] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421766996.727741] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421766996.934169] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421766997.140746] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421766997.346010] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421766997.552063] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421766997.758012] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421766997.963812] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421766998.169163] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421766998.374533] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421766998.580059] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421766998.786394] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421766998.992059] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421766999.198117] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421766999.403377] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421766999.608743] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421766999.815620] 1984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767000.020980] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767000.226262] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767000.432268] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421767000.638781] 1888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421767000.844471] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421767001.050701] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767001.255735] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767001.460912] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767001.665926] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767001.871574] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767002.076282] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767002.281262] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767002.486612] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767002.691975] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767002.896981] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767003.101580] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767003.306757] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767003.512903] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767003.717961] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767003.922838] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767004.127654] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767004.333960] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767004.539595] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767004.745608] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767004.950422] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767005.155828] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767005.360750] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767005.565424] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767005.770903] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767005.976830] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767006.183323] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767006.389204] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767006.595171] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767006.800831] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767007.005994] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767007.212326] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767007.417577] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767007.623157] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767007.828804] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767008.033659] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767008.238625] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767008.444056] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767008.650902] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421767008.856340] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767009.061516] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767009.266749] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767009.472177] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767009.677296] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767009.882376] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767010.088226] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767010.293340] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767010.498684] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767010.704199] 1261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421767010.909691] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421767011.114586] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767011.319884] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767011.525944] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767011.732431] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767011.939297] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767012.146578] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.93 ms +[1421767012.351790] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767012.556674] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767012.762940] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767012.968299] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421767013.173190] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767013.378407] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767013.584576] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767013.790460] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767013.995744] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767014.200857] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767014.406846] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767014.612211] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767014.818804] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767015.023959] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767015.229288] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767015.435483] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767015.640643] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767015.845978] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767016.051714] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767016.257638] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.96 ms +[1421767016.463160] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767016.668546] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767016.874819] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767017.080479] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767017.285737] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767017.491477] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767017.696673] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767017.902413] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767018.107833] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767018.313170] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767018.518413] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767018.723474] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767018.928372] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767019.133866] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767019.338915] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767019.543888] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767019.749385] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767019.955848] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767020.161404] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767020.367567] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767020.573088] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767020.779661] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767020.985211] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767021.190438] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767021.396159] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767021.601372] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767021.806551] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767022.011377] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767022.216992] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421767022.422792] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767022.627858] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767022.833158] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767023.038050] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767023.243173] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767023.448339] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767023.653410] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767023.858629] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767024.064619] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767024.270681] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767024.477038] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767024.682401] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767024.888232] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767025.093424] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767025.298759] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767025.504739] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421767025.711480] 1541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421767025.917034] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767026.122422] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767026.327747] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767026.532824] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421767026.739181] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767026.944593] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767027.149873] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767027.355108] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767027.560919] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767027.766021] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767027.971526] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767028.176825] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767028.382222] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767028.588079] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767028.793792] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767028.999378] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767029.204583] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767029.409689] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767029.615578] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767029.821648] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767030.026656] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767030.231682] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767030.436932] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767030.642724] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421767030.849256] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767031.054310] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767031.259591] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767031.465159] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767031.670176] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767031.875442] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767032.080733] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767032.287236] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421767032.492268] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767032.698597] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767032.903720] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767033.108625] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767033.314973] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767033.520777] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767033.726403] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767033.931538] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767034.137549] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767034.342461] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767034.548030] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421767034.753889] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767034.959603] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767035.164942] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767035.369981] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767035.575361] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767035.782111] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767035.987941] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767036.192849] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767036.399085] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767036.604619] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767036.810949] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421767037.016908] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421767037.221948] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767037.428063] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767037.632753] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421767037.837592] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767038.062139] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421767038.267505] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767038.473636] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767038.679333] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767038.885637] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767039.090659] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767039.295936] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767039.501742] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767039.707607] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767039.912778] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767040.124125] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.60 ms +[1421767040.336682] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.58 ms +[1421767040.542500] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767040.747741] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767040.966702] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.2 ms +[1421767041.173189] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767041.379553] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767041.595230] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421767041.800593] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767042.011098] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.51 ms +[1421767042.217086] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767042.436489] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421767042.643264] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767042.850153] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767043.055994] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767043.262195] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767043.467469] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767043.674052] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767043.879346] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767044.084145] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767044.290756] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767044.496709] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767044.706430] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.75 ms +[1421767044.911632] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767045.117385] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767045.322434] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767045.528904] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767045.735497] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767045.941074] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767046.146637] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767046.352637] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767046.559109] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421767046.764904] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767046.971435] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767047.176650] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767047.382771] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767047.615752] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.7 ms +[1421767047.822533] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421767048.028395] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767048.233436] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767048.442124] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.41 ms +[1421767048.647753] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767048.853280] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767049.058577] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767049.263517] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767049.468700] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767049.674830] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.97 ms +[1421767049.887613] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.78 ms +[1421767050.096450] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.35 ms +[1421767050.301888] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767050.507920] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767050.713626] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767050.919128] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767051.124859] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767051.330131] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767051.536261] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767051.741904] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767051.947858] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767052.152885] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767052.358901] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767052.564143] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767052.769235] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767052.976048] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767053.181603] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421767053.387169] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767053.593055] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767053.800398] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.00 ms +[1421767054.006494] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767054.211588] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767054.416576] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767054.622026] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767054.827495] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767055.033005] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767055.238222] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421767055.443584] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767055.650027] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767055.855384] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767056.060231] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767056.265268] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767056.470861] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767056.676376] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767056.882878] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767057.088511] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767057.294601] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767057.500120] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767057.706993] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421767057.912419] 512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767058.118204] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767058.323591] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767058.529318] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767058.735218] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767058.941869] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767059.147338] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767059.353692] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767059.560277] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767059.766423] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767059.972571] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767060.177996] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767060.383075] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767060.588947] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767060.795276] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767061.000572] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767061.206074] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767061.412592] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421767061.619073] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421767061.825007] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767062.030160] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767062.235242] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767062.443091] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.44 ms +[1421767062.649859] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767062.855591] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421767063.060382] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767063.265496] 1026 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767063.470643] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767063.676491] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767063.882430] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767064.087727] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767064.293827] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767064.498938] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767064.704072] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767064.909114] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767065.114043] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767065.319480] 1186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767065.525015] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767065.730517] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767065.935437] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767066.140416] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767066.346730] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767066.553563] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767066.760153] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767066.970244] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.60 ms +[1421767067.202428] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.8 ms +[1421767067.417791] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421767067.636342] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.1 ms +[1421767067.902508] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.0 ms +[1421767068.184293] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.8 ms +[1421767068.389514] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767068.594571] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767068.799421] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767069.006578] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.51 ms +[1421767069.216310] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.78 ms +[1421767069.454421] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.1 ms +[1421767069.672188] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421767069.891955] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421767070.166525] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.3 ms +[1421767070.453777] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.8 ms +[1421767070.683239] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.4 ms +[1421767070.888478] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767071.093149] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767071.297965] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767071.502641] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767071.707657] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767071.912793] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767072.117379] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767072.322339] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767072.531228] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.30 ms +[1421767072.737185] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767072.947766] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.90 ms +[1421767073.152642] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767073.381415] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421767073.587104] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767073.792390] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767074.023216] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.3 ms +[1421767074.229118] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421767074.434150] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767074.639163] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767074.844889] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767075.050766] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421767075.256737] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767075.485910] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.2 ms +[1421767075.692126] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767075.897109] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767076.102540] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.88 ms +[1421767076.311319] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.81 ms +[1421767076.521168] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.85 ms +[1421767076.735823] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.1 ms +[1421767076.954134] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421767077.178569] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421767077.457452] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.8 ms +[1421767077.737353] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.0 ms +[1421767077.958012] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421767078.164480] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767078.370066] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421767078.575995] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767078.782124] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767078.993445] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.54 ms +[1421767079.198527] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767079.403115] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767079.607747] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767079.812892] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767080.018055] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767080.223736] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767080.429006] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767080.634363] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767080.840010] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767081.044722] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767081.251065] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767081.456230] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767081.661499] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767081.868402] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767082.073574] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767082.279139] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421767082.484504] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421767082.690772] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767082.896583] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767083.101595] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767083.306357] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767083.513038] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767083.754241] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=37.0 ms +[1421767083.960695] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.04 ms +[1421767084.166300] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767084.371456] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767084.576587] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767084.781985] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767084.987333] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767085.192950] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767085.399396] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767085.604975] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767085.810672] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767086.016891] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421767086.223063] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767086.428149] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767086.634301] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767086.840756] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767087.046929] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767087.252133] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421767087.456972] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767087.661892] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767087.868072] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767088.073210] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767088.278381] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767088.495762] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421767088.701422] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767088.920546] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421767089.226480] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=102 ms +[1421767089.431859] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767089.644111] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.89 ms +[1421767089.849680] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767090.054626] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767090.259971] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767090.466262] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767090.671007] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767090.876855] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767091.081072] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767091.286699] 1955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767091.491953] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767091.697855] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767091.903616] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767092.110178] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767092.315027] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767092.520283] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767092.726702] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.75 ms +[1421767092.943095] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421767093.149430] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767093.355772] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767093.561442] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767093.767708] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767093.973035] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767094.178247] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767094.393436] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421767094.610312] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421767094.816895] 1670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767095.036894] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421767095.241988] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767095.446933] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767095.652230] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767095.857558] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767096.062534] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767096.279178] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421767096.484886] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767096.691324] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767096.898053] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767097.102887] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767097.308586] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421767097.513845] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767097.719618] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421767097.925423] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767098.131657] 1897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421767098.337055] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767098.542668] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767098.747641] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767098.952907] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767099.157997] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767099.363144] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767099.568725] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767099.774946] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767099.980625] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767100.185808] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767100.391428] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767100.596773] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767100.802468] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421767101.007414] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767101.212474] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767101.417139] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767101.623352] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767101.829020] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767102.033515] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767102.238752] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767102.443557] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767102.649804] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767102.855359] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767103.060349] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767103.265674] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767103.470757] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767103.676336] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767103.881622] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767104.087172] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767104.292478] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767104.497591] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767104.702774] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767104.908210] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767105.113432] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767105.318714] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767105.525770] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767105.731183] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767105.936601] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767106.143137] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767106.347896] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767106.553208] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767106.759461] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767106.964713] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767107.170354] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767107.375914] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767107.581680] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767117.998674] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.36 ms +[1421767118.213488] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421767118.435118] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421767118.656123] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421767118.881047] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421767119.103639] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421767119.331224] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421767119.558542] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421767119.778435] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421767120.002439] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421767120.225205] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421767120.454502] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.4 ms +[1421767120.677705] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421767120.902806] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421767121.128176] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421767121.410086] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.8 ms +[1421767121.695275] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.1 ms +[1421767121.900618] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767122.105658] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767122.310726] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767122.517118] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421767122.739437] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421767122.945096] 1330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767123.150140] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767123.356268] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767133.766272] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767133.971535] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767134.177170] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767134.382225] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767134.587361] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767134.792229] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767134.997573] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767135.203189] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767135.408829] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767135.614682] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767135.821179] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767136.027366] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767136.232471] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767136.440068] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767136.645657] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767136.851269] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767137.056646] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767137.261718] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767137.466741] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767137.671791] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767137.878005] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767138.083825] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767138.289222] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767138.494766] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767138.700936] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767138.906058] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767139.112048] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767139.317523] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767139.523215] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767139.728749] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767139.934338] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767140.139451] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767140.345463] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767140.550823] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767140.756008] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767140.961368] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767141.166986] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767141.372505] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767141.579328] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767141.785831] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767141.991096] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767142.196437] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767142.401841] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767142.607140] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767142.813574] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421767143.018832] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767143.223966] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767143.429102] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767143.634425] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767143.840415] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767144.045918] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421767144.250900] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767144.455829] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767144.660738] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767144.865890] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767145.070568] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767145.275586] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767145.481253] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767145.687071] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767145.893637] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767146.098756] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767146.304339] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421767146.509796] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767146.715156] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767146.920426] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767147.125874] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767147.331462] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767147.537311] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767147.743010] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767147.947925] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767148.153294] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767148.359505] 1541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767148.565185] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767148.771791] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767148.978005] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767149.184098] 1541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767149.390746] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767149.597388] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767149.802636] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767150.008811] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421767150.214248] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767150.421167] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.86 ms +[1421767150.628194] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421767150.835167] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767151.039944] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767151.245730] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767151.450967] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767151.656428] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767151.861574] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767152.066390] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767152.271487] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767152.476776] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767152.682350] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767152.888603] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421767153.094611] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767153.300301] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421767153.506584] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421767153.711482] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767153.916524] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767154.121237] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767154.326550] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767154.531803] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767154.737751] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767154.942788] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767155.147806] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767155.353240] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767155.559423] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767155.764503] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767155.969751] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767156.176367] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767156.381659] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767156.587317] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767156.792766] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767156.997738] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767157.203213] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767157.409438] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767157.615674] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767157.821906] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767158.026847] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767158.232264] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421767158.438716] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421767158.644046] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767158.849561] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421767159.057106] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.84 ms +[1421767159.269218] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.12 ms +[1421767159.482977] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.67 ms +[1421767159.704343] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421767159.921643] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421767160.143953] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421767160.373925] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421767160.600365] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421767160.826505] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421767161.055410] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.2 ms +[1421767161.284992] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.5 ms +[1421767161.510532] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421767161.746417] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.5 ms +[1421767161.952283] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767162.184706] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.2 ms +[1421767162.390401] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421767162.596068] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767162.801386] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767163.014499] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.69 ms +[1421767163.224935] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.16 ms +[1421767163.431208] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767163.638687] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.01 ms +[1421767163.845240] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767164.050656] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421767164.255687] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767164.460917] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767164.667589] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767164.873456] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767165.078558] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767165.283780] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767165.493716] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.81 ms +[1421767165.699176] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767165.906738] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.27 ms +[1421767166.120138] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.21 ms +[1421767166.333112] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.06 ms +[1421767166.547237] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.1 ms +[1421767166.765324] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421767166.987298] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421767167.214558] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421767167.419730] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767167.624522] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767167.830413] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767168.034768] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767168.240103] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767168.445755] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767168.657128] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.05 ms +[1421767168.862196] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767169.072356] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.78 ms +[1421767169.277746] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767169.483450] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767169.688647] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767169.893640] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767170.098310] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767170.304508] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767170.510467] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767170.715437] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767170.920347] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767171.126233] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421767171.331559] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767171.537911] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767171.743161] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767171.948843] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767172.154446] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767172.362282] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767172.568022] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767172.773462] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767172.979108] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767173.184561] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767173.390502] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767173.596618] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767173.801514] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767174.006781] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767174.213426] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767174.418858] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767174.623613] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767174.828704] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767175.033265] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767175.238297] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767175.444798] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767175.650251] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767175.856658] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767176.062220] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421767176.268194] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767176.474641] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.78 ms +[1421767176.680000] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767176.886341] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767177.091341] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767177.296328] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767177.501886] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767177.707539] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767177.913192] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767178.118545] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767178.324003] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767178.529540] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767178.735917] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767178.942487] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767179.148125] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767179.353515] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767179.559490] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767179.765054] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767179.970325] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767180.175940] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767180.382369] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767180.588421] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767180.793371] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767180.998095] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767181.203257] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767181.408751] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767181.614656] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421767181.820535] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767182.025834] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767182.230835] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767182.436204] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767182.641643] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421767182.846666] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767183.052110] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767183.257134] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767183.462594] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767183.669501] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767183.874871] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421767184.079547] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767184.285803] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421767184.492071] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767184.697525] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767184.902931] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767185.107933] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767185.314628] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421767185.520277] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767185.725627] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767185.930446] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767186.136381] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767186.341692] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767186.547248] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767186.752556] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767186.958658] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767187.164907] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421767187.370219] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767187.576058] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767187.781989] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767187.988910] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767188.194424] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767188.399881] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767188.605466] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767188.810776] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767189.016158] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767189.220970] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767189.427231] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767189.633243] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767189.838371] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767190.043479] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767190.248186] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421767190.453372] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767190.659178] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421767190.865892] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421767191.070896] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767191.275732] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767191.482190] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767191.721717] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.1 ms +[1421767191.948809] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421767192.164030] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421767192.369122] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767192.602089] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.9 ms +[1421767192.807790] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421767193.013443] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421767193.233562] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421767193.439483] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767193.645583] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421767193.850825] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767194.057937] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.41 ms +[1421767194.263749] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767194.470057] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421767194.675438] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767194.880317] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767195.084805] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767195.289699] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767195.495186] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767195.700679] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767195.906952] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767196.111917] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767196.317183] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767196.522875] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767196.729472] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767196.934827] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767197.140111] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767197.345376] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767197.551689] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767197.757851] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767197.963446] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767198.169470] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767198.374527] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767198.579515] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767198.784416] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767198.990402] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767199.195316] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767199.400449] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767199.607064] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767199.813691] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767200.018699] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767200.224915] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767200.430459] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767200.635768] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767200.841085] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767201.046421] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767201.256862] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.48 ms +[1421767201.461916] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767201.667343] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421767201.873830] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767202.079815] 1897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767202.284558] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767202.489558] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767202.694294] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767202.900725] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421767203.106141] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421767203.312446] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421767203.518608] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767203.724805] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767203.930950] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767204.136120] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767204.341393] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767204.546923] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767204.752440] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767204.957873] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767205.163091] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767205.369390] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767205.575970] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767205.781626] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767205.988004] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767206.193529] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767206.398543] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767206.603877] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767206.809355] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767207.015336] 1720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767207.220521] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767207.425142] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421767207.630386] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767207.835787] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767208.041273] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767208.246456] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767208.452624] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767208.657975] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767208.864914] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421767209.069688] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767209.274919] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767209.480677] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767209.686089] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767209.891573] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767210.097456] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767210.302354] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767210.507445] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767210.712550] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767210.918099] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767211.123138] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767211.328400] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767211.534302] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767211.739695] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767211.945244] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767212.150937] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767212.356723] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767212.562363] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767212.767704] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767212.973316] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767213.179310] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767213.384753] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767213.590443] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421767213.796775] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767214.001745] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767214.206975] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767214.412152] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767214.618595] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.78 ms +[1421767214.823821] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767215.028631] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767215.233646] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767215.439301] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767215.644963] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767215.850209] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767216.056172] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767216.262113] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767216.467292] 1072 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767216.672945] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767216.878420] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767217.083409] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767217.288754] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767217.494523] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767217.699926] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421767217.905242] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767218.110330] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767218.315490] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767218.521701] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421767218.727383] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421767218.932978] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767219.139610] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421767219.344655] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767219.550180] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767219.755435] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767219.960879] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767220.165957] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767220.371675] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767220.577426] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767220.782973] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767220.988876] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767221.195425] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767221.400903] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767221.606326] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421767221.811913] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767222.016974] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767222.223122] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767222.429468] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767222.634937] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767222.840012] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767223.046009] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767223.251176] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767223.456477] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767223.662454] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767223.868078] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767224.074075] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767224.279548] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767224.486021] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767224.691938] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767224.897348] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767225.101843] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767225.307228] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767225.512294] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767225.718980] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767225.925077] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767226.130885] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421767226.336467] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767226.541773] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767226.747386] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767226.953241] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767227.158494] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767227.363585] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767227.568704] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767227.774097] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767227.980487] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767228.186009] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767228.391033] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767228.596560] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767228.803094] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767229.009124] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421767229.215315] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767229.421307] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767229.626638] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767229.832433] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767230.037555] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767230.242507] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767230.448002] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767230.653210] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767230.858568] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767231.063806] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767231.269035] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767231.473889] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767231.679401] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767231.884891] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767232.089322] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767232.294211] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767232.499699] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767232.705459] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767232.910916] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767233.116108] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767233.320922] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767233.526236] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767233.731564] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767233.937274] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767234.142678] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767234.347995] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767234.553311] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767234.758348] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767234.963779] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767235.168727] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767235.373822] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767235.579344] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767235.784933] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767235.990800] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421767236.196447] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767236.401793] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767236.607450] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767236.812777] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767237.018650] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767237.224687] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767237.430024] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767237.636917] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767237.842770] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767238.048681] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767238.253974] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767238.460369] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767238.666811] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421767238.872703] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421767239.077618] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421767239.283783] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767239.489614] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767239.694879] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767239.900239] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767240.106020] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767240.312161] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767240.519020] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767240.725406] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421767240.932262] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421767241.138678] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767241.343928] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767241.550305] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767241.755620] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767241.961806] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767242.166956] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767242.372490] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767242.578356] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767242.783856] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767242.988851] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767243.194386] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421767243.400122] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767243.606294] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421767243.811879] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767244.017854] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767244.223467] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767244.428997] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767244.634400] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767244.839705] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767245.044790] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767245.251152] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767245.456326] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767245.661560] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767245.867292] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767246.072513] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767246.277552] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767246.482629] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767246.687866] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767246.897093] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.11 ms +[1421767247.106350] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.34 ms +[1421767247.320785] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421767247.532762] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.90 ms +[1421767247.754441] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421767247.976800] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767248.198216] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421767248.427145] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421767248.641813] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421767248.917583] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.1 ms +[1421767249.141509] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421767249.367296] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421767249.593602] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421767249.819001] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421767250.023674] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767250.228739] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767250.434418] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767250.639634] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767250.844767] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767251.049808] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767251.254868] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767251.459852] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767251.664806] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767251.869953] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767252.074667] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767252.280087] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767252.485423] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767252.691381] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767252.896139] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767253.100571] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767253.305192] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767253.510432] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767253.715967] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767253.921753] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767254.127129] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767254.333319] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767254.540621] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.99 ms +[1421767254.746347] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767254.952518] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421767255.158026] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767255.363012] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767255.568103] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767255.773349] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767255.978902] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767256.184602] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767256.389494] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767256.594785] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767256.801415] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767257.006499] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767257.211702] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767257.417895] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767257.623744] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767257.829511] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767258.034395] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767258.239535] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767258.444722] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767258.650853] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767258.855867] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767259.061420] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421767259.267537] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767259.472514] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767259.677194] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767259.882215] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767260.086714] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767260.291950] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767260.498599] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767260.703893] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767260.909224] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421767261.118042] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.41 ms +[1421767261.323577] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767261.530670] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767261.737600] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767261.943679] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767262.148983] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767262.354384] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767262.559589] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767262.764640] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767262.971196] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767263.177734] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767263.384338] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421767263.589651] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767263.795153] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767264.017896] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421767264.224332] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767264.429183] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767264.634353] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767264.839197] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767265.044043] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767265.249725] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767265.455108] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767265.660771] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767265.867045] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767266.072486] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767266.279050] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421767266.484365] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767266.690338] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767266.896179] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767267.101257] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767267.306510] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767267.511706] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767267.717605] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767267.923542] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767268.128557] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767268.334091] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767268.539895] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767268.745104] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767268.949974] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767269.155090] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767269.361404] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767269.566699] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767269.771976] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767269.977267] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767270.182674] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767270.387694] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767270.592966] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767270.798760] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767271.004076] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767271.209974] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767271.416437] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767271.622133] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767271.827462] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767272.032308] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767272.237431] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767272.442209] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767272.647253] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767272.852929] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767273.058486] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767273.263880] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767273.469460] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767273.674391] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767273.880302] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767274.086011] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767274.291445] 847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767274.497099] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767274.703646] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767274.909305] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767275.114426] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767275.319524] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767275.525934] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767275.731511] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767275.936254] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767276.141431] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767276.346822] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767276.552155] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767276.758449] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767276.964530] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767277.169526] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767277.375072] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767277.580381] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767277.785939] 1417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767277.991484] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767278.196468] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767278.401986] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767278.607690] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767278.814081] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767279.019831] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421767279.225032] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421767279.430335] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767279.639680] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.40 ms +[1421767279.845804] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767280.050794] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767280.255413] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421767280.460797] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767280.666402] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767280.872202] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421767281.078307] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767281.283390] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767281.489314] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767281.694811] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767281.900344] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767282.105441] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767282.311107] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767282.517800] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767282.722665] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767282.927577] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767283.132671] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767283.337517] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767283.543551] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767283.748797] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767283.954370] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767284.161125] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767284.366179] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767284.572662] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767284.778196] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767284.983308] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767285.188474] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767285.394126] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767285.599925] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767285.804872] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767286.009617] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767286.214773] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767286.420057] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767286.625840] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767286.831659] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767287.036210] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767287.242281] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421767287.447596] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767287.653271] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767287.859515] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767288.065778] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767288.270867] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767288.476152] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767288.681753] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767288.886943] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767289.091806] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767289.297188] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767289.502179] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767289.708456] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767289.913830] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767290.118806] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767290.324004] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767290.530710] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767290.736106] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767290.942649] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767291.148442] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767291.354013] 1238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421767291.559167] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767291.764132] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767291.969211] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767292.175233] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767292.380625] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767292.585997] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767292.792301] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767292.997580] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767293.203686] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767293.408818] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767293.614070] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767293.819651] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767294.024696] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767294.229771] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767294.435069] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767294.640626] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767294.847306] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.80 ms +[1421767295.057535] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.65 ms +[1421767295.270234] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.88 ms +[1421767295.482991] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.43 ms +[1421767295.688574] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767295.894269] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767296.099294] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767296.305446] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767296.510872] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767296.716682] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767296.923208] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767297.128580] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767297.334148] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767297.539379] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767297.745320] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767297.950327] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767298.155283] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767298.360577] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767298.566480] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767298.772300] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767298.978913] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421767299.184080] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421767299.389102] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767299.594266] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767299.799897] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767300.005624] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767300.211716] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767300.417909] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767300.622789] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767300.828915] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421767301.034976] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421767301.241216] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421767301.447952] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767301.654738] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767301.861467] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767302.066523] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767302.272699] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767302.477864] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767302.683846] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767302.889668] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767303.095034] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421767303.300165] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767303.505276] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767303.710832] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421767303.916249] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767304.121522] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767304.326722] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767304.532684] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767304.739073] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767304.944837] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767305.152304] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767305.357227] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767305.562450] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767305.768008] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767305.973645] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767306.178809] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767306.384101] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767306.589298] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767306.794857] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767306.999992] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767307.205387] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767307.410475] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767307.615761] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767307.820926] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767308.026645] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421767308.231559] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767308.438082] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767308.644418] 1482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767308.849855] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767309.054668] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767309.259905] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767309.465425] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767309.671571] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767309.877522] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767310.083194] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767310.288626] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767310.493964] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767310.700450] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421767310.906195] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767311.111340] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767311.316757] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767311.522306] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767311.728781] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767311.934988] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767312.141196] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421767312.347493] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767312.553147] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767312.758605] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767312.963928] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767313.169300] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767313.375267] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767313.580518] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767313.786475] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767313.992193] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767314.197660] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767314.403347] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767314.609645] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767314.815389] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767315.019935] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767315.224994] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767315.430573] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421767315.636778] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767315.843355] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767316.048156] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767316.252904] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767316.458020] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767316.664261] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767316.869337] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767317.074443] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767317.279378] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767317.484691] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767317.690288] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767317.895997] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767318.101249] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767318.306134] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767318.511241] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767318.717937] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767318.923806] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767319.129986] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767319.335022] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767319.540217] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767319.745536] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767319.950732] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767320.156645] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767320.361829] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767320.567280] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767320.774004] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767320.979082] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767321.184166] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767321.389419] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767321.595006] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767321.800380] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767322.006253] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767322.211212] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767322.417675] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767322.622799] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767322.827933] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767323.033583] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767323.238973] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421767323.444445] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767323.651470] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421767323.856875] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767324.061519] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767324.267606] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767324.473669] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767324.678981] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767324.885475] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767325.122243] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.7 ms +[1421767325.335622] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.42 ms +[1421767325.540950] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767325.746477] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767325.951389] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767326.156076] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767326.366015] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.91 ms +[1421767326.580109] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421767326.786538] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767326.991902] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767327.198184] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421767327.403420] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767327.609090] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767327.814879] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767328.019835] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767328.224673] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767328.429791] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767328.634810] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767328.840997] 1670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767329.045856] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767329.251667] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767329.457024] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767329.662295] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767329.867762] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767330.072764] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767330.277640] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767330.482498] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767330.687780] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767330.894748] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421767331.100112] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767331.305077] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767331.510742] 825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767331.715883] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767331.921654] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767332.127400] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767332.333789] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767332.540184] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767332.745798] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767332.951525] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767333.156973] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767333.363446] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767333.568520] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767333.775124] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767333.982025] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767334.186894] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767334.392913] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767334.598571] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767334.805585] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421767335.010504] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767335.216426] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767335.421947] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767335.628511] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421767335.834864] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767336.040812] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767336.246589] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767336.451806] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767336.657888] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767336.863806] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421767337.069984] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767337.275101] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767337.481853] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421767337.687429] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767337.892768] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767338.097596] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767338.303563] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767338.509026] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767338.714341] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767338.920262] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767339.125132] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767339.330628] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767339.536542] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767339.741808] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767339.947655] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421767340.153162] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767340.359178] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767340.565885] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767340.772662] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421767340.978331] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767341.183898] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767341.388923] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767341.594327] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767341.799294] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767342.003844] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767342.210255] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767342.415632] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767342.621011] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767342.827030] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767343.031798] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767343.236648] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767343.442515] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767343.648784] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767343.855296] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767344.060980] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767344.266227] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767344.471552] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767344.676840] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767344.882249] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767345.087608] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767345.292676] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767345.498836] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767345.705107] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767345.910302] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767346.116600] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421767346.322148] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767346.528058] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767346.733634] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767346.939157] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767347.144409] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767347.349732] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767347.554899] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767347.760345] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767347.965738] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767348.171132] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767348.376290] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767348.581661] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767348.786627] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767348.991653] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767349.196801] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767349.402280] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767349.608077] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767349.813825] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767350.018867] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767350.224043] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767350.430034] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767350.636084] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767350.840843] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767351.046683] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767351.252785] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767351.458727] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767351.664098] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767351.869395] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767352.075523] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767352.280974] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767352.486627] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767352.692594] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767352.897587] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767353.101978] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767353.306942] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767353.513772] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.03 ms +[1421767353.719171] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767353.924543] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767354.130267] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767354.336707] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767354.542261] 1175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767354.747619] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767354.954181] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767355.159301] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767355.364239] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767355.569242] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767355.774514] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767355.980969] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767356.187299] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767356.393657] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767356.599293] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767356.805720] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767357.010448] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767357.216682] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767357.421728] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767357.627034] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767357.831788] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767358.036302] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767358.241435] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767358.447695] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767358.653372] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767358.858850] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767359.063412] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767359.268815] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767359.475155] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421767359.681552] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421767359.887260] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767360.092398] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767360.297568] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767360.503842] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767360.709089] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767360.914818] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421767361.119981] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767361.326627] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767361.532455] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767361.738489] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767361.945168] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421767362.150409] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767362.357129] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767362.563520] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767362.769012] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767362.974602] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767363.180958] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767363.386114] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767363.592488] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421767363.798994] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421767364.004984] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421767364.210348] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767364.415232] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767364.621476] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767364.827792] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767365.033014] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767365.238234] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767365.443700] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421767365.650061] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767365.855095] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767366.059950] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767366.266196] 1522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767366.471687] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767366.676850] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767366.883856] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.75 ms +[1421767367.092736] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.94 ms +[1421767367.325580] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.3 ms +[1421767367.539918] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421767367.756658] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421767367.977807] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421767368.202208] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421767368.428284] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421767368.653129] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421767368.874737] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421767369.106572] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.2 ms +[1421767369.323073] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421767369.528804] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767369.733935] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767369.942643] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.66 ms +[1421767370.153836] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.92 ms +[1421767370.366848] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.14 ms +[1421767370.581518] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421767370.787159] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767371.007318] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421767371.231992] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421767371.453729] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421767371.681346] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421767371.907401] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421767372.134880] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421767372.370353] 1870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.5 ms +[1421767372.575837] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767372.782501] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767372.988166] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767373.193370] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767373.398578] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767373.603474] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767373.809684] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767374.016089] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421767374.226262] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.40 ms +[1421767374.439088] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.46 ms +[1421767374.649515] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767374.905104] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.9 ms +[1421767375.126991] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421767375.407576] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.4 ms +[1421767375.612746] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767375.818372] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767376.023082] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767376.233437] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.36 ms +[1421767376.463326] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421767376.676743] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.24 ms +[1421767376.895622] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421767377.115511] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421767377.337004] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421767377.565711] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421767377.791410] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421767378.072734] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.3 ms +[1421767378.357834] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.1 ms +[1421767378.582132] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421767378.788323] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767378.993318] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767379.198480] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767379.403910] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767379.609034] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767379.815678] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767380.021023] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767380.226250] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767380.431622] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767380.637452] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767380.842945] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767381.049414] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.10 ms +[1421767381.260076] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.80 ms +[1421767381.473924] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.97 ms +[1421767381.689032] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421767381.908291] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421767382.113793] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421767382.319248] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767382.524783] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767382.733256] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.61 ms +[1421767382.959380] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421767383.173647] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421767383.390864] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421767383.612510] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421767383.834649] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421767384.058914] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421767384.264382] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767384.470262] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767384.675398] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767384.880701] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767385.087274] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.23 ms +[1421767385.296919] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.03 ms +[1421767385.508950] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.91 ms +[1421767385.723499] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.2 ms +[1421767385.963198] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.4 ms +[1421767386.182695] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421767386.406125] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421767386.628094] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421767386.847114] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421767387.125849] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.7 ms +[1421767387.411675] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.7 ms +[1421767387.618111] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421767387.823320] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767388.028949] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767388.243816] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421767388.456748] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.80 ms +[1421767388.672411] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.4 ms +[1421767388.919888] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.5 ms +[1421767389.136319] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421767389.358699] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421767389.641174] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.3 ms +[1421767389.868060] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421767390.098135] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.3 ms +[1421767390.377003] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.2 ms +[1421767390.594400] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421767390.816959] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421767391.036285] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421767391.258354] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767391.546734] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.1 ms +[1421767391.773414] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421767391.998741] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421767392.203641] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767392.409228] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767392.614088] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767392.820820] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.85 ms +[1421767393.044689] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421767393.259235] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421767393.477701] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421767393.735059] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=53.2 ms +[1421767394.008693] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.8 ms +[1421767394.234861] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421767394.461051] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421767394.702178] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.8 ms +[1421767394.907841] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767395.113002] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767395.318160] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767395.523640] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767395.730542] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767395.936339] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767396.141672] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767396.347062] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767396.552148] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767396.757252] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767396.963492] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767397.170216] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767397.394302] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421767397.629483] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.6 ms +[1421767397.879979] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.4 ms +[1421767398.102268] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421767398.323202] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421767398.549385] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421767398.774711] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421767399.001866] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421767399.213761] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.84 ms +[1421767399.419928] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767399.626600] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767399.839535] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.99 ms +[1421767400.050168] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.85 ms +[1421767400.287343] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.2 ms +[1421767400.502529] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421767400.722620] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421767400.928312] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767401.133523] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767401.338881] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767401.545168] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767401.751089] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767401.956389] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767402.161355] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767402.366873] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767402.572525] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767402.777931] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767402.984450] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767403.189956] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767403.396402] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767403.602300] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767403.808678] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767404.013462] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767404.218733] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767404.425095] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767404.631892] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421767404.838455] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767405.043717] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767405.249182] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767405.455195] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421767405.660661] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767405.866132] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767406.072073] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767406.277156] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767406.482382] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767406.687233] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767406.892077] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767407.096582] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767407.301691] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767407.507983] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421767407.714616] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767407.919546] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767408.124783] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767408.329760] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767408.534533] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767408.740606] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421767408.947110] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767409.152652] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767409.358636] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767409.564980] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767409.770299] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767409.975733] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767410.182181] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767410.387546] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767410.592755] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767410.797875] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767411.002527] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767411.207985] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767411.413284] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767411.618992] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767411.825290] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767412.029880] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767412.235563] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767412.440441] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767412.645500] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767412.850718] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767413.055501] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767413.260630] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767413.467149] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767413.673594] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767413.878927] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767414.084173] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767414.289524] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767414.496830] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.92 ms +[1421767414.707060] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.12 ms +[1421767414.921405] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.98 ms +[1421767415.171265] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.6 ms +[1421767415.376684] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767415.582812] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767415.787761] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767415.998504] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.25 ms +[1421767416.203566] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767416.408553] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767416.614369] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767416.819516] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767417.024216] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767417.229308] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767417.434427] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767417.639351] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767417.844883] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767418.085097] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.5 ms +[1421767418.290054] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767418.496036] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767418.702007] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767418.907254] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767419.112032] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767419.316701] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767419.521544] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767419.727099] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421767419.932554] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421767420.137840] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767420.342705] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767420.547874] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767420.753509] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767420.960110] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421767421.165158] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767421.369983] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767421.575376] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767421.780762] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767421.985884] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767422.191084] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767422.396350] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767422.601399] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767422.806885] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767423.011838] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767423.218545] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.72 ms +[1421767423.423677] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767423.628578] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767423.834911] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767424.040351] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767424.245823] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767424.451161] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767424.657900] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421767424.864564] 1503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421767425.069986] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767425.275854] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767425.482078] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767425.687596] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767425.892900] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767426.097929] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767426.303274] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767426.509944] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421767426.716205] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767426.922269] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767427.128414] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767427.333648] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767427.539028] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767427.744341] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767427.949727] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767428.154741] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767428.359713] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767428.565182] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767428.770698] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767428.975914] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767429.181490] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767429.387071] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767439.797283] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767440.002679] 847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767440.207946] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767440.414277] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767440.619194] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767440.824514] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767441.029044] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767441.233952] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767441.439406] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767441.646128] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767441.851799] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767442.056932] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767442.262114] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767442.467923] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767442.673754] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421767442.880128] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767443.085199] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421767443.291407] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767443.497370] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767443.704000] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421767443.914887] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.65 ms +[1421767444.126287] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.58 ms +[1421767444.331684] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421767444.536715] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767444.741525] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767444.947494] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767445.152632] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767445.358668] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767445.564121] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767445.769052] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767445.974192] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767446.179347] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767446.384699] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767446.590689] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767446.796486] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767447.001809] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767447.207107] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767447.412266] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767447.617363] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767447.822455] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767448.027246] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767448.232282] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767448.437861] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767448.643016] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767448.848771] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767449.054756] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767449.261128] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767449.466162] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767449.671272] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767449.877913] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421767450.083685] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767450.288908] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767450.494772] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767450.700389] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767450.905866] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767451.110852] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767451.316512] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767451.522763] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767451.728699] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767451.933752] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767452.139994] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767452.345467] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767452.552340] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421767452.757929] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767452.963492] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767453.168887] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767453.375361] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767453.581747] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767453.788025] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767453.993740] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767454.199461] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767454.404964] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767454.610511] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421767454.816168] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767455.021442] 1156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767455.226457] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767455.432182] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421767455.637733] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767455.844086] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767456.049155] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767456.254018] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767456.459278] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767456.664772] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767456.870092] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767457.075338] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767457.281544] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767457.487970] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.72 ms +[1421767457.693416] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767457.898778] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767458.103904] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767458.308814] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767458.514218] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767458.719665] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767458.924785] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767459.131196] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767459.336853] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767459.542012] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767459.747538] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767459.952873] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767460.158864] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767460.363974] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767460.569289] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767460.774535] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767460.980880] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421767461.186451] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767461.392321] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767461.598228] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767461.804842] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421767462.009786] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767462.215072] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767462.421864] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767462.627796] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767462.832906] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767463.038443] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421767463.243769] 1049 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767463.448623] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767463.653750] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767463.860747] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767464.065877] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767464.270846] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421767464.476266] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767464.681246] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767464.886403] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767465.090696] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421767465.295690] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767465.500954] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767465.707517] 1482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767465.912918] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767466.118204] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767466.324198] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767466.530403] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767466.736648] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767466.943229] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767467.149704] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767467.354974] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767467.560106] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767467.765232] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767467.971025] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767468.177032] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767468.383940] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421767468.590586] 1670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767468.796877] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767469.002177] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767469.207707] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767469.413084] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767469.618459] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767469.823891] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767470.028420] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767470.233248] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767470.438764] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767470.644297] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767470.850317] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767471.055837] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767471.261555] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767471.468435] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767471.673839] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767471.879058] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767472.084826] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767472.289908] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767472.496008] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767472.701534] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767472.907052] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767473.111979] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767473.317034] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767473.522278] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767473.728251] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767473.933157] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767474.144368] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.36 ms +[1421767474.349577] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767474.555003] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767474.761745] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421767474.967673] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421767475.173790] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421767475.380079] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767475.585291] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767475.790812] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767475.996246] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767476.202630] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767476.407767] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767476.613117] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767476.818244] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767477.023122] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767477.229301] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767477.434513] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767477.639582] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767477.844667] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767478.049171] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767478.256020] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.81 ms +[1421767478.461669] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767478.668017] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767478.873208] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767479.077953] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767479.283206] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767479.489471] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767479.694619] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767479.899963] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421767480.105151] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421767480.311527] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421767480.516598] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767480.721666] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767480.927276] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767481.132350] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767481.337485] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767481.542806] 1133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767481.749139] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767481.955233] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421767482.160432] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767482.365366] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767482.570506] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767482.775683] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767482.981362] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767483.187956] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767483.393175] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767483.598932] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767483.808339] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.00 ms +[1421767484.016852] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.68 ms +[1421767484.226647] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.88 ms +[1421767484.432400] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421767484.637710] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767484.843882] 814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.85 ms +[1421767485.049013] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767485.255541] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421767485.460692] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767485.666226] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767485.872478] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767486.077253] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767486.283106] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767486.487890] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767486.693150] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767486.899200] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767487.103767] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767487.309010] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767487.515618] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767487.721188] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767487.926466] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767488.132539] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767488.337866] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767488.543881] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767488.750152] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767488.956800] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421767489.162613] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767489.367812] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767489.572844] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767489.778852] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767489.985049] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767490.190117] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767490.395360] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767490.601788] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767490.808531] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421767491.013295] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767491.218764] 1133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421767491.423908] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767491.629220] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767491.835439] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767492.040313] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767492.245550] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767492.451828] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421767492.658330] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767492.864191] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767493.070512] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767493.275991] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767493.481725] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767493.687609] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767493.892892] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767494.097930] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767494.302729] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767494.508971] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767494.714390] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767494.919896] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767495.125115] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767495.330408] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767495.537425] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767495.744210] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767495.949778] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767496.155536] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767496.360424] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767496.565669] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767496.770525] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767496.976804] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767497.182315] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767497.387721] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767497.592904] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767497.798405] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767498.003334] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767498.208568] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767498.413654] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767498.619391] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767498.825249] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767499.029774] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767499.236038] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767499.442392] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767499.647147] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767499.852624] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767500.057295] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767500.262481] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767500.468265] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767500.674627] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767500.879621] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767501.084667] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767501.289817] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767501.495268] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767501.701598] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.00 ms +[1421767501.907523] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767502.112912] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767502.317845] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767502.523620] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767502.729150] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767502.934702] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767503.140966] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767503.346147] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767503.551450] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767503.756319] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421767503.961842] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767504.168375] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767504.374367] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421767504.581103] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421767504.786676] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767504.991888] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767505.197074] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767505.402313] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767505.607494] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767505.814101] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767506.019535] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767506.225035] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767506.430242] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767506.635646] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767506.841786] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767507.047184] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767507.252164] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767507.457987] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767507.664038] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421767507.869604] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767508.074863] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767508.280830] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767508.486292] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767508.692384] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767508.897176] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767509.102009] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767509.307500] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767509.513369] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767509.718905] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767509.924469] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767510.129797] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767510.335045] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767510.541734] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767510.747399] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767510.952572] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767511.157359] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767511.362757] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767511.570091] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767511.776430] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767511.981847] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767512.187208] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767512.392379] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767512.597608] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767512.803120] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767513.009482] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767513.214659] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767513.420903] 1880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767513.627523] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767513.833332] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767514.038181] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767514.243505] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767514.449194] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767514.654286] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767514.859752] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767515.064672] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767515.271105] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767515.476081] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421767515.681125] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767515.886940] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421767516.091751] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767516.296731] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767516.502915] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767516.709219] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767516.914757] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767517.120211] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767517.325181] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767517.531240] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767517.737113] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767517.943037] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767518.149800] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767518.355396] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767518.560598] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767518.767135] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421767518.972521] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767519.177812] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767519.384520] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767519.589660] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767519.794878] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767520.000502] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767520.205803] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767520.412118] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767520.617893] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767520.823841] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767521.028704] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767521.234819] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767521.440289] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767521.645496] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767521.850770] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767522.055701] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767522.262128] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421767522.468672] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.79 ms +[1421767522.674389] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767522.879815] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767523.084577] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767523.289608] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767523.495158] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767523.701793] 1716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767523.907078] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767524.111806] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767524.317554] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767524.523262] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767524.729830] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767524.935186] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767525.140105] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767525.347399] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.41 ms +[1421767525.553908] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767525.759106] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767525.964117] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767526.169626] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767526.375124] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767526.581863] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767526.787269] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767526.992456] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767527.198648] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421767527.403978] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767527.610328] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767527.815958] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767528.020427] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767528.225618] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767528.431989] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767528.638257] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767528.843613] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767529.048525] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767529.254819] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767529.460004] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767529.666609] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421767529.872327] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767530.077428] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767530.282841] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767530.487584] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767530.692804] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767530.898840] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421767531.104192] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767531.309366] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767531.514968] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767531.720975] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421767531.926334] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767532.131723] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767532.337395] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767532.543915] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767532.749864] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767532.955239] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767533.160304] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767533.365726] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767533.571624] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767533.778415] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767533.984076] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767534.190407] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767534.396973] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767534.602755] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767534.808493] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767535.012990] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767535.217842] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767535.423448] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767535.629138] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767535.835602] 1566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767536.040828] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767536.246187] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767536.452540] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421767536.658720] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767536.863862] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767537.068744] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767537.275853] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.29 ms +[1421767537.482116] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767537.687148] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767537.892775] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767538.097729] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767538.303136] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767538.508760] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767538.713532] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767538.919944] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767539.124458] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767539.329451] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767539.534960] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767539.740082] 145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767539.945692] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767540.150478] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767540.356933] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421767540.563592] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421767540.768876] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767540.974354] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767541.179411] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767541.385588] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767541.590729] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767541.796320] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767542.001954] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767542.206924] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767542.411873] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767542.616733] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767542.822868] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767543.027577] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767543.232593] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767543.438257] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767543.644659] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421767543.850427] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767544.056470] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421767544.266765] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.62 ms +[1421767544.472195] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767544.678155] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767544.884017] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767545.089224] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767545.295143] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767545.501334] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767545.707693] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767545.912920] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767546.119012] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767546.323690] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767546.528517] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767546.733685] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767546.939486] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767547.145195] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767547.350646] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767547.555943] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767547.761439] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767547.967019] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767548.173727] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767548.378644] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767548.583723] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767548.788914] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767548.994312] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767549.199802] 30 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767549.404716] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767549.609387] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767549.814868] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767550.019550] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767550.224412] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767550.429698] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767550.635246] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767550.841252] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.96 ms +[1421767551.047919] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.94 ms +[1421767551.253133] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767551.459587] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767551.666065] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767551.871404] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767552.076530] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767552.282919] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767552.489749] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767552.695322] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767552.901217] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767553.106486] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767553.312347] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421767553.518563] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767553.724385] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767553.929845] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767554.134690] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767554.340580] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767554.545986] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767554.751512] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767554.957191] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767555.162295] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767555.368233] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421767555.574241] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767555.779498] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767555.984805] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767556.191600] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767556.397597] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767556.602501] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767556.807974] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767557.014035] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767557.220229] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767557.426291] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767557.632587] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767557.838710] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767558.043784] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767558.249171] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767558.454802] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767558.659762] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421767558.864905] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767559.071059] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767559.276007] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767559.481429] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767559.687553] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767559.893152] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767560.097732] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767560.303182] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767560.508468] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767560.713936] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767560.919983] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421767561.125259] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767561.330572] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767561.535669] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767561.740899] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767561.946400] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767562.151636] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767562.357998] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767562.563829] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767562.769615] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767562.975459] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767563.181133] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767563.387408] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767563.592729] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767563.798402] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767564.008139] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767564.214432] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767564.420681] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767564.626344] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767564.832220] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767565.036912] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767565.242164] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767565.447893] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767565.662111] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.91 ms +[1421767565.907443] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=41.0 ms +[1421767566.119022] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.02 ms +[1421767566.323892] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767566.528942] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767566.733947] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767566.939238] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767567.144599] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767567.350461] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767567.556276] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767567.762068] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767567.967766] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767568.174109] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767568.380439] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767568.585639] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767568.791910] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421767568.997228] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767569.202593] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767569.408277] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421767569.615759] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.92 ms +[1421767569.848852] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.0 ms +[1421767570.091963] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.3 ms +[1421767570.309676] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421767570.529145] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421767570.746482] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421767570.952296] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767571.158207] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767571.363311] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767571.569162] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767571.774546] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767571.979767] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767572.184690] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767572.389528] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767572.594710] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767572.799738] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767573.005455] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767573.210774] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767573.415714] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767573.620952] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767573.827573] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421767574.032486] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767574.237535] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767574.442804] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767574.648376] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767574.853660] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767575.059708] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767575.264747] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767575.469433] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767575.675881] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421767575.881668] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767576.086734] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767576.292397] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767576.497802] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767576.704438] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767576.909922] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767577.115821] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767577.321876] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421767577.526954] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767577.731529] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767577.936819] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767578.141976] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767578.347464] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767578.553234] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767578.759054] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767578.965865] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421767579.172595] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767579.378042] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767579.583370] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767579.788606] 145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767579.993971] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767580.198843] 130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767580.404284] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767580.609778] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767580.818955] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.76 ms +[1421767581.027693] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.15 ms +[1421767581.239745] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.20 ms +[1421767581.444827] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767581.650265] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767581.855642] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767582.061335] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767582.267535] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767582.473288] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767582.680494] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421767582.886557] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767583.091937] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421767583.298027] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767583.503496] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767583.712717] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.49 ms +[1421767583.918359] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767584.124034] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767584.329367] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767584.534990] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767584.741676] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767584.948431] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767585.154835] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.04 ms +[1421767585.360400] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767585.566950] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767585.772327] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767585.979112] 1870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421767586.185528] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767586.391055] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767586.597170] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767586.802223] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767587.008173] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767587.213460] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767587.418922] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767587.625589] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767587.830947] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767588.035629] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767588.242345] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767588.447629] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767588.652096] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767588.858083] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767589.063611] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421767589.269070] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767589.474202] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767589.679491] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767589.885180] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767590.089970] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767590.295373] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767590.500267] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767590.705883] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767590.911552] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767591.118103] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767591.323496] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767591.529278] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767591.735003] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767591.940356] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767592.145651] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767592.350310] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767592.555648] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767592.761626] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767592.968394] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767593.174019] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767593.379342] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767593.584679] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767593.790349] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767593.996755] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767594.201730] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767594.407905] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767594.614295] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767594.819953] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767595.024838] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767595.229870] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767595.435240] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767595.641097] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767595.847538] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767596.052495] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767596.257752] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767596.464174] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767596.670998] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767596.876418] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767597.082692] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767597.288007] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767597.493696] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767597.700845] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.77 ms +[1421767597.906605] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767598.112240] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767598.317619] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767598.523150] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767598.728869] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767598.934326] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767599.139334] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767599.373354] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.0 ms +[1421767599.580053] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767599.785472] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767599.991591] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767600.197434] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767600.403387] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421767600.608624] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767600.813940] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767601.020098] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767601.225508] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767601.430478] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767601.636701] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767601.843064] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767602.049340] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421767602.254826] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767602.460874] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421767602.665977] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767602.872444] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767603.078354] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767603.283439] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767603.488608] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767603.693849] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767603.899463] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767604.104507] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767604.309586] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767604.515905] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767604.721866] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767604.928410] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767605.133207] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767605.338127] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767605.543383] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767605.748557] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767605.953655] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767606.158848] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767606.364546] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421767606.570602] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421767606.777190] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767606.983569] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767607.188847] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767607.394118] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767607.599291] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767607.804967] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767608.009929] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767608.215028] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767608.420051] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767608.625926] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767608.830757] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767609.035070] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421767609.240047] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767609.445739] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767609.651661] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767609.856805] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767610.061418] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767610.266126] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767610.471516] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767610.678441] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767610.885002] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421767611.090242] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767611.295422] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767611.500941] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767611.706756] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767611.912762] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767612.118110] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767612.323135] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767612.529262] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767612.735397] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767612.941548] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767613.147804] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767613.354033] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767613.559545] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767613.765287] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767613.971026] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421767614.176253] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767614.381493] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767614.587034] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767614.792805] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767614.999595] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767615.205087] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767615.410520] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767615.615914] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767615.821165] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767616.025856] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767616.231982] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767616.437842] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767616.644608] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767616.850655] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767617.055545] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767617.260827] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767617.466989] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767617.673618] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767617.879090] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767618.083980] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767618.290380] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767618.496273] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767618.701662] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767618.907568] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767619.113299] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767619.318700] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767619.525236] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767619.730157] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767619.936779] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767620.141738] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767620.347780] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767620.552626] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767620.758991] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767620.964487] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767621.171023] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767621.376594] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767621.582029] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767621.787427] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767621.993778] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767622.198933] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767622.404354] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767622.609435] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767622.814780] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767623.019414] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767623.225218] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767623.431651] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767623.637378] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767623.842744] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767624.047517] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767624.252558] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767624.457896] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767624.662773] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767624.868085] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767625.073997] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767625.279234] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767625.484567] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767625.690212] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767625.895584] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767626.101684] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767626.307018] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767626.513404] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767626.719150] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767626.924797] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767627.130259] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767627.335668] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767627.540853] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767627.746361] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767627.953142] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767628.159239] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767628.364766] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767628.570730] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767628.776499] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767628.983464] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421767629.189213] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767629.394654] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767629.600723] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767629.807016] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767630.012984] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767630.219237] 1870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767630.424612] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767630.630025] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767630.835593] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767631.040953] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421767631.246860] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421767631.452516] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767631.658579] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421767631.865205] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767632.070000] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767632.274928] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767632.480045] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767632.685443] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767632.890974] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767633.096489] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767633.301609] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767633.507591] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767633.712995] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767633.918108] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767634.123622] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767634.328774] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767634.534460] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767634.739936] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767634.945008] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767635.149616] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767635.356022] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421767635.561982] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421767635.767453] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767635.973957] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767636.179531] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767636.388094] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.82 ms +[1421767636.601350] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.05 ms +[1421767636.807163] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767637.012409] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767637.218230] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421767637.423693] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767637.629099] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767637.834561] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767638.039465] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767638.244606] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767638.449800] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767638.656092] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767638.861018] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767639.065545] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767639.270849] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767639.476018] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767639.681230] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767639.886984] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767640.092214] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767640.297739] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767640.503669] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767640.709272] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767640.915578] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767641.121408] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767641.327846] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767641.533304] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767641.738567] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767641.943993] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767642.149594] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767642.356011] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421767642.561701] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767642.767509] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767642.973032] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767643.178875] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767643.385393] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421767643.590752] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767643.796566] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421767644.001636] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767644.206773] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767644.411755] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767644.616685] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767644.823035] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767645.027968] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767645.233159] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767645.440057] 1870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767645.646868] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767645.852302] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767646.057082] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767646.262083] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767646.468441] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767646.673758] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767646.879134] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767647.085221] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767647.290867] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767647.496412] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767647.701906] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767647.908326] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767648.113351] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767648.318623] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767648.524740] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767648.730023] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767648.935334] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767649.140474] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767649.346736] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767649.552107] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767649.757378] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767649.962865] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767650.168387] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767650.373782] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767650.578982] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767650.783930] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767650.989444] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767651.195046] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767651.399995] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767651.605156] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767651.811498] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767652.017347] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767652.222567] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767652.428696] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767652.634202] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767652.839143] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767653.043997] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767653.249286] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767653.455118] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767653.660485] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767653.866679] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767654.071667] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767654.276619] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767654.481770] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767654.687259] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767654.892905] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767655.098076] 1148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767655.302806] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767655.508366] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767655.713608] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767655.919054] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767656.123991] 847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767656.329234] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767656.534333] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767656.740949] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767656.946527] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767657.152106] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767657.357400] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767657.562838] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767657.768392] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767657.975203] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767658.180243] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.02 ms +[1421767658.385565] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767658.590818] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767658.796375] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767659.001986] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767659.208329] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767659.413395] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767659.618282] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767659.823362] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767660.028418] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767660.233188] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767660.439340] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767660.644385] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767660.849784] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767661.056216] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767661.261397] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767661.467827] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767661.673855] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767661.879418] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767662.084336] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767662.289632] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767662.494958] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767662.700574] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767662.905952] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767663.111266] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767663.316278] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767663.521613] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767663.726599] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767663.931990] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767664.138073] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767664.343333] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767664.550661] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.64 ms +[1421767664.756353] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767664.961582] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767665.167461] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767665.372732] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767665.578343] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767665.783445] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767665.989884] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421767666.195385] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767666.401916] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421767666.607320] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767666.812877] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767667.017653] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767667.224022] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767667.429462] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767667.634552] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767667.839719] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767668.044441] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767668.249514] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421767668.454654] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767668.675496] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421767668.882160] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767669.087130] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767669.293142] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767669.498093] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767669.707415] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.35 ms +[1421767669.913002] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767670.117770] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767670.323057] 837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767670.528881] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767670.734701] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767670.940182] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767671.145174] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767671.351790] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767671.556890] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767671.762208] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767671.968161] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767672.173690] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767672.378903] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767672.584832] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767672.790108] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767672.995318] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767673.200083] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767673.405172] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767673.611484] 1897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767673.817574] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767674.022182] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767674.227289] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767674.432477] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767674.637499] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767674.843466] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767675.048891] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767675.254164] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767675.459420] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767675.664765] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767675.871420] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767676.077138] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767676.283431] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767676.488676] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767676.693640] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767676.898417] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767677.103986] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767677.310159] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767677.515358] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767677.720545] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767677.926085] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767678.131309] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767678.336664] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767678.542371] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767678.747986] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767678.954778] 1955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421767679.160367] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767679.365660] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767679.570986] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767679.776425] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767679.982405] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767680.187978] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767680.393040] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767680.599278] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767680.804839] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767681.010060] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767681.214882] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767681.421190] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421767681.626448] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767681.831727] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767682.036321] 1261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767682.242078] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767682.447918] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767682.652934] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767682.858407] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767683.063245] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767683.268584] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767683.474201] 555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767683.679509] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767683.886313] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767684.091316] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767684.296236] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767684.502761] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767684.709161] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767684.915375] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767685.121972] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767685.328013] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767685.533950] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421767685.739290] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767685.944149] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767686.149102] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767686.354401] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767686.560265] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767686.765790] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767686.971591] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767687.177444] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767687.382400] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767687.587597] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767687.792688] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767687.998120] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767688.203016] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767688.408382] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767688.614648] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767688.819606] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767689.025537] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767689.232247] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421767689.437636] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767689.643485] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767689.849427] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767690.054213] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767690.259615] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767690.464965] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767690.670692] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767690.875977] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767691.081370] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767691.287683] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767691.494530] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767691.700500] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767691.905959] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767692.110908] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767692.316273] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767692.521786] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767692.726854] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767692.931824] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767693.137009] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767693.341934] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767693.547406] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767693.754432] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421767693.959785] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767694.164788] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767694.370521] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767694.577233] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767694.782877] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767694.988006] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767695.192848] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767695.397988] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767695.603009] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767695.808414] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421767696.013093] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767696.218120] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767696.423411] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767696.629184] 1186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767696.835604] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767697.040486] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767697.245455] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767697.450881] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767697.657832] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421767697.864807] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421767698.071162] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421767698.277200] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767698.482191] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767698.686953] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767698.892731] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767699.098424] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767699.303765] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767699.509340] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767699.714484] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767699.919425] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767700.124576] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767700.338163] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.52 ms +[1421767700.543535] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767700.748550] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767700.953910] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767701.160979] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421767701.366654] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421767701.572767] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767701.778949] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421767701.984233] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767702.190450] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767702.395713] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767702.600880] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767702.807400] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767703.012548] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767703.218388] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767703.424544] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767703.629912] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767703.836542] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767704.041738] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767704.247024] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767704.453046] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421767704.659345] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.67 ms +[1421767704.864544] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767705.069293] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767705.274509] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767705.479653] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767705.684661] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767705.889726] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767706.094595] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767706.299368] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767706.504433] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767706.710812] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767706.917310] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767707.122293] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767707.328462] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767707.533153] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767707.738523] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421767707.946154] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.32 ms +[1421767708.170546] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421767708.383474] 1072 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.82 ms +[1421767708.588987] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767708.795584] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767709.000691] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767709.207922] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.40 ms +[1421767709.430855] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421767709.642764] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.09 ms +[1421767709.848160] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767710.052717] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767710.257834] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767710.463215] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767710.669735] 1720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767710.875141] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767711.079877] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767711.284973] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767711.490645] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767711.697143] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767711.902246] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767712.108170] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767712.314306] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767712.519832] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767712.724872] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767712.930252] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767713.136572] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767713.342285] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767713.548410] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421767713.753810] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767713.959936] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767714.165313] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767714.370615] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767714.576182] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767714.782086] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767714.987849] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767715.193505] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767715.399150] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767715.604677] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767715.809917] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767716.014820] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767716.219979] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767716.425192] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767716.630374] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767716.836710] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767717.041191] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767717.246141] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767717.451369] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767717.659061] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767717.864147] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767718.068714] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767718.273457] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767718.478752] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767718.683582] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767718.888654] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767719.096118] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.93 ms +[1421767719.301522] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767719.506612] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767719.711377] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767719.916507] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767720.122056] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767720.326904] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767720.532547] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767720.737949] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767720.943632] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767721.148827] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767721.354246] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421767721.559545] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767721.764585] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767721.970011] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767722.175222] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767722.381568] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767722.587658] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767722.792801] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767722.998212] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767723.203819] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767723.409182] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767723.615073] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767723.821377] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767724.026903] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767724.231926] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767724.437118] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767724.642291] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767724.849122] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767725.055487] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421767725.260697] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767725.467108] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767725.672728] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767725.878400] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767726.083556] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767726.288462] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767726.493854] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767726.699489] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767726.905000] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767727.110058] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421767727.314941] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767727.519979] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767727.725509] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767727.931927] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421767728.138516] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767728.343620] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767728.549528] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767728.755125] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767728.961096] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767729.166248] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767729.372578] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767729.578279] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767729.783203] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767729.989591] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767730.194898] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767730.399858] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767730.605941] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767730.811140] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767731.016134] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767731.221672] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767731.426993] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767731.632583] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767731.839094] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421767732.044124] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767732.250496] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767732.457154] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767732.662077] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767732.867062] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767733.072196] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767733.277129] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767733.482604] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767733.687792] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767733.893908] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767734.098827] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767734.304768] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767734.509786] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767734.714906] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767734.920155] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767735.125605] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767735.330907] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767735.536645] 841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767735.743427] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767735.949072] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767736.155697] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767736.361768] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767736.567168] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767736.773919] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767736.980214] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421767737.185856] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767737.390903] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767737.597144] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767737.802367] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767738.007130] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767738.213446] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767738.418296] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767738.623605] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767738.829686] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421767739.034238] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767739.239103] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767739.443859] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421767739.650118] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767739.855690] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767740.060470] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767740.265744] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767740.472095] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767740.676919] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767740.883614] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767741.088855] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767741.294330] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767741.499561] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767741.705037] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767741.911177] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767742.116311] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767742.321016] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767742.526296] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767742.732733] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767742.938526] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767743.144075] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767743.350225] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767743.555741] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767743.761467] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767743.967065] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767744.172229] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767744.378648] 1716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767744.585262] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767744.790554] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767744.995752] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767745.201676] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767745.407090] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767745.613726] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767745.819886] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421767746.025433] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767746.230267] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767746.435296] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767746.640372] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767746.845088] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767747.049540] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767747.254407] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767747.460631] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767747.666050] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767747.871654] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421767748.076629] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767748.281708] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767748.487566] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767748.693148] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767748.898636] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767749.103979] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767749.309289] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767749.514991] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767749.720508] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767749.925742] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767750.131629] 1175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767750.337123] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767750.542835] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767750.747829] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767750.952902] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767751.158756] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767751.363876] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767751.569132] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767751.774501] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767751.979900] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767752.186211] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767752.391717] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767752.597451] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767752.803001] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767753.008099] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767753.213465] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767753.418324] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767753.623527] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767753.828411] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767754.033142] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767754.238286] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767754.444940] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421767754.650997] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767754.856914] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767755.063113] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767755.269704] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421767755.474614] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767755.680294] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767755.885423] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767756.090611] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421767756.296387] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767756.502709] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421767756.708256] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767756.913889] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767757.119570] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767757.324711] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767757.530597] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421767757.735576] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767757.941805] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767758.146940] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767758.352198] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767758.557873] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767758.763975] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767758.969898] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767759.175318] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767759.380768] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767759.586139] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767759.791158] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767759.996136] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767760.201463] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767760.407070] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767760.611868] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767760.818326] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421767761.023667] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767761.229628] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767761.435923] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421767761.641371] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767761.846745] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767762.052832] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767762.261218] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.51 ms +[1421767762.467652] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767762.674537] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421767762.879944] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767763.085309] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767763.290435] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767763.496474] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767763.701878] 555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767763.907294] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767764.112645] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421767764.319162] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767764.524818] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767764.731233] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421767764.938163] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421767765.143767] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767765.349517] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767765.554848] 825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767765.760240] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767765.966698] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421767766.172168] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767766.378861] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.67 ms +[1421767766.584077] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767766.789158] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767766.995411] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767767.200412] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767767.406758] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421767767.612758] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767767.818114] 1417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767768.022631] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767768.229154] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767768.434717] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767768.639916] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767768.845282] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767769.050169] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767769.256347] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767769.461659] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421767769.667232] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767769.872658] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767770.078305] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767770.283420] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767770.489253] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767770.695972] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421767770.901401] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767771.107430] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767771.312643] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767771.518707] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767771.724205] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767771.930836] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767772.136488] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767772.341594] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767772.546780] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767772.752253] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767772.959572] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.82 ms +[1421767773.166669] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.00 ms +[1421767773.376507] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.90 ms +[1421767773.586994] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.46 ms +[1421767773.798947] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.81 ms +[1421767774.015096] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421767774.237590] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421767774.464524] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421767774.692377] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421767774.957715] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=61.0 ms +[1421767775.186582] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421767775.475941] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.1 ms +[1421767775.754859] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.5 ms +[1421767775.974186] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421767776.257664] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.1 ms +[1421767776.481516] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421767776.687154] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767776.893576] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767777.099290] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767777.306166] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.91 ms +[1421767777.516746] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.12 ms +[1421767777.731216] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421767777.973151] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=37.5 ms +[1421767778.188401] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421767778.459508] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=67.3 ms +[1421767778.729848] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=66.2 ms +[1421767779.003593] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.8 ms +[1421767779.287879] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.3 ms +[1421767779.571293] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.4 ms +[1421767779.851411] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.2 ms +[1421767780.073171] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421767780.292497] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421767780.517728] 1330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421767780.742876] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421767780.970962] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421767781.196464] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421767781.411729] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421767781.617515] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767781.826237] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.38 ms +[1421767782.033486] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.89 ms +[1421767782.246342] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.10 ms +[1421767782.460961] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421767782.676617] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.4 ms +[1421767782.891604] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421767783.111659] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421767783.391060] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.5 ms +[1421767783.676006] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.1 ms +[1421767783.902987] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421767784.190088] 1503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.0 ms +[1421767784.455619] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=61.7 ms +[1421767784.661341] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767784.866973] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767785.072841] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767785.278451] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767785.484252] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767785.689656] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767785.895457] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421767786.100301] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767786.305364] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767786.511361] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767786.717172] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767786.923771] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767787.129563] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767787.335698] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421767787.540706] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767787.746503] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767787.952164] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767788.157582] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767788.362820] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767788.568409] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767788.773452] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767788.978965] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767789.184229] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767789.389614] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767789.595326] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767789.800742] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767790.005954] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767790.211194] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767790.416493] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767790.622574] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767790.828144] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767791.041595] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421767791.271341] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421767791.485809] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.3 ms +[1421767791.737394] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=47.2 ms +[1421767792.003983] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.5 ms +[1421767792.209037] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767792.415613] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767792.622456] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767792.838510] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.9 ms +[1421767793.051380] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.07 ms +[1421767793.264439] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.56 ms +[1421767793.517305] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.3 ms +[1421767793.779772] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=58.5 ms +[1421767793.999127] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421767794.224231] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421767794.455125] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.9 ms +[1421767794.738169] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.7 ms +[1421767794.957572] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421767795.237126] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.7 ms +[1421767795.453616] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421767795.660104] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767795.865690] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767796.070742] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767796.275900] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767796.480807] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767796.685882] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767796.892435] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767797.113800] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421767797.346142] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.8 ms +[1421767797.591494] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=40.8 ms +[1421767797.806834] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421767798.012518] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767798.217895] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767798.424132] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421767798.631448] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.02 ms +[1421767798.843630] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.70 ms +[1421767799.061212] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421767799.273442] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.25 ms +[1421767799.488282] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421767799.705965] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421767799.929570] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421767800.152726] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421767800.381310] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421767800.662161] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.5 ms +[1421767800.889236] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421767801.094362] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767801.299502] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767801.504903] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767801.709493] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767801.916723] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.36 ms +[1421767802.124828] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.34 ms +[1421767802.338341] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.73 ms +[1421767802.543533] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767802.748435] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767802.955092] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421767803.160386] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767803.366551] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767803.572078] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421767803.777203] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767803.982269] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767804.187527] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767804.392967] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767804.598747] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767804.804422] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767805.009695] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767805.215628] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767805.420855] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767805.626639] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767805.832478] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767806.037308] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767806.243750] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421767806.450098] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767806.655673] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767806.861656] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767807.066875] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767807.272789] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767807.478030] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767807.684288] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767807.889831] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767808.094593] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767808.301033] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767808.507615] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767808.712707] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767808.917790] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767809.123898] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421767809.329133] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767809.534505] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767809.741351] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421767809.947231] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421767810.152451] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767810.357585] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767810.562968] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767810.769481] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767810.975404] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767811.181003] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767811.386167] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767811.591715] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767811.797666] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767812.002596] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767812.207553] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767812.412830] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767812.617662] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767812.822888] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767813.027966] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767813.233772] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767813.439027] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767813.644543] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767813.849757] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.03 ms +[1421767814.054339] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767814.259333] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767814.468749] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.37 ms +[1421767814.673732] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767814.879175] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767815.084370] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767815.289595] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767815.494869] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767815.700349] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767815.905483] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767816.110370] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767816.316074] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767816.521678] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767816.726824] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767816.932254] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767817.138651] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767817.343522] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767817.548694] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767817.754205] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767817.959771] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767818.164898] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767818.370984] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767818.577028] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767818.782180] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767818.987410] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767819.192910] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767819.398022] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767819.604468] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767819.809503] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767820.014410] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767820.219411] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767820.424749] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767820.630791] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767820.836093] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767821.041233] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767821.247482] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767821.452550] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767821.659081] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421767821.864763] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767822.069636] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767822.274808] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767822.480191] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767822.684908] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767822.889915] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767823.094557] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767823.299710] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767823.505378] 1148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767823.712093] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421767823.918111] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421767824.123097] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767824.328917] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767824.533806] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767824.739850] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767824.945829] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767825.151080] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767825.356355] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767825.562941] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421767825.768645] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421767825.974190] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421767826.180324] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767826.385607] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767826.593777] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767826.799500] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767827.004610] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767827.210247] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767827.415262] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767827.621808] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767827.827086] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767828.032910] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767828.238299] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767828.443735] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767828.649949] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767828.855380] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767829.061257] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767829.266207] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767829.471185] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767829.676327] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767829.881652] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767830.086309] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767830.291680] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767830.497820] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767830.704622] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767830.910768] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767831.117007] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421767831.321898] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767831.527438] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767831.733646] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767831.938932] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767832.144260] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767832.349483] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767832.554961] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767832.760377] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767832.965988] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767833.171264] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767833.376374] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767833.582514] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767833.788203] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767833.993723] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767834.199594] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767834.405151] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767834.610870] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767834.816472] 512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767835.021434] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767835.226508] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767835.432423] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421767835.637699] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767835.844259] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767836.049394] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767836.254278] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767836.459567] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767836.665168] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767836.870663] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767837.075913] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767837.281164] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767837.486528] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767837.692771] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767837.897911] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767838.102856] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767838.308673] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767838.514130] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767838.719593] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767838.924997] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767839.131428] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767839.336631] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767839.542005] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767839.747553] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767839.953011] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767840.158668] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767840.363741] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767840.570233] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767840.775860] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767840.982437] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767841.188412] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421767841.394718] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421767841.599889] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767841.805732] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767842.011125] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421767842.216539] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767842.422560] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767842.627792] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767842.833338] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767843.038699] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421767843.243757] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767843.449019] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767843.654448] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767843.860711] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767844.065584] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767844.270729] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767844.477080] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767844.682444] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767844.887663] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767845.092806] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767845.298658] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767845.504472] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421767845.709869] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767845.916501] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767846.122816] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767846.328253] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421767846.534100] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421767846.739353] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767846.945750] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421767847.151109] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767847.357181] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767847.562625] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421767847.767899] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767847.973510] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767848.179898] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767848.386898] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421767848.593874] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421767848.799588] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767849.004788] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767849.209891] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767849.415041] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767849.621184] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767849.827848] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767850.032846] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767850.239013] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767850.444633] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767850.650033] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767850.856070] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421767851.061991] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767851.267369] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767851.472777] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767851.677752] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767851.883637] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767852.089652] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421767852.295031] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767852.500562] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767852.705516] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767852.910743] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767853.115648] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767853.322182] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767853.527994] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767853.734431] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767853.940006] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767854.145971] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421767854.351218] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767854.556573] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767854.761730] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767854.968272] 1529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767855.174748] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767855.380993] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767855.586311] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767855.792411] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767855.998736] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767856.204347] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767856.409530] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767856.614849] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767856.821013] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767857.026741] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767857.232076] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767857.437175] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767857.642364] 841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767857.848175] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767858.053317] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767858.258489] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767858.463987] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767858.669145] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767858.874239] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767859.079936] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767859.285866] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767859.491035] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767859.697196] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767859.903431] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767860.109037] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421767860.315193] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767860.520065] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767860.725232] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767860.932098] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767861.138285] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.93 ms +[1421767861.344541] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767861.550129] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767861.756478] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767861.962107] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767862.167401] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767862.372545] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767862.577947] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767862.783451] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767862.989247] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767863.194118] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767863.401017] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421767863.606198] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767863.811786] 1063 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767864.016841] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767864.222084] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767864.427249] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767864.633820] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421767864.840580] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767865.045480] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767865.251709] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767865.457281] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767865.663708] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767865.869822] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421767866.074838] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767866.280046] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767866.485708] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421767866.692348] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421767866.897614] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767867.102423] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767867.308483] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767867.514718] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767867.719638] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767867.924745] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767868.130983] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767868.337712] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421767868.542916] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767868.748054] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767868.953588] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767869.158691] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767869.364698] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767869.569660] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767869.774720] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767869.980030] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767870.186631] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421767870.391854] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767870.597175] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767870.802813] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767871.008074] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767871.213685] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767871.418857] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767871.624004] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767871.828811] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767872.034456] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767872.240575] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767872.446957] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767872.652779] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767872.858181] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767873.064079] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767873.269347] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767873.474597] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767873.680928] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767873.885996] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767874.091894] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767874.298278] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421767874.503794] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767874.710242] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767874.920255] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.76 ms +[1421767875.125783] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767875.331307] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767875.536754] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767875.743253] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767875.948906] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767876.154322] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767876.360556] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421767876.567396] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421767876.773949] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421767876.979346] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767877.185145] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767877.390116] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767877.595602] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767877.800844] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767878.005786] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767878.211050] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767878.417289] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767878.623781] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767878.828915] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421767879.033766] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767879.239855] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767879.445465] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421767879.651166] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421767879.856209] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767880.061818] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767880.268243] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767880.473704] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767880.679417] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767880.885354] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767881.090430] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767881.295524] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767881.500583] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767881.706258] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421767881.911788] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767882.117424] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767882.322987] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767882.529837] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767882.735207] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767882.941847] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767883.147078] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767883.353489] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767883.558818] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767883.764744] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767883.970175] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767884.174984] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767884.379834] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767884.586027] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767884.791447] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767884.996768] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767885.202226] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767885.407345] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767885.612665] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767885.818183] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767886.023994] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421767886.228832] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767886.435261] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421767886.640832] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767886.846933] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767887.051776] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767887.257411] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767887.465890] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767887.671806] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767887.876872] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767888.081927] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767888.286866] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767888.493215] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767888.699087] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767888.905809] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421767889.111052] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767889.317524] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767889.523192] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767889.728238] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767889.934333] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767890.140166] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767890.345394] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767890.550378] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767890.755582] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767890.960753] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767891.166756] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421767891.372459] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767891.578042] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767891.783478] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767891.990226] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767892.195499] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767892.400929] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767892.607467] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767892.812978] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767893.018128] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421767893.223600] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767893.428691] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767893.634854] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421767893.840084] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767894.049168] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.08 ms +[1421767894.254618] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767894.460157] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767894.665692] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767894.871530] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767895.077399] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767895.282378] 1049 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767895.488001] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767895.693171] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767895.898401] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767896.103238] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767896.309131] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767896.514554] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767896.720768] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767896.926721] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767897.131675] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767897.337785] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421767897.543314] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767897.748944] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767897.954119] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767898.159547] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421767898.364458] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767898.569701] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767898.775213] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767898.980762] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767899.187018] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767899.392132] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767899.597521] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767899.803286] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767900.007871] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767900.212992] 904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767900.418197] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767900.624400] 1716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767900.830793] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767901.036249] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421767901.241596] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421767901.448884] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.35 ms +[1421767901.654145] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767901.859653] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767902.064620] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767902.270824] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421767902.479433] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.31 ms +[1421767902.689748] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.22 ms +[1421767902.896187] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767903.102213] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767903.308205] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767903.527997] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421767903.740008] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.95 ms +[1421767903.955027] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421767904.205491] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.4 ms +[1421767904.465634] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=55.9 ms +[1421767904.692722] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421767904.972980] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.1 ms +[1421767905.245733] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=68.4 ms +[1421767905.450804] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767905.657180] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767905.862925] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767906.074718] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.14 ms +[1421767906.293177] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421767906.512310] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421767906.735405] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421767906.965397] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421767907.254219] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.6 ms +[1421767907.487070] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.6 ms +[1421767907.770142] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.7 ms +[1421767907.999742] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421767908.226318] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421767908.431291] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767908.636921] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421767908.843856] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421767909.052832] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.33 ms +[1421767909.263933] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.31 ms +[1421767909.481416] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421767909.694647] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.93 ms +[1421767909.913332] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421767910.191775] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.6 ms +[1421767910.414416] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421767910.640453] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421767910.867520] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421767911.148685] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.4 ms +[1421767911.354102] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767911.559472] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767911.764596] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767911.970112] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767912.176482] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767912.381485] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767912.587129] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767912.792624] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767912.998196] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767913.204231] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767913.414033] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.87 ms +[1421767913.630547] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421767913.874427] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.5 ms +[1421767914.092068] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421767914.311437] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421767914.517144] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767914.723727] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421767914.928513] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767915.134381] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421767915.356774] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421767915.568717] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.70 ms +[1421767915.781935] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.87 ms +[1421767916.042253] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.1 ms +[1421767916.248554] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767916.521338] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.0 ms +[1421767916.742049] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421767916.968431] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421767917.191781] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421767917.414414] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421767917.700798] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.1 ms +[1421767917.926247] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421767918.146276] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421767918.370697] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421767918.596071] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421767918.821171] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421767919.045174] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421767919.270773] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421767919.482528] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.81 ms +[1421767919.688661] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767919.893829] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767920.102368] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.74 ms +[1421767920.314316] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.21 ms +[1421767920.529006] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421767920.750804] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421767921.015734] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.7 ms +[1421767921.236139] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421767921.462205] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421767921.750921] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.4 ms +[1421767921.978388] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421767922.197736] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421767922.418552] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421767922.624268] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767922.907131] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.8 ms +[1421767923.133989] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421767923.419594] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.4 ms +[1421767923.704411] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.9 ms +[1421767923.930776] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421767924.155801] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421767924.378087] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421767924.584691] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767924.790799] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421767924.997551] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767925.207408] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.69 ms +[1421767925.420685] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.30 ms +[1421767925.633708] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.43 ms +[1421767925.848549] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421767926.068228] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421767926.320392] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.2 ms +[1421767926.525567] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421767926.730956] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767926.937711] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421767927.172819] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.1 ms +[1421767927.390915] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421767927.661631] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=66.5 ms +[1421767927.944376] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.3 ms +[1421767928.149850] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767928.356545] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767928.563156] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767928.768088] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767928.973488] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767929.178456] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767929.383909] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421767929.594571] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.61 ms +[1421767929.807933] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.41 ms +[1421767930.027868] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421767930.242348] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421767930.460944] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421767930.679234] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421767930.884724] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767931.090960] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421767931.297591] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.89 ms +[1421767931.507858] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.85 ms +[1421767931.720561] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.50 ms +[1421767931.934802] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.48 ms +[1421767932.153982] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421767932.375156] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421767932.598823] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421767932.824891] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421767933.109187] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.0 ms +[1421767933.333791] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421767933.553286] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421767933.758521] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767933.981860] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421767934.268009] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.4 ms +[1421767934.493809] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421767934.722100] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421767935.009228] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.1 ms +[1421767935.251441] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.2 ms +[1421767935.460197] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767935.665678] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767935.871339] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767936.084008] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.21 ms +[1421767936.294488] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.56 ms +[1421767936.508236] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.33 ms +[1421767936.723365] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421767936.941276] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421767937.218378] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.0 ms +[1421767937.443619] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421767937.665257] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421767937.953148] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.6 ms +[1421767938.172217] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421767938.445512] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.1 ms +[1421767938.668686] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421767938.893264] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421767939.114471] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421767939.401639] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.3 ms +[1421767939.630223] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421767939.851226] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421767940.084952] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.9 ms +[1421767940.291774] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421767940.497204] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767940.702302] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767940.907797] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767941.113599] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421767941.318834] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767941.524016] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767941.729495] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767941.935205] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767942.141156] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767942.346695] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767942.552833] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767942.758558] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767942.964030] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767943.169098] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767943.374158] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421767943.579318] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767943.784832] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767943.990143] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767944.195123] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767944.400433] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421767944.605396] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767944.811620] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421767945.017688] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421767945.222549] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767945.428306] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767945.633349] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767945.838586] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767946.043069] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767946.248327] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767946.454800] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767946.659828] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767946.866023] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421767947.071055] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767947.275821] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767947.481541] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421767947.686789] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767947.892442] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767948.097314] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421767948.302739] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767948.507950] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421767948.713052] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767948.918242] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767949.123226] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421767949.328162] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767949.533177] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767949.739639] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421767949.945366] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767950.152245] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421767950.357287] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767950.562629] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767950.767670] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767950.972635] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767951.178263] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767951.383054] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421767951.588319] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767951.793591] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421767951.999876] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767952.206376] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767952.412666] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421767952.618200] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767952.823731] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767953.029813] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767953.236141] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767953.441592] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421767953.647202] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767953.852645] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767954.057280] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767954.262313] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767954.467496] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767954.673152] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421767954.878549] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421767955.083934] 1392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767955.289324] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767955.495364] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767955.701817] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767955.907147] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767956.113312] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767956.318588] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767956.523893] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767956.728853] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767956.934665] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421767957.139836] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767957.344836] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767957.550257] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767957.755723] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767957.961597] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767958.167399] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767958.372826] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767958.579391] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421767958.784435] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421767958.989816] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767959.196643] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767959.413120] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421767959.641439] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421767959.857048] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421767960.072995] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.2 ms +[1421767960.337136] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.3 ms +[1421767960.559955] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421767960.790063] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421767961.077844] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.4 ms +[1421767961.289884] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.15 ms +[1421767961.496326] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421767961.702832] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767961.908489] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767962.113890] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767962.319073] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767962.524634] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767962.730375] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421767962.935784] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767963.143055] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.50 ms +[1421767963.369361] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421767963.611723] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.0 ms +[1421767963.827758] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421767964.046307] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421767964.324675] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.5 ms +[1421767964.530247] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767964.736434] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421767964.941548] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767965.146676] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767965.360700] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.2 ms +[1421767965.586606] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421767965.803832] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421767966.018166] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421767966.238165] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421767966.458492] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421767966.737809] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.3 ms +[1421767966.958508] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421767967.187394] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421767967.415991] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421767967.641832] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421767967.847125] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767968.052608] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767968.259351] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421767968.464310] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421767968.669641] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767968.875197] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767969.080667] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767969.288002] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.58 ms +[1421767969.496690] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.93 ms +[1421767969.729644] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.0 ms +[1421767969.944223] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421767970.161509] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421767970.381945] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421767970.641550] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=55.1 ms +[1421767970.846862] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767971.051416] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767971.264494] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.22 ms +[1421767971.474779] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.20 ms +[1421767971.707262] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.1 ms +[1421767971.928248] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421767972.149740] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421767972.374936] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421767972.655617] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.5 ms +[1421767972.878756] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421767973.162763] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.0 ms +[1421767973.386611] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421767973.618459] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.4 ms +[1421767973.839334] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421767974.044245] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767974.249439] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767974.454231] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767974.659694] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767974.879024] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421767975.089346] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.56 ms +[1421767975.308770] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421767975.526273] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421767975.744128] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421767975.968349] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421767976.198382] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.1 ms +[1421767976.404874] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767976.610764] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767976.816159] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767977.030164] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421767977.240884] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.96 ms +[1421767977.478026] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.3 ms +[1421767977.690695] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.93 ms +[1421767977.895781] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767978.101569] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421767978.307669] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767978.512772] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767978.718499] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767978.923484] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767979.128694] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767979.334045] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421767979.539608] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767979.745073] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421767979.951488] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767980.156663] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767980.362603] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767980.567813] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767980.773157] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767980.979705] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767981.185363] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421767981.391903] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421767981.598501] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421767981.804316] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767982.010036] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421767982.216151] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767982.422066] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421767982.627899] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421767982.832947] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767983.038044] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421767983.243991] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421767983.449874] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421767983.655454] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767983.861332] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421767984.066590] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421767984.271468] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421767984.476726] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767984.682734] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421767984.888987] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421767985.096017] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.13 ms +[1421767985.301221] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767985.506992] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767985.712543] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767985.918131] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421767986.122984] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767986.329195] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421767986.534278] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767986.739723] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421767986.944876] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767987.150161] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421767987.355571] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421767987.561032] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767987.765966] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767987.972094] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421767988.177748] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767988.383156] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767988.589053] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421767988.794252] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421767988.999567] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767989.204876] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767989.410566] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767989.617133] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421767989.823326] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421767990.028936] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421767990.234234] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421767990.439542] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767990.645396] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421767990.851103] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767991.056729] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421767991.262208] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421767991.467613] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421767991.673757] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421767991.879298] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767992.084716] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767992.289826] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767992.495316] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421767992.700480] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421767992.905561] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767993.110661] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767993.316075] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767993.521829] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767993.727700] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767993.933228] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767994.138258] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767994.344597] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421767994.549826] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767994.755401] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767994.960160] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767995.165086] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421767995.370229] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421767995.575234] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421767995.779697] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421767995.984686] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421767996.190304] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767996.395242] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421767996.601478] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421767996.806681] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421767997.011555] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421767997.217080] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421767997.422285] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421767997.627603] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421767997.833192] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767998.038111] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421767998.243455] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767998.449222] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421767998.654982] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767998.860935] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421767999.066142] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421767999.271049] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421767999.477454] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421767999.683213] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421767999.889033] 130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768000.094372] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768000.300862] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421768000.506673] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768000.712149] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768000.917660] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768001.122887] 512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768001.328311] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768001.534506] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421768001.741101] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768001.947532] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768002.152773] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768002.359024] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768002.564622] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768002.770129] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768002.975596] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768003.180857] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768003.385931] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768003.590989] 825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768003.795861] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768004.000866] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768004.206427] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768004.412523] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768004.617514] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768004.823496] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768005.028188] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768005.233428] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768005.438358] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768005.643749] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768005.849377] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768006.055417] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421768006.260638] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768006.466088] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768006.671329] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768006.877699] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768007.083476] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768007.289275] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768007.495570] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768007.701754] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421768007.907631] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421768008.112734] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768008.317914] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768008.522647] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768008.728327] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768008.933574] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768009.139456] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421768009.344441] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768009.549457] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768009.754584] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768009.959819] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768010.165196] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768010.370701] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768010.576257] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768010.782256] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768010.988054] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768011.193227] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768011.398515] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768011.604436] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768011.811069] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768012.016005] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768012.221036] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768012.426004] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768012.631244] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768012.836942] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768013.041877] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768013.247123] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768013.452124] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768013.657366] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768013.862672] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768014.067375] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768014.273599] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768014.479126] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768014.685843] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768014.890891] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768015.096462] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768015.301782] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768015.508320] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768015.713230] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768015.918216] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768016.123134] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768016.328041] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768016.532965] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768016.739261] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768016.944618] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768017.149668] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768017.354574] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768017.559706] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768017.765323] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768017.970638] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768018.175528] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768018.380900] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768018.587579] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768018.792944] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768018.997833] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768019.204086] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768019.409279] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768019.615506] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768019.820782] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768020.025896] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768020.231816] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421768020.437568] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768020.643150] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768020.848540] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768021.053468] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768021.259823] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421768021.465115] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768021.670406] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768021.877187] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421768022.082681] 904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768022.289015] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768022.494122] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768022.700868] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768022.906464] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768023.111333] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768023.317472] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768023.522815] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768023.727918] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768023.933242] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768024.138742] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768024.343946] 296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768024.548825] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768024.755003] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768024.960493] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768025.165863] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768025.370919] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768025.576624] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421768025.784058] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.15 ms +[1421768026.010241] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421768026.227377] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421768026.433760] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768026.640225] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768026.845819] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768027.051444] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421768027.257137] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768027.462838] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768027.668754] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768027.874928] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768028.080978] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421768028.286147] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768028.493030] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421768028.698647] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768028.905115] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768029.110967] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768029.316476] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768029.522124] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421768029.728369] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768029.933773] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768030.139043] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768030.344957] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768030.550898] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768030.755772] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768030.960973] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768031.165924] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768031.371253] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768031.576594] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421768031.781881] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768031.986898] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768032.191936] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768032.398271] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768032.604052] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768032.809507] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421768033.014216] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768033.220586] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768033.425861] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768033.632287] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768033.837961] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768034.043981] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421768034.249145] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768034.454260] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768034.660853] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768034.866829] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768035.071491] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768035.276421] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768035.482675] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768035.688223] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768035.893310] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768036.099448] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768036.304545] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768036.509894] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768036.715391] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768036.920279] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768037.126522] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768037.331720] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768037.536958] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768037.742045] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768037.947642] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768038.152658] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768038.359160] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768038.565228] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768038.771747] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768038.978259] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768039.183755] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768039.388900] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768039.593889] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768039.799965] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768040.004691] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768040.210671] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768040.415882] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768040.622005] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768040.827971] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768041.032522] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768041.238074] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421768041.444487] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768041.650307] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421768041.855757] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768042.060571] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768042.266908] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768042.472450] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768042.678868] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421768042.883944] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768043.088543] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768043.294402] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768043.499496] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768043.705753] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768043.911248] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768044.116588] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421768044.321797] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768044.527194] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768044.732699] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768044.937562] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768045.142622] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768045.347497] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768045.552395] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768045.757702] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768045.964326] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768046.169582] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768046.376014] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768046.581754] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768046.787369] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768046.992871] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768047.197941] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768047.403346] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768047.608692] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421768047.814273] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768048.021099] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.97 ms +[1421768048.226354] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768048.431715] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768048.637455] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768048.842743] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768049.047672] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768049.252851] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768049.461158] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.00 ms +[1421768049.667356] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768049.873648] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768050.079487] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768050.284881] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768050.490277] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768050.695801] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768050.900584] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768051.105725] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421768051.310613] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768051.516737] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768051.721902] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768051.927323] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768052.132988] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768052.338247] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768052.543564] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768052.749118] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768052.954403] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768053.159079] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768053.365611] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768053.570905] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421768053.775959] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768053.981151] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768054.186516] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768054.392039] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768054.597183] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768054.802782] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768055.008243] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768055.213462] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768055.418801] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768055.624455] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768055.830864] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768056.035611] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768056.241629] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768056.447216] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768056.652974] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768056.858487] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768057.063303] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768057.269371] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768057.476205] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.80 ms +[1421768057.681824] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768057.887297] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768058.092472] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768058.297679] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768058.503168] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768058.709592] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768058.915458] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768059.121078] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768059.326505] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768059.533227] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768059.738796] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768059.945470] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768060.151087] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768060.356274] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768060.561415] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768060.766209] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768060.973185] 1870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768061.179464] 1503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421768061.384609] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768061.590208] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421768061.795079] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768062.001355] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421768062.206936] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768062.413025] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768062.619409] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768062.825122] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768063.029786] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768063.234542] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768063.439477] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768063.644400] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768063.849809] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768064.055314] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768064.262036] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768064.467562] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768064.672385] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768064.877827] 904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768065.082967] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768065.287727] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768065.492637] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768065.698491] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768065.903133] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768066.107832] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768066.312826] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768066.518839] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421768066.724165] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768066.929938] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768067.135206] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768067.341518] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421768067.546486] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768067.751696] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768067.957093] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768068.162513] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768068.367887] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768068.573483] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768068.778595] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768068.984997] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421768069.190275] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768069.395394] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768069.600790] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768069.806194] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768070.011686] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421768070.216958] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768070.422008] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768070.627449] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768070.832915] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768071.037709] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768071.243760] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768071.448661] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768071.654228] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768071.859781] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768072.064499] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768072.269695] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768072.474698] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768072.680913] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768072.885743] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768073.090494] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768073.296437] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768073.501528] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768073.707110] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768073.912802] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768074.119425] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768074.324957] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768074.530863] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768074.736631] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768074.942369] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768075.147482] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768075.353850] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421768075.558894] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768075.764160] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768075.968737] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768076.173878] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768076.379185] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768076.584268] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768076.790349] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768076.996168] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768077.202029] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768077.407210] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768077.612494] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768077.817787] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768078.023378] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768078.229712] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768078.434829] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768078.639864] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768078.845205] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768079.050151] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421768079.255343] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768079.461691] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768079.666645] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768079.871792] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768080.076861] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768080.281813] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768080.487257] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768080.693628] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421768080.899811] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768081.104900] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768081.310536] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768081.515897] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768081.720885] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768081.926059] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768082.131415] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768082.337719] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768082.542690] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768082.748799] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421768082.953891] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768083.159860] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768083.365760] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421768083.571484] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768083.776989] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768083.983024] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768084.188319] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421768084.393478] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768084.600252] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768084.806451] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768085.012326] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768085.218351] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421768085.423887] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768085.628548] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768085.834635] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768086.039739] 837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768086.244985] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768086.449882] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768086.655999] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768086.861364] 130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421768087.066138] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768087.272409] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768087.477342] 837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768087.682753] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768087.888327] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768088.093261] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768088.299494] 1913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421768088.506199] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768088.711372] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768088.917222] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768089.122832] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768089.328304] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768089.533683] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768089.740039] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768089.945081] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768090.151792] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421768090.357159] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768090.562633] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768090.768780] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421768090.974035] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768091.179439] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768091.385781] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768091.591583] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768091.797260] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421768092.001889] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421768092.207054] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768092.412494] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768092.618910] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768092.824080] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768093.028562] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768093.234496] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768093.439705] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768093.644717] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768093.850864] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768094.055939] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768094.261975] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768094.468260] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768094.673202] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768094.878914] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768095.083824] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768095.289128] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768095.494661] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421768095.700066] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768095.905380] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768096.111018] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768096.316330] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768096.522284] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768096.727997] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768096.934579] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768097.141097] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421768097.346211] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768097.551536] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768097.757016] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768097.962494] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768098.167572] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768098.373832] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768098.579603] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768098.784679] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768098.989700] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768099.195667] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768099.400942] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768099.606379] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768099.811762] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768100.024136] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.51 ms +[1421768100.230231] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768100.435609] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768100.641231] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768100.846750] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768101.051768] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768101.257223] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768101.462578] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768101.668070] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768101.873766] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768102.078635] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768102.284764] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768102.490748] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768102.696588] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768102.901773] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768103.106992] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768103.312379] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768103.517417] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768103.723256] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768103.929153] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768104.135705] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768104.340900] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768104.547829] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768104.753657] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768104.959970] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768105.165532] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768105.370759] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768105.577874] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768105.783270] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768105.988856] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768106.193986] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768106.399216] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768106.603973] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768106.809247] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421768107.014002] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768107.220380] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768107.426120] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768107.631680] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768107.837631] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421768108.042157] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768108.247516] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768108.453300] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768108.659973] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768108.865606] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768109.070450] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768109.275439] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768109.483653] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.16 ms +[1421768109.689275] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768109.894925] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768110.100274] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768110.305684] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768110.511210] 1063 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768110.716658] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768110.921888] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768111.127721] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768111.332854] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768111.538132] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768111.743492] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768111.948390] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768112.152921] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768112.358098] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768112.563938] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768112.769491] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768112.975600] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768113.180481] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768113.385689] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768113.591052] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421768113.796197] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768114.002515] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768114.207642] 512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768114.413879] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768114.620267] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768114.825692] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768115.030427] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768115.235471] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768115.440859] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768115.645834] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768115.851957] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768116.057485] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421768116.262561] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768116.468703] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768116.673917] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768116.880428] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768117.086524] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768117.291678] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768117.496814] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768117.701959] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768117.908048] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768118.113243] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768118.319819] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768118.526297] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768118.731757] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768118.937164] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768119.142297] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768119.348518] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768119.553796] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768119.759384] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768119.964677] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421768120.169513] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768120.374810] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768120.579884] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768120.785092] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768120.990107] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768121.196155] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768121.401626] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768121.608425] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421768121.815252] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421768122.020242] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768122.225055] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768122.430491] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768122.636844] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768122.842270] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768123.047514] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768123.252564] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768123.457965] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768123.663436] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768123.869191] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768124.074190] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768124.280066] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768124.486354] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768124.692819] 1880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768124.898045] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768125.103206] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768125.308762] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768125.513933] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768125.719778] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768125.925048] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768126.130319] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768126.335851] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768126.541553] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768126.746563] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768126.952471] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768127.157590] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768127.363649] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768127.569673] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768127.776414] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768127.982195] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768128.187334] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768128.393642] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768128.599230] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768128.804360] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768129.008991] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768129.214197] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768129.419232] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768129.624699] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768129.830875] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768130.036545] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421768130.241739] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768130.448169] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768130.653341] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768130.858599] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768131.063896] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768131.268752] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768131.473669] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768131.678873] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768131.885324] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421768132.090193] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768132.295523] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768132.500503] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768132.705767] 1330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768132.911212] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768133.117192] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768133.322580] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768133.528083] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768133.734366] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768133.941564] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.22 ms +[1421768134.151229] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.81 ms +[1421768134.363469] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.32 ms +[1421768134.605813] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.1 ms +[1421768134.855070] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.7 ms +[1421768135.078576] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421768135.284256] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768135.490254] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768135.695800] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768135.901911] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768136.108150] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768136.313824] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768136.519068] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768136.724697] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768136.929828] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768137.135478] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768137.341625] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.89 ms +[1421768137.547522] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768137.754411] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768137.960135] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768138.165849] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768138.371289] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768138.577531] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768138.783145] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768138.989710] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768139.194628] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768139.399951] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768139.604880] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768139.811256] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768140.015848] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768140.220943] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768140.427527] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768140.633485] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768140.838570] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768141.043728] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768141.249140] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768141.454371] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768141.659539] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768141.864933] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768142.071585] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768142.276860] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768142.483465] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768142.689149] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768142.894460] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768143.099165] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421768143.303955] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768143.509438] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768143.715036] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768143.924112] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.63 ms +[1421768144.130324] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768144.336775] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768144.542013] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768144.747805] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768144.953163] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768145.159247] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768145.364475] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768145.570375] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768145.775922] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768145.981256] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768146.186381] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768146.391897] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768146.597648] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768146.803071] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768147.007689] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768147.212652] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768147.417699] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768147.624518] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768147.830299] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768148.035213] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768148.240295] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768148.446522] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768148.651486] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768148.856565] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768149.061908] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768149.267335] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768149.473320] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768149.679128] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768149.885036] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768150.090834] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768150.296263] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768150.501898] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768150.708372] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768150.914271] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768151.119915] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768151.326392] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421768151.532279] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768151.738093] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768151.943465] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768152.148715] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768152.354235] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768152.560382] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768152.766553] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768152.972154] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768153.177181] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768153.382880] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768153.588343] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768153.793569] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768153.999189] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768154.204711] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768154.410011] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768154.614831] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768154.820231] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768155.025095] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768155.231223] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768155.436610] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768155.643066] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768155.848699] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768156.054674] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768156.260729] 1720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768156.465989] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768156.671377] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768156.877105] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768157.082170] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768157.287455] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768157.493633] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768157.699389] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768157.905179] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768158.110125] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768158.315306] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768158.521532] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768158.726976] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768158.931999] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768159.136937] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768159.342272] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768159.547954] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768159.754310] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768159.959754] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768160.165088] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768160.370013] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768160.575477] 841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768160.780906] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768160.986511] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768161.191400] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768161.396643] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768161.603236] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421768161.808027] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768162.013743] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768162.218854] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768162.424182] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768162.629685] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421768162.834999] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768163.039879] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768163.245106] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768163.450248] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768163.657166] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768163.863213] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768164.069750] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768164.275212] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768164.480755] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768164.687154] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768164.892955] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768165.098153] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768165.303061] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768165.509253] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768165.715483] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768165.921317] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.03 ms +[1421768166.127266] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421768166.332666] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768166.538591] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768166.744519] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768166.949765] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768167.154766] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768167.360286] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768167.567019] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768167.772754] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768167.978167] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768168.184034] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768168.390705] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768168.595874] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768168.800799] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768169.006978] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768169.213376] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768169.418624] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768169.625268] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768169.830565] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768170.035402] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768170.240547] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768170.445800] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768170.651063] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768170.856674] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768171.061226] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768171.266921] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768171.472838] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768171.678824] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768171.885948] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421768172.091446] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421768172.296443] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768172.501793] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768172.707288] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768172.912250] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768173.117436] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768173.324151] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768173.530665] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768173.736668] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768173.944715] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.17 ms +[1421768174.151141] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768174.357414] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768174.562656] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768174.768391] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768174.974703] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768175.180129] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768175.385302] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768175.591531] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768175.796543] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768176.001348] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768176.206730] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768176.411683] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768176.616626] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768176.821925] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768177.026947] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768177.231857] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768177.437173] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768177.642250] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768177.848504] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768178.053883] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421768178.258945] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768178.464935] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768178.670562] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768178.877512] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421768179.088228] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.86 ms +[1421768179.303077] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421768179.520341] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421768179.726571] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768179.931938] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768180.138742] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421768180.358401] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421768180.571135] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.55 ms +[1421768180.783373] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.87 ms +[1421768181.001299] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421768181.223662] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421768181.445830] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421768181.730760] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.6 ms +[1421768181.957865] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421768182.182044] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421768182.405528] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421768182.628749] 841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421768182.859060] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421768183.065148] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768183.270455] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768183.476528] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768183.681991] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768183.887215] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768184.092210] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768184.297912] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768184.503158] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768184.708233] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768184.913341] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768185.120074] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.11 ms +[1421768195.550253] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421768195.776254] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421768196.051608] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.8 ms +[1421768196.337688] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.9 ms +[1421768196.543531] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421768196.749025] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768196.954393] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768197.159521] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768197.364203] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768197.569157] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768197.774224] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768197.979680] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768198.184801] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768198.390369] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768198.595385] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768198.800654] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768199.006735] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421768199.212742] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768199.418016] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768199.624422] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768199.831214] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421768200.036018] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768200.241880] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421768200.447228] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768200.652681] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768200.857801] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421768201.063750] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768201.269007] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768201.475615] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768201.681378] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768201.886989] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768202.092054] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768202.297367] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768202.503315] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768202.708584] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768202.913909] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768203.118911] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768203.324235] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768203.529472] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768203.735048] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768203.940657] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421768204.145867] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768204.352126] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768204.557237] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768204.762326] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768204.969054] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421768205.174962] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768205.381217] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768205.586578] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768205.791693] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768205.997933] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768206.203510] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768206.409783] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768206.615249] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768206.820622] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768207.026278] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768207.231759] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768207.439681] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.70 ms +[1421768207.644781] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768207.850786] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768208.056267] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421768208.261044] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768208.466202] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768208.672061] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768208.877181] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768209.082100] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768209.287061] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768209.492388] 1238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768209.697650] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768209.903129] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768210.112072] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768210.318241] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768210.523515] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768210.728387] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768210.933936] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421768211.139738] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768211.345745] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421768211.551884] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768211.757187] 1186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768211.963758] 1670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421768212.170161] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768212.375778] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768212.582424] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768212.788833] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768212.994255] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768213.199189] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768213.405356] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768213.610470] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768213.816166] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768214.020868] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768214.226804] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768214.432501] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768214.637896] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768214.842666] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768215.047256] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768215.251955] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768215.456863] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768215.663130] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768215.867720] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768216.072269] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768216.278237] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768216.484110] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768216.689877] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.85 ms +[1421768216.894762] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768217.099580] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768217.304443] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768217.509596] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768217.714887] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768217.921296] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768218.126479] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768218.331954] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768218.537715] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768218.743127] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768218.948177] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768219.153454] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768219.358572] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768219.564069] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768219.770434] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768219.975756] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768220.180925] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768220.387328] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421768220.592574] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768220.798046] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768221.003489] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768221.208557] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768221.413452] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768221.618608] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768221.824594] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421768222.029647] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768222.234702] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768222.439709] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768222.644876] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768222.850890] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768223.057068] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768223.262204] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768223.467692] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768223.673378] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768223.878600] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768224.084637] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768224.290696] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768224.495957] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768224.701379] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768224.907094] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421768225.112078] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768225.316947] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768225.522012] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768225.728150] 1720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768225.933191] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768226.138830] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768226.343972] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768226.549325] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768226.754472] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768226.960125] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768227.165387] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768227.371219] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768227.577081] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768227.783702] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768227.989429] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768228.194476] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768228.399605] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421768228.604795] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768228.809799] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768229.014376] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768229.220443] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768229.426553] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768229.632549] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421768229.837296] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768230.042092] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768230.247120] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768230.452559] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768230.657892] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768230.864114] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768231.069364] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768231.274318] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768231.479748] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.85 ms +[1421768231.684970] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768231.891789] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421768232.096680] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768232.302495] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421768232.507801] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768232.712896] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768232.918398] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768233.123103] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.03 ms +[1421768233.328440] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768233.533733] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768233.739220] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768233.945756] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768234.151284] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768234.357476] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768234.562588] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768234.768432] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768234.973649] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768235.178363] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768235.384814] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421768235.590072] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768235.795367] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768236.000741] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768236.206091] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768236.411695] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768236.617751] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768236.823527] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768237.029374] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768237.270950] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=37.5 ms +[1421768237.476191] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768237.681358] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768237.886991] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768238.092049] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768238.297183] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421768238.502210] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768238.708043] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768238.912721] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421768239.117461] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768239.322477] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768239.527592] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768239.732779] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768239.938188] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768240.143295] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768240.348676] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768240.555072] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768240.759972] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768240.965396] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768241.170644] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768241.376122] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768241.582425] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768241.788587] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768241.993900] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421768242.198961] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768242.405475] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768242.611204] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768242.816983] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768243.023043] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768243.228058] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768243.434433] 1529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768243.640152] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768243.845582] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768244.051251] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768244.257043] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768244.463269] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768244.669769] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768244.875332] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768245.080255] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768245.286339] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768245.492278] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768245.698561] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768245.904816] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768246.109600] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421768246.314667] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768246.519484] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768246.724501] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768246.930013] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768247.135507] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768247.340175] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768247.545182] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768247.750489] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768247.955719] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768248.161514] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768248.367582] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768248.573070] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768248.778477] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768248.983972] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768249.190348] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768249.395574] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768249.601773] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768249.807350] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768250.012091] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768250.217198] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768250.422229] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768250.627715] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421768250.833172] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421768251.037614] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768251.242641] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768251.448040] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768251.653314] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768251.858403] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768252.070268] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.34 ms +[1421768252.279633] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.95 ms +[1421768252.512752] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.3 ms +[1421768252.727775] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421768252.932793] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768253.137992] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768253.343237] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768253.548659] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768253.754072] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768253.960640] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768254.167150] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768254.373459] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768254.579464] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768254.784660] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768254.990980] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768255.196061] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768255.401458] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768255.607071] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768255.813984] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768256.019130] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768256.225156] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768256.430216] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768256.636529] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768256.842660] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421768257.048674] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768257.253703] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768257.458891] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768257.664385] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768257.869918] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768258.074454] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768258.279371] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768258.484633] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768258.691414] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768258.897053] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768259.102484] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768259.307774] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768259.513023] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768259.718577] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768259.924016] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768260.129440] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768260.335401] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768260.540894] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768260.746564] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768260.952783] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768261.157746] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768261.363909] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768261.570629] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421768261.776486] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768261.982082] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768262.187572] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768262.392549] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768262.597831] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768262.803162] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768263.008421] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768263.214484] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768263.420650] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768263.625725] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768263.830720] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768264.035535] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768264.240685] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768264.446748] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421768264.651932] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768264.857020] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768265.062002] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768265.266880] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768265.471924] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768265.677170] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768265.882605] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768266.087397] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768266.292570] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768266.498663] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768266.703955] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768266.909621] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768267.114258] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768267.318900] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768267.524392] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768267.729982] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768267.935186] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768268.140555] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768268.346853] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768268.552216] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768268.758478] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768268.963977] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768269.169009] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768269.375285] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768269.581312] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768269.786208] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768269.991535] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768270.196720] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768270.402940] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768270.608867] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421768270.814616] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768271.019461] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768271.224608] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768271.431115] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768271.636613] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768271.842187] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768272.047889] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768272.252847] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768272.458030] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768272.663530] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768272.869247] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768273.074618] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768273.279924] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768273.485388] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768273.690277] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768273.895653] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768274.100435] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768274.306510] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768274.512039] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768274.717974] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768274.923917] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421768275.129358] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768275.334634] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768275.540169] 1297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768275.746314] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768275.951248] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768276.156108] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768276.360923] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768276.567238] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768276.773493] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768276.978803] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768277.184741] 1612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768277.390089] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768277.595532] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768277.800859] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768278.006798] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768278.211952] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768278.416998] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768278.622126] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768278.828660] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768279.033599] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768279.238340] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768279.443578] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768279.648361] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768279.854614] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768280.060398] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421768280.265471] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768280.470512] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768280.675895] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768280.881496] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768281.086303] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768281.291567] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768281.497154] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768281.702145] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768281.907265] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768282.112096] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768282.317318] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768282.523386] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768282.728798] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768282.935284] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768283.140932] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768283.346148] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768283.551528] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768283.757009] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768283.962459] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768284.167421] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768284.372657] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768284.577976] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768284.783572] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768284.989209] 825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768285.194661] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768285.400026] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768285.605985] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768285.811711] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768286.017472] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768286.222661] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768286.429135] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768286.634627] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768286.841004] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768287.046987] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768287.252026] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768287.458580] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421768287.676815] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421768287.882162] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768288.086696] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768288.291709] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768288.497085] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768288.702881] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768288.908249] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768289.113788] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768289.319095] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768289.524921] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768289.729833] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768289.935417] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768290.141250] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768290.346460] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768290.551757] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768290.757499] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768290.962977] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768291.169192] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768291.374507] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768291.580347] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768291.786337] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421768291.992592] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768292.197820] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768292.402961] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768292.609035] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421768292.815468] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421768293.020677] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768293.226586] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768293.431591] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768293.636476] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768293.842481] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768294.048316] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768294.253612] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768294.459061] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768294.665729] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421768294.872085] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768295.077196] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768295.282100] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768295.487165] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768295.693141] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768295.898669] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768296.103579] 1410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768296.308986] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768296.514391] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768296.719554] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768296.924965] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768297.130159] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768297.335467] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768297.540917] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768297.746153] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768297.951339] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768298.157597] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768298.363103] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768298.569590] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768298.775904] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768298.981117] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768299.186196] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768299.391574] 89 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768299.596774] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768299.802335] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768300.007482] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768300.212546] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768300.417416] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768300.622233] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768300.827400] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768301.031925] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768301.237149] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768301.442095] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768301.648506] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768301.853865] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421768302.058781] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768302.263913] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768302.469275] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768302.675765] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768302.882250] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421768303.087502] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768303.292526] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768303.497710] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768303.703304] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768303.909469] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768304.114310] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768304.319544] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768304.524432] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768304.729787] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768304.935730] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768305.141243] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768305.346258] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768305.552313] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768305.757463] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768305.963183] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768306.168900] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768306.375377] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768306.580992] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768306.786542] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768306.991435] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768307.196156] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768307.402717] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768307.608041] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768307.813645] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768308.018963] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768308.224522] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768308.430049] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768308.636066] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768308.841989] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768309.046761] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768309.252826] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768309.458998] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768309.665203] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768309.870929] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768310.076150] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768310.281274] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768310.486575] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768310.692402] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768310.897924] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768311.103062] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768311.309681] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421768311.514814] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768311.720671] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.92 ms +[1421768311.925981] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768312.131088] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768312.336213] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768312.541162] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768312.746094] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768312.951428] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768313.156537] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768313.361765] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768313.568575] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421768313.773793] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768313.979918] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768314.185586] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768314.390318] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768314.595583] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768314.800421] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768315.005372] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421768315.210849] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768315.416220] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768315.621780] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768315.826781] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768316.031366] 1156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768316.237371] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768316.443854] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768316.650508] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421768316.855630] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768317.060427] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768317.265617] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768317.470882] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768317.676330] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768317.881677] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768318.086471] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768318.291708] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768318.497413] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768318.703397] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768318.911314] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.83 ms +[1421768319.116310] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768319.321149] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768319.527744] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.82 ms +[1421768319.736772] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.19 ms +[1421768319.948789] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.10 ms +[1421768320.162733] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421768320.379434] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421768320.642958] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.6 ms +[1421768320.862738] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421768321.091586] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421768321.298094] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768321.521138] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421768321.801017] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.7 ms +[1421768322.086828] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.3 ms +[1421768322.367726] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.6 ms +[1421768322.587838] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421768322.874841] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.7 ms +[1421768323.101507] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421768323.379415] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.0 ms +[1421768323.601224] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.7 ms +[1421768323.834861] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.3 ms +[1421768324.039682] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768324.246074] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768324.453593] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.25 ms +[1421768324.677535] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421768324.885088] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.28 ms +[1421768325.090444] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768325.295621] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768325.501438] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421768325.706860] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768325.912376] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768326.117842] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768326.323070] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768326.528628] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421768326.733838] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768326.940069] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768327.146442] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768327.352675] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768327.557583] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768327.762909] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768327.968570] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768328.174083] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768328.379184] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768328.584381] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768328.790122] 1133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768328.995273] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768329.200375] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768329.405646] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768329.611057] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768329.816752] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768330.022626] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768330.227878] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768330.434300] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768330.639781] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768330.846032] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768331.050957] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768331.256411] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421768331.461761] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768331.668018] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421768331.873244] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768332.078393] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421768332.284748] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421768332.490546] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421768332.696061] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768332.901893] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421768333.107351] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768333.312725] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768333.518521] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768333.723640] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768333.928808] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768334.135537] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768334.341736] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768334.547502] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768334.753347] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768334.959794] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768335.165159] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768335.370133] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768335.575383] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768335.780723] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768335.986106] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768336.191978] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768336.396866] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768336.601804] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768336.808275] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768337.013507] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768337.218886] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768337.424083] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768337.629640] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768337.835411] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768338.039975] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768338.245198] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768338.450916] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768338.657201] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768338.863981] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768339.069150] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768339.275414] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768339.481693] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768339.686796] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768339.891535] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768340.096421] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768340.301218] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768340.506408] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768340.712647] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768340.918925] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768341.123616] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768341.329041] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768341.534745] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768341.740380] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768341.946180] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768342.151486] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768342.356689] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768342.561831] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768342.766887] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768342.972833] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768343.179013] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768343.384279] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768343.589472] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768343.794937] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768344.000769] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768344.205857] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768344.410811] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768344.616386] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768344.821964] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768345.027956] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768345.232873] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768345.439058] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768345.644898] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768345.855259] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.12 ms +[1421768346.060313] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768346.266364] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768346.472586] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768346.677917] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768346.884171] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768347.089418] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768347.294617] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768347.500154] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768347.704991] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768347.910566] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768348.115415] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768348.320201] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768348.525994] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768348.732538] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768348.938234] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421768349.143502] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768349.348981] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768349.554712] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768349.761403] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768349.966694] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768350.171728] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768350.377709] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768350.582861] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768350.788226] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768350.993588] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768351.198386] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768351.403631] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768351.608927] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768351.814921] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421768352.020576] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768352.225743] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768352.431053] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768352.636953] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768352.842670] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768353.047854] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421768353.252944] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768353.460954] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768353.666778] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768353.872639] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768354.077500] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768354.283518] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768354.488440] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768354.694101] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768354.899780] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768355.105004] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768355.310715] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768355.517261] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768355.722956] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768355.928315] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768356.133431] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768356.338155] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768356.543342] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768356.749141] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768356.954560] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768357.160563] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768357.365656] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768357.572191] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768357.778656] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768357.983848] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768358.188705] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768358.394695] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768358.599973] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768358.805726] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768359.010984] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768359.216445] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768359.421574] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768359.627019] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768359.832760] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768360.037406] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768360.243663] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768360.449739] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768360.656208] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768360.861500] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768361.066253] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768361.271656] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768361.477708] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421768361.683202] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768361.889569] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768362.094239] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768362.299434] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768362.505218] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768362.711117] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768362.917763] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.95 ms +[1421768363.123123] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768363.329052] 1612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768363.534670] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768363.740155] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768363.945300] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768364.150786] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768364.355658] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768364.561002] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768364.766181] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768364.971527] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768365.177574] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768365.382757] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768365.588567] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768365.793848] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768365.999145] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768366.204259] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421768366.409639] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768366.616201] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768366.822496] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768367.027702] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768367.232605] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768367.438722] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768367.643934] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768367.849898] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768368.054514] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768368.259948] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768368.465738] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768368.671773] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768368.878609] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768369.083652] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768369.288980] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768369.494218] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768369.699159] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768369.904384] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768370.109319] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768370.316891] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.55 ms +[1421768370.539216] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421768370.752113] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.59 ms +[1421768370.964208] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.43 ms +[1421768371.182909] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421768371.403673] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421768371.623265] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421768371.908481] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.1 ms +[1421768372.134370] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421768372.357343] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421768372.582768] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421768372.868316] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.5 ms +[1421768373.093434] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421768373.321441] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421768373.601717] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.2 ms +[1421768373.808244] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768374.014009] 1897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768374.220149] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768374.425358] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768374.634662] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.24 ms +[1421768374.847803] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.68 ms +[1421768375.057866] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.51 ms +[1421768375.308901] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=47.2 ms +[1421768375.530886] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421768375.808330] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.3 ms +[1421768376.031474] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421768376.256520] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421768376.484675] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421768376.712053] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421768376.935639] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421768377.161193] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421768377.390134] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421768377.616443] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421768377.841611] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421768378.067386] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421768378.352636] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.3 ms +[1421768378.638157] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.8 ms +[1421768378.843550] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768379.048571] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768379.255422] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.08 ms +[1421768379.479122] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421768379.690969] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.88 ms +[1421768379.911290] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421768380.117392] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421768380.322639] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768380.528268] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768380.734335] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768380.939457] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768381.145309] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421768381.351814] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768381.557104] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768381.762380] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768381.967889] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768382.173540] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768382.378682] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768382.583747] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768382.788729] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768382.993722] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768383.198558] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768383.403892] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768383.609727] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768383.815843] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768384.021732] 1897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768384.226882] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768384.432004] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768384.638485] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421768384.844290] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768385.049308] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768385.254601] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768385.460288] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768385.665756] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768385.871279] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768386.075996] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768386.281174] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768386.486466] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768386.691057] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421768386.896028] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768387.100664] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768387.305514] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768387.511766] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768387.718427] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768387.924061] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768388.129066] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768388.335429] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768388.541194] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768388.746723] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768388.952274] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768389.157773] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768389.363025] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768389.569340] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768389.775238] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768389.982047] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768390.187379] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768390.392812] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768390.598676] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768390.804197] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768391.008711] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768391.213901] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768391.419818] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421768391.627065] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.85 ms +[1421768391.833624] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421768392.038550] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768392.243882] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768392.449110] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768392.655310] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768392.860321] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768393.065389] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421768393.271011] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421768393.476966] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421768393.682351] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768393.887646] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768394.093317] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768394.298341] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768394.503607] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768394.708997] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768394.914556] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768395.120063] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768395.325337] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768395.530709] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768395.736378] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768395.942029] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768396.147423] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768396.352737] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768396.558378] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768396.763713] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768396.968686] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768397.173901] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768397.379414] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421768397.585171] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768397.790470] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768397.995690] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768398.200862] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768398.406192] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768398.612016] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768398.817587] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768399.023443] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768399.228744] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768399.434349] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768399.646546] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.23 ms +[1421768399.851994] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768400.056575] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768400.261720] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768400.466907] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768400.672200] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768400.877674] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768401.083737] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768401.289698] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768401.496402] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421768401.703338] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421768401.909035] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768402.114431] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768402.319394] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768402.524614] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768402.729991] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768402.936278] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421768403.141241] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768403.346195] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768403.550947] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768403.755766] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768403.960384] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768404.165488] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768404.370676] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768404.575582] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768404.781551] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768404.986956] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768405.192145] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768405.397997] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768405.603581] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768405.808868] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768406.013960] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768406.218829] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768406.425229] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768406.631236] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768406.836416] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768407.040840] 296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768407.246756] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768407.453289] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768407.658607] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768407.864046] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768408.068641] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768408.273642] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768408.479414] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768408.685790] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768408.891471] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768409.096486] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768409.301708] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768409.506822] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768409.712001] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768409.917591] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421768410.122589] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768410.328780] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768410.534544] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768410.739900] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768410.946443] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421768411.152042] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768411.357367] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421768411.577359] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421768411.810226] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.9 ms +[1421768412.029575] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421768412.247336] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421768412.519059] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=67.4 ms +[1421768412.745628] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421768412.973347] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421768413.203346] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421768413.428787] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421768413.656057] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421768413.881245] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421768414.086588] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768414.291953] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768414.498750] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421768414.705994] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.08 ms +[1421768414.915495] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.70 ms +[1421768415.147856] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.2 ms +[1421768415.365669] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421768415.580972] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768415.798639] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421768416.078481] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.5 ms +[1421768416.284141] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768416.489800] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768416.695451] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768416.901195] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768417.106904] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768417.312736] 1010 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768417.519384] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421768417.725361] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768417.931037] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768418.136218] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768418.340921] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768418.547347] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768418.752915] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768418.959629] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768419.165175] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768419.370753] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768419.576115] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768419.780932] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768419.987310] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768420.192628] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768420.397536] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768420.603941] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768420.808800] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768421.013638] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768421.219088] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768421.425358] 1529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421768421.630898] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768421.836290] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768422.041921] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768422.247018] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768422.452244] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768422.657141] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768422.862220] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768423.067233] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768423.272403] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768423.477901] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768423.683196] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768423.889631] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768424.094512] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768424.300340] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768424.506104] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768424.711485] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768424.916430] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768425.122455] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768425.327539] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768425.533029] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421768425.738131] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768425.943734] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768426.148629] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768426.353466] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768426.559193] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768426.764380] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421768426.980032] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421768427.192494] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.32 ms +[1421768427.431256] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.0 ms +[1421768427.648964] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421768427.869855] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421768428.093000] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421768428.377987] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.2 ms +[1421768428.667549] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.4 ms +[1421768428.953778] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.1 ms +[1421768429.180316] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421768429.385653] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768429.591138] 1330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768429.799692] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.42 ms +[1421768430.012617] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.61 ms +[1421768430.223921] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.42 ms +[1421768430.437790] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.93 ms +[1421768430.688219] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.6 ms +[1421768430.909565] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421768431.134595] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421768431.414403] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.9 ms +[1421768431.636105] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421768431.859999] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421768432.083152] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421768432.311790] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421768432.530566] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421768432.739809] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.23 ms +[1421768432.946639] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.96 ms +[1421768433.151718] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768433.357021] 1410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768433.569896] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.02 ms +[1421768433.780982] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.68 ms +[1421768433.994241] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.89 ms +[1421768434.207101] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.67 ms +[1421768434.413720] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768434.618734] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768434.823880] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768435.029203] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421768435.238543] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.51 ms +[1421768435.450477] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.69 ms +[1421768435.668566] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421768435.885245] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421768436.105101] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421768436.386122] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.1 ms +[1421768436.613118] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421768436.895448] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.6 ms +[1421768437.118498] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421768437.342440] 1417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421768437.567578] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421768437.790651] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421768438.078117] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.6 ms +[1421768438.302567] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421768438.583464] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.3 ms +[1421768438.810341] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421768439.039774] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421768439.244967] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768439.450006] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768439.655503] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768439.866339] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.46 ms +[1421768440.076031] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.80 ms +[1421768440.282275] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768440.487443] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768440.692966] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768440.898621] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768441.104726] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768441.310883] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768441.516315] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768441.722194] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768441.928781] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768442.134057] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768442.339976] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421768442.545789] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768442.750992] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768442.957325] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421768443.163761] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.67 ms +[1421768443.369694] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768443.576242] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768443.781601] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768443.988370] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.76 ms +[1421768444.194050] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768444.399611] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768444.605392] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768444.810736] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768445.016687] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421768445.222023] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768445.428011] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768445.634209] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768445.839351] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768446.044728] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768446.250224] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768446.455918] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768446.661164] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768446.867320] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768447.072321] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768447.277435] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768447.483246] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768447.688728] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768447.894419] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768448.099588] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768448.304342] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768448.509347] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768448.715017] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768448.921243] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768449.127576] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768449.332836] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768449.538249] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768449.743978] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768449.950191] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768450.158893] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.36 ms +[1421768450.364022] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768450.569632] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768450.776486] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768450.982122] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768451.187643] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768451.394266] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768451.599441] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768451.805640] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768452.011632] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768452.216959] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768452.422625] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768452.627979] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768452.833434] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768453.038099] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768453.243212] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768453.448445] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768453.654975] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421768453.861914] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421768454.067081] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421768454.273492] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421768454.480266] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768454.686260] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768454.893071] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768455.098372] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768455.304419] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768455.510940] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768455.716520] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768455.921602] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768456.126791] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768456.331922] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768456.537431] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768456.742813] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768456.947694] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768457.154126] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768457.359978] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768457.565885] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768457.771561] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768457.976985] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768458.182543] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768458.387715] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768458.593335] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768458.798777] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421768459.003826] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768459.210217] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768459.415320] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768459.621764] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768459.827663] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421768460.032714] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768460.238818] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768460.444631] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768460.653664] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768460.859378] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768461.064668] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768461.270964] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768461.477431] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768461.684357] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421768461.891455] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768462.096569] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768462.302939] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768462.508126] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421768462.713669] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768462.919355] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768463.125448] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768463.331106] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768463.536796] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768463.741861] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768463.947930] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768464.153226] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768464.358526] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768464.564737] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421768464.770950] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768464.976400] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768465.181639] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768465.388672] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768465.595183] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768465.801532] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768466.006342] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768466.211466] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768466.417633] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768466.624476] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768466.830449] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768467.036058] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768467.242031] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768467.446955] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768467.653150] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768467.858183] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768468.063308] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768468.268512] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768468.474839] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421768468.680354] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768468.886833] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768469.091595] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768469.296526] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768469.501886] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768469.707367] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421768469.912645] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768470.117942] 1156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768470.322938] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768470.528387] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768470.733804] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768470.938991] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768471.144123] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768471.349223] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768471.554576] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768471.759803] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768471.965937] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768472.171542] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768472.377642] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768472.582858] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768472.789403] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421768472.996058] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768473.201399] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768473.406650] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768473.613446] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421768473.818855] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768474.023593] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768474.228463] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768474.435341] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.67 ms +[1421768474.641068] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768474.846636] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768475.051617] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768475.256791] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768475.462376] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768475.669000] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768475.875699] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768476.081955] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768476.287046] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768476.492337] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768476.697854] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768476.903176] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768477.108876] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768477.314735] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768477.521049] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768477.726376] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768477.931708] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768478.136767] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768478.343013] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768478.548290] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768478.753708] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768478.958881] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768479.164193] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768479.369595] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768479.576226] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768479.781459] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768479.986798] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768480.193104] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768480.398191] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768480.603549] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768480.809920] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768481.016255] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768481.221539] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768481.426485] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768481.632554] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421768481.842594] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.78 ms +[1421768482.049457] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.55 ms +[1421768482.260587] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.19 ms +[1421768482.475361] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.1 ms +[1421768482.692168] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421768482.909522] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421768483.129713] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421768483.336924] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.42 ms +[1421768483.542168] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768483.747348] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768483.952776] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768484.158047] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768484.363302] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768484.568922] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421768484.774610] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768484.979955] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768485.185797] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768485.391720] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768485.597516] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768485.803016] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768486.007829] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768486.212924] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768486.418898] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.89 ms +[1421768486.625295] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768486.830443] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768487.035032] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768487.240099] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768487.446651] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421768487.652227] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768487.858440] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768488.063532] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768488.269671] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768488.475720] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768488.680675] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768488.885757] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768489.091172] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768489.295946] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768489.501096] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768489.706648] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768489.913481] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768490.119278] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768490.325797] 1566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421768490.531088] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768490.736237] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768490.941404] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768491.146368] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768491.351744] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768491.556999] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768491.762728] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768491.967884] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768492.172792] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768492.379014] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768492.584991] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768492.790985] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768492.996634] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421768493.203184] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421768493.408760] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421768493.614403] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421768493.819453] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768494.024328] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768494.229509] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768494.435935] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768494.641409] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768494.847093] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768495.051625] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768495.256834] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768495.463448] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768495.668932] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768495.874419] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768496.079496] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768496.284572] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768496.489796] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768496.695331] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768496.901216] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421768497.106519] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768497.312245] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768497.517730] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768497.722875] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768497.928821] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768498.133812] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768498.338789] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768498.544538] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768498.750006] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768498.956244] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768499.161767] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768499.366650] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768499.571799] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768499.778329] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768499.984116] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768500.189160] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768500.394158] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768500.599513] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768500.805257] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768501.010044] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768501.216148] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768501.421286] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768501.626957] 868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768501.831943] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768502.036721] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768502.242029] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768502.448129] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768502.653603] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768502.869658] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.0 ms +[1421768503.074940] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768503.280013] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768503.485363] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768503.691246] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768503.896730] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768504.101908] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768504.307260] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768504.513011] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768504.718356] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768504.924136] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768505.129193] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768505.334300] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768505.540350] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.90 ms +[1421768505.746366] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421768505.954412] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768506.159957] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768506.365164] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768506.571646] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768506.778080] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421768506.983656] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768507.189073] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768507.394047] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768507.599916] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768507.804940] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768508.009534] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768508.214427] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768508.420055] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768508.625872] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768508.832317] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768509.038198] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768509.244277] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768509.448964] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768509.654247] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768509.861672] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.23 ms +[1421768510.071646] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.67 ms +[1421768510.286475] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421768510.539907] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=49.0 ms +[1421768510.758032] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421768510.964824] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768511.170512] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768511.376178] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768511.582458] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768511.788082] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768511.993633] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768512.199692] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768512.405206] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768512.612054] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421768512.818577] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421768513.024017] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768513.229295] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768513.434866] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768513.640097] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768513.845610] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768514.050609] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768514.255884] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768514.461357] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768514.667088] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768514.872774] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768515.078146] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421768515.282826] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768515.489141] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768515.694453] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768515.899815] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768516.104836] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768516.310300] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768516.515421] 1072 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768516.721481] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768516.927064] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768517.132196] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768517.337088] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768517.542497] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768517.748570] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768517.954677] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768518.161169] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768518.366496] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768518.571689] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768518.776989] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768518.982831] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768519.188484] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768519.393767] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768519.599204] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768519.805866] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768520.011099] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768520.217031] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768520.422830] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421768520.627620] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768520.848837] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421768521.054600] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768521.259863] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768521.465153] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768521.670857] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768521.876093] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768522.082304] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768522.287486] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768522.492502] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768522.698770] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768522.903842] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768523.109100] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768523.315135] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768523.521309] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768523.727474] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421768523.932776] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768524.137891] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768524.342934] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768524.548432] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768524.753747] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768524.959276] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768525.164399] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768525.370766] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768525.576006] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768525.781611] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768525.988487] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768526.194332] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768526.399967] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768526.606048] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768526.810869] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768527.016572] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768527.222580] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768527.427749] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768527.633623] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768527.838657] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768528.044483] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768528.249957] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768528.455644] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768528.660702] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768528.883238] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421768529.088334] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768529.293706] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768529.499285] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768529.704629] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768529.910426] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421768530.116530] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421768530.323007] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421768530.528584] 837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768530.734184] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768530.939905] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768531.145322] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768531.350511] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768531.555995] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768531.761746] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768531.966902] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768532.172477] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768532.377773] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768532.582802] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768532.788892] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768532.994175] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768533.198976] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768533.404408] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768533.609686] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768533.814770] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768534.019746] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768534.224803] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768534.429859] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768534.635210] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768534.840603] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768535.046254] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768535.251343] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768535.456131] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768535.662800] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.98 ms +[1421768535.871414] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.62 ms +[1421768536.084570] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.48 ms +[1421768536.289999] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768536.495533] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768536.700672] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768536.908235] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.15 ms +[1421768537.118114] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.51 ms +[1421768537.331900] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.78 ms +[1421768537.537591] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768537.752479] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421768538.003035] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.3 ms +[1421768538.268164] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.9 ms +[1421768538.490573] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421768538.775508] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.6 ms +[1421768539.001067] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421768539.226076] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421768539.452615] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421768539.658572] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421768539.864038] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768540.069340] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768540.274302] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768540.479406] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768540.685876] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768540.893355] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.01 ms +[1421768541.099755] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421768541.304714] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768541.510758] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768541.715918] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768541.922509] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768542.128067] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768542.333332] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768542.538796] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768542.744003] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768542.949806] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768543.155080] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768543.361810] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.02 ms +[1421768543.570234] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.86 ms +[1421768543.783864] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.56 ms +[1421768543.989755] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768544.195133] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768544.401186] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768544.606261] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768544.811498] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768545.017433] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421768545.223728] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768545.428868] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768545.634691] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768545.840572] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768546.045203] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768546.250444] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768546.455705] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768546.661206] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421768546.866992] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768547.071974] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768547.276604] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768547.483323] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768547.689152] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768547.894498] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768548.099355] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768548.305454] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768548.510889] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768548.717567] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768548.923083] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768549.128112] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768549.333723] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768549.539128] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768549.744836] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768549.950040] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768550.155039] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768550.361364] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768550.566616] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768550.772876] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768550.979683] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768551.185573] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768551.391792] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768551.598306] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768551.803410] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768552.009265] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768552.214498] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768552.419501] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768552.626193] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768552.832891] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768553.038174] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768553.243401] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768553.448589] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768553.654155] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768553.861176] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421768554.067450] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421768554.272976] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421768554.479420] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768554.684486] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768554.890980] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421768555.096125] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768555.302457] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768555.507918] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768555.714183] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768555.919696] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768556.125574] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768556.330555] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768556.535734] 89 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768556.741379] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768556.947018] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768557.152439] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768557.357262] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768557.563701] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768557.769639] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768557.975370] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768558.180715] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768558.386097] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768558.591833] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768558.797119] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768559.002318] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768559.207890] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768559.414236] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768559.621244] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768559.826731] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768560.031563] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768560.236555] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768560.441950] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768560.647209] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768560.852784] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768561.057858] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768561.263107] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768561.468478] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768561.674197] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768561.879842] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768562.084762] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768562.289825] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768562.496353] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768562.701921] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768562.908368] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768563.113702] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768563.319589] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768563.525968] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768563.731101] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768563.936421] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768564.141892] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768564.347012] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768564.551949] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768564.757044] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768564.962746] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768565.168188] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768565.374165] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768565.580818] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768565.786373] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421768565.991922] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768566.196855] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768566.403104] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421768566.610388] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.79 ms +[1421768566.815835] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768567.020855] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768567.225711] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768567.432069] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768567.637626] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768567.842820] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768568.048644] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768568.253752] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768568.459730] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768568.666266] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768568.871825] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768569.076830] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768569.282800] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768569.488520] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768569.693886] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768569.900463] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768570.105525] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768570.310531] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768570.516812] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768570.722763] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768570.928621] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768571.134109] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768571.340430] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768571.545991] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768571.751145] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768571.956810] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768572.162366] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768572.367838] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768572.573385] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768572.779322] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768572.985019] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768573.190581] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768573.395917] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768573.601565] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421768573.806661] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768574.012598] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768574.218623] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768574.424767] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768574.629866] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768574.835432] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768575.040461] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768575.245659] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768575.451908] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421768575.657231] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768575.862753] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768576.067924] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768576.272900] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768576.478133] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768576.683821] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768576.889463] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768577.094521] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768577.299591] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768577.504784] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768577.711552] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768577.917193] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768578.123303] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768578.328427] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768578.534458] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768578.739370] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768578.944581] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768579.150796] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768579.357194] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768579.563538] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768579.770302] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768579.977167] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421768580.183107] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768580.388234] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768580.593423] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768580.798779] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768581.003808] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768581.210129] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768581.415359] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768581.621238] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768581.826315] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421768582.032055] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768582.237234] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768582.443574] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768582.648714] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768582.853815] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768583.058974] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768583.264097] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768583.470245] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768583.676309] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768583.881732] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768584.086840] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768584.292151] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768584.496849] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768584.703173] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421768584.908486] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768585.113432] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768585.318970] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768585.524528] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768585.730100] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768585.935512] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768586.141757] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421768586.347021] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768586.553074] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768586.759103] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768586.964495] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768587.171897] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768587.378186] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768587.583739] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768587.789038] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768587.994401] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768588.199976] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768588.405463] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768588.612182] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768588.817576] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768589.022541] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768589.228799] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768589.435279] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421768589.641212] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768589.847654] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768590.053403] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768590.258605] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768590.464887] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421768590.670626] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768590.876294] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768591.081588] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768591.286494] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768591.491932] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768591.698680] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768591.904233] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768592.110769] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421768592.317572] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421768592.522651] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768592.727882] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768592.934343] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768593.139961] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768593.344795] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768593.550092] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768593.755120] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768593.960157] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768594.165939] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421768594.371647] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768594.578187] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768594.784755] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768594.990058] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768595.195243] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768595.400945] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768595.606415] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768595.811724] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768596.017352] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421768596.222600] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768596.429016] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768596.634005] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421768596.839998] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768597.045090] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768597.251030] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768597.457463] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768597.663908] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768597.869140] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768598.073763] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768598.279773] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421768598.485088] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768598.691448] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768598.896774] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768599.102386] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421768599.307751] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768599.512900] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768599.718467] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421768599.924941] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421768600.130491] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768600.335611] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768600.541845] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421768600.747283] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768600.952924] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421768601.159639] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768601.365266] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768601.570742] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768601.776320] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768601.981333] 89 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768602.187809] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768602.393380] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768602.599014] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768602.805053] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768603.010160] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768603.215455] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768603.421967] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421768603.627396] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421768603.834535] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768604.039607] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768604.245107] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768604.450070] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768604.655910] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421768604.861452] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768605.066707] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768605.271835] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768605.477109] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768605.683089] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768605.888548] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768606.093644] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768606.298715] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768606.504861] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768606.710801] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768606.915967] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768607.120742] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768607.325996] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768607.530719] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768607.736041] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768607.942607] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768608.148243] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768608.353382] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768608.559691] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768608.764839] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768608.970085] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768609.175550] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768609.380815] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768609.586477] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768609.791787] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768609.998308] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768610.204258] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768610.409180] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768610.614260] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768610.819807] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768611.024939] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768611.230569] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768611.437271] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768611.642842] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768611.848877] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768612.054867] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768612.260512] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768612.466907] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421768612.672765] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768612.878641] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768613.084260] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768613.290675] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768613.495741] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768613.702490] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768613.907278] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768614.111887] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768614.318153] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768614.523933] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768614.730408] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421768614.936197] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768615.141544] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768615.347672] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421768615.552681] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768615.758644] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768615.964135] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768616.169330] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768616.374283] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768616.580081] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768616.785244] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768616.991577] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768617.197134] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768617.402641] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768617.609028] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768617.814091] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768618.019424] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.95 ms +[1421768618.224434] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768618.429637] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768618.634768] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768618.842614] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.06 ms +[1421768619.051759] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.36 ms +[1421768619.263029] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.17 ms +[1421768619.500237] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.4 ms +[1421768619.753553] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=49.3 ms +[1421768620.019607] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.5 ms +[1421768620.298049] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.5 ms +[1421768620.518807] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421768620.742441] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421768620.965878] 847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421768621.246438] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.6 ms +[1421768621.470843] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421768621.699639] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421768621.928161] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421768622.152450] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421768622.377175] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421768622.606531] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.3 ms +[1421768622.887722] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.4 ms +[1421768623.092617] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768623.297864] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768623.503556] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768623.723118] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.7 ms +[1421768623.957563] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.5 ms +[1421768624.202483] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=41.0 ms +[1421768624.420928] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421768624.641670] 1148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421768624.867312] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421768625.090710] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421768625.315646] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421768625.543680] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421768625.769701] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421768625.988487] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421768626.194852] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421768626.400623] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.90 ms +[1421768626.606494] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768626.811814] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768627.016221] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768627.222384] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768627.428408] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768627.633985] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768627.839822] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768628.045798] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768628.251095] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768628.456199] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768628.661636] 1049 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768628.868572] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768629.073610] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768629.279028] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421768629.488391] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.58 ms +[1421768629.702943] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421768629.921705] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421768630.183242] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=57.5 ms +[1421768630.408513] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421768630.614189] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768630.819177] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768631.024082] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768631.236473] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.54 ms +[1421768631.446048] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.78 ms +[1421768631.658926] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.05 ms +[1421768631.874742] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.4 ms +[1421768632.132088] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=53.6 ms +[1421768632.355304] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421768632.582389] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421768632.812909] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.2 ms +[1421768633.037539] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421768633.258738] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421768633.481944] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421768633.711974] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421768633.941156] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.2 ms +[1421768634.226727] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.4 ms +[1421768634.446454] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421768634.725301] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.4 ms +[1421768634.951158] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421768635.156618] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768635.362301] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768635.568859] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421768635.791125] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421768636.003514] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.47 ms +[1421768636.216985] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.45 ms +[1421768636.435530] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.4 ms +[1421768636.655359] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421768636.935461] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.0 ms +[1421768637.163432] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421768637.393726] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.3 ms +[1421768637.622303] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421768637.844458] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421768638.106543] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=58.5 ms +[1421768638.312378] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768638.517850] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768638.723096] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768638.929201] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768639.134040] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768639.339638] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768639.544760] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768639.750410] 130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768639.955911] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768640.162067] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768640.367323] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768640.573646] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768640.779091] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768640.984950] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768641.190632] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768641.395852] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768641.601198] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768641.807562] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.03 ms +[1421768642.016226] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.94 ms +[1421768642.248659] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.5 ms +[1421768642.462308] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.38 ms +[1421768642.677097] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421768642.895756] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421768643.101080] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768643.305889] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768643.510662] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768643.720357] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.59 ms +[1421768643.931092] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.23 ms +[1421768644.143676] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.69 ms +[1421768644.358022] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.3 ms +[1421768644.576250] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421768644.794036] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421768645.019394] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421768645.245421] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421768645.528699] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.5 ms +[1421768645.809355] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.4 ms +[1421768646.037885] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421768646.267907] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.2 ms +[1421768646.501159] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.9 ms +[1421768646.727747] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421768646.954431] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421768647.159819] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768647.365756] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768647.571189] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768647.777628] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421768647.988938] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.10 ms +[1421768648.200961] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768648.407655] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768648.614104] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421768648.819394] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768649.024080] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768649.232670] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.84 ms +[1421768649.445724] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.28 ms +[1421768649.689847] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.6 ms +[1421768649.907173] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421768650.126724] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421768650.332150] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768650.538852] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768650.744342] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768650.949841] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768651.155379] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768651.360264] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768651.565171] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768651.770337] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768651.975287] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768652.180199] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768652.386853] 1612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421768652.592815] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768652.797856] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768653.003023] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768653.208246] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768653.413330] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768653.618117] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768653.824366] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768654.029092] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768654.234243] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768654.439217] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768654.644893] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421768654.850367] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768655.056016] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421768655.261505] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768655.467227] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768655.672779] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768655.879907] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768656.085325] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768656.291162] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421768656.496313] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768656.701887] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768656.908154] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768657.112915] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768657.319253] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421768657.524435] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768657.729787] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768657.935492] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768658.140957] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768658.347145] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768658.552777] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768658.758714] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768658.964195] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768659.170133] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421768659.375675] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768659.581052] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768659.787271] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421768659.992547] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768660.198052] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768660.405042] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421768660.610903] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768660.816757] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768661.023005] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768661.228441] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768661.433979] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768661.639168] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768661.845360] 1566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768662.050118] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768662.255060] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768662.461347] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768662.666860] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768662.872688] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768663.077720] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768663.282631] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768663.487689] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768663.693180] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768663.898987] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768664.103689] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768664.308835] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768664.515497] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768664.722279] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421768664.929075] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421768665.135674] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768665.341779] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768665.548167] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768665.754144] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768665.961043] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421768666.167629] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421768666.373597] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768666.578800] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768666.785926] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421768666.991291] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768667.196464] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768667.402594] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768667.607351] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768667.812494] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768668.017513] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768668.223387] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768668.428464] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768668.633109] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768668.838225] 1410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768669.042987] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768669.248345] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768669.454106] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768669.660200] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768669.866014] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768670.071133] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768670.276410] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768670.481865] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768670.687569] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768670.893040] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768671.097610] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768671.302919] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768671.508581] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768671.714114] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768671.919159] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768672.124231] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768672.329555] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768672.535103] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768672.741028] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768672.946458] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768673.152660] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768673.357669] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768673.566774] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.45 ms +[1421768673.772067] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768673.978442] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768674.183905] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768674.389146] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768674.593993] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768674.800191] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768675.005706] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421768675.211333] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421768675.416831] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768675.622493] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421768675.828851] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421768676.034016] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768676.239415] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768676.444491] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768676.650605] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768676.856730] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768677.061536] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768677.266437] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768677.473233] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768677.678821] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768677.884538] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768678.090469] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421768678.296133] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768678.501640] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768678.708468] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421768678.914079] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768679.119368] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768679.325750] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768679.531288] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768679.736456] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768679.941952] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768680.146956] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768680.351981] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768680.558108] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768680.763884] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768680.969535] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768681.174858] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768681.380580] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768681.586664] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768681.792110] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768681.997768] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768682.203122] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768682.407962] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768682.613132] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768682.820133] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768683.025188] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768683.231535] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768683.437885] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768683.643161] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768683.848299] 1156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768684.054305] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768684.259684] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768684.465198] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768684.670738] 1238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768684.877531] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768685.082455] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768685.287469] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768685.492967] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768685.698681] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768685.904392] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768686.109591] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768686.314510] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768686.520416] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768686.725936] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768686.931100] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768687.136615] 1451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768687.341618] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768687.555769] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.86 ms +[1421768687.761424] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768687.967588] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768688.172629] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768688.378015] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768688.582883] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768688.787817] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768688.992876] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768689.197851] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768689.404110] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768689.609569] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768689.814749] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768690.019215] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768690.224492] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768690.429610] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768690.634748] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768690.839901] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768691.044433] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768691.250697] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768691.456781] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768691.662438] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768691.868253] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421768692.073593] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421768692.278657] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768692.484060] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421768692.689357] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768692.894458] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768693.099270] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768693.304704] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768693.509912] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768693.716541] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421768693.922204] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768694.128320] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421768694.334627] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768694.540355] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421768694.745800] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768694.951124] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768695.156304] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768695.361781] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768695.568511] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768695.773954] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768695.979431] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768696.185938] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768696.392748] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421768696.597956] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768696.803554] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768697.008567] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768697.213391] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768697.418594] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768697.624118] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768697.829566] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768698.035088] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421768698.240407] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768698.446421] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768698.652611] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768698.857717] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768699.062480] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768699.267837] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768699.473583] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768699.679955] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421768699.889715] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.31 ms +[1421768700.104201] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421768700.323189] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421768700.578048] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=50.5 ms +[1421768700.800054] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421768701.083413] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.3 ms +[1421768701.312030] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421768701.599788] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.0 ms +[1421768701.826672] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421768702.058228] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.9 ms +[1421768702.290164] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.7 ms +[1421768702.495541] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768702.700399] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768702.908037] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.98 ms +[1421768703.117479] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.23 ms +[1421768703.329389] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.44 ms +[1421768703.541803] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.94 ms +[1421768703.750058] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.33 ms +[1421768703.955566] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768704.162213] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768704.367603] 1049 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768704.573894] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768704.779223] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768704.984177] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768705.190293] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768705.395640] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768705.600968] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768705.806707] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768706.011403] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768706.217545] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768706.423896] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421768706.629042] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768706.834528] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768707.039489] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768707.244894] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768707.449893] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768707.655055] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768707.860372] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768708.065170] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768708.270617] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768708.476566] 1148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768708.683261] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768708.889042] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768709.094388] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768709.300154] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768709.506767] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768709.712555] 904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768709.919229] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768710.124798] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768710.330056] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768710.535325] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768710.740687] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768710.955574] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421768711.160697] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768711.366480] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768711.572210] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768711.777521] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421768711.982798] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768712.188023] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768712.393265] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768712.598902] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768712.804782] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768713.009669] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768713.214879] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768713.421355] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768713.627786] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768713.834217] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768714.039242] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768714.245443] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768714.450052] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768714.655128] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768714.861374] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421768715.066146] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768715.271387] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768715.476955] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768715.682388] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768715.888280] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768716.093288] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768716.299280] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421768716.505259] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768716.710484] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768716.915551] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768717.121438] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768717.326728] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768717.532488] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768717.737624] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768717.942774] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768718.148680] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768718.355256] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768718.561941] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768718.767308] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768718.972760] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768719.178457] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768719.383496] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768719.588762] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768719.794380] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768719.999768] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768720.205430] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768720.411793] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421768720.617166] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768720.822668] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768721.027615] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768721.232470] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768721.438668] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768721.645144] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768721.851827] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768722.057246] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768722.263719] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768722.469114] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768722.674383] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768722.879969] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768723.084960] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768723.289987] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768723.495125] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768723.700459] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768723.907000] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768724.112016] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768724.318053] 1522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768724.523776] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768724.730543] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768724.935873] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768725.142129] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768725.349651] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.51 ms +[1421768725.555756] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421768725.762627] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768725.968637] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421768726.174142] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768726.380925] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421768726.586332] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768726.792820] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421768726.999344] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768727.204673] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768727.411237] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421768727.618133] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768727.823971] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768728.028656] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768728.234136] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421768728.439644] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768728.645657] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421768728.851483] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768729.056390] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768729.261753] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768729.468500] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421768729.673939] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768729.880188] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768730.085024] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768730.290326] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768730.495447] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768730.701012] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768730.907653] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421768731.113475] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421768731.318659] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768731.523685] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768731.728597] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768731.933836] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768732.139484] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768732.344774] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768732.551158] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768732.756654] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768732.962101] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768733.167294] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768733.372750] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768733.577816] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768733.784112] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768733.989643] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768734.194670] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768734.400232] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768734.606480] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768734.820398] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.63 ms +[1421768735.025901] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768735.231191] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768735.436722] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768735.642152] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768735.847529] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768736.053535] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768736.259171] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421768736.464891] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421768736.670684] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768736.877483] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768737.083472] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768737.289898] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768737.495765] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768737.701284] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768737.906509] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768738.111061] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768738.315817] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768738.520967] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768738.726028] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768738.931737] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768739.137214] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768739.343410] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768739.549011] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768739.755467] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768739.961304] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768740.166713] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768740.372838] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768740.578169] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768740.783545] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768740.988294] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421768741.193470] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768741.398797] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768741.604286] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768741.809733] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768742.015803] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768742.220664] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768742.426492] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768742.632738] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768742.838464] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768743.043018] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768743.248309] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768743.454542] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421768743.659599] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768743.866244] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.79 ms +[1421768744.073036] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768744.279419] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768744.485645] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768744.690723] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768744.897537] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768745.102473] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768745.307595] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768745.513026] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768745.719480] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768745.924672] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768746.130054] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768746.335208] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768746.540489] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768746.745668] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768746.951327] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421768747.157349] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768747.362563] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768747.567989] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768747.773450] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768747.978494] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768748.183434] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768748.388939] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768748.594649] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768748.800910] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768749.005838] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768749.211206] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768749.415933] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421768749.621002] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768749.827386] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768750.032324] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768750.238580] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768750.444651] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421768750.650861] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768750.856263] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768751.061094] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768751.267170] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768751.473482] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768751.678917] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768751.885289] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768752.090219] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768752.295703] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768752.502179] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768752.708392] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768752.913357] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768753.119660] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768753.324955] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768753.530475] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768753.735920] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768753.940956] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768754.146324] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768754.351220] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768754.556454] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768754.762511] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768754.967933] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768755.173103] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768755.378214] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768755.584913] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421768755.790348] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768755.995813] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768756.200775] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768756.406905] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768756.612852] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768756.819598] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421768757.025445] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421768757.232194] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768757.439053] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768757.645301] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768768.054863] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768768.260310] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768768.465884] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768768.671456] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768768.877834] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768769.083023] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768769.288071] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768769.493365] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768769.698765] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768769.904335] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768770.109504] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768770.315207] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768770.520691] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768770.726497] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768770.932815] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768771.138096] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768771.344473] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421768771.549845] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768771.755184] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768771.960898] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421768772.166426] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768772.371721] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768772.576585] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768772.782199] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768772.987957] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768773.193492] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768773.399628] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768773.605527] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768773.811108] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768774.016064] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768774.222320] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768774.427623] 1417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768774.633245] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768774.839958] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421768775.044845] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768775.251427] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421768775.457137] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421768775.663547] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768775.869433] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768776.074200] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768776.279605] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768776.485576] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768776.691598] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768776.897086] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768777.102234] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768777.307031] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768777.512316] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421768777.717561] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768777.922684] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768778.128686] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768778.333688] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768778.539704] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768778.745109] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768778.950678] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768779.155927] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768779.361217] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768779.566526] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768779.771759] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768779.977394] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768780.182948] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768780.387980] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768780.593566] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768780.799683] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768781.004802] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768781.210701] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768781.416168] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768781.621344] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421768781.826970] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768782.032953] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768782.238227] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768782.443754] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768782.650525] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768782.855481] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768783.060565] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768783.265921] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768783.472309] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421768783.677715] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768783.883419] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768784.088733] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421768784.293676] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768784.498622] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768784.703736] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768784.909487] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768785.114582] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768785.320000] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768785.525621] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768785.730928] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768785.936404] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768786.141490] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768786.346627] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768786.552139] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768786.759235] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768786.965035] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421768787.170332] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768787.378715] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768787.584170] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768787.789872] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768787.995854] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768788.202515] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768788.407726] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768788.613817] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768788.819910] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421768789.024352] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768789.229355] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768789.434709] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768789.640249] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768789.846106] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768790.051156] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768790.256286] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768790.462408] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768790.667430] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768790.872838] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768791.078029] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768791.283855] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768791.490096] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768791.695678] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768791.900828] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768792.106508] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768792.311340] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768792.516617] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768792.722400] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768792.927696] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768793.133421] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768793.338670] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768793.544599] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768793.750409] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421768793.955930] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768794.161201] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768794.366695] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768794.573360] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768794.780057] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768794.986897] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768795.192478] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768795.398496] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768795.603647] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768795.808778] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768796.013445] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768796.218662] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768796.424442] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768796.629394] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768796.835247] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768797.041219] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768797.246505] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768797.452986] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421768797.659471] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768797.866338] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421768798.070844] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768798.276805] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768798.482156] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768798.687367] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421768798.892270] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768799.097206] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768799.303192] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768799.507899] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768799.713067] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768799.918389] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768800.123581] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768800.328733] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768800.533985] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421768800.740149] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768800.946598] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768801.151641] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768801.357611] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768801.562575] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768801.767505] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768801.973788] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421768802.179737] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768802.385122] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768802.590514] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768802.795901] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768803.001285] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768803.206996] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768803.412273] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768803.617327] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768803.822919] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768804.027942] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768804.232796] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768804.438291] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768804.644911] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768804.851714] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421768805.057719] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768805.268337] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.74 ms +[1421768805.473422] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768805.678310] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768805.883707] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768806.088985] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768806.294180] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768806.499967] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768806.706002] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768806.911346] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768807.116780] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768807.322010] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768807.527353] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768807.733283] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768807.938495] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768808.143555] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768808.348914] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768808.554142] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768808.759171] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768808.965074] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768809.170015] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768809.376202] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768809.582301] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768809.787368] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768809.993518] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768810.198809] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768810.404973] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768810.610443] 1156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768810.815408] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768811.021080] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768811.225915] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768811.431057] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768811.636013] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768811.841386] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768812.046554] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768812.252262] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768812.463508] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.21 ms +[1421768812.674837] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.02 ms +[1421768812.888322] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.27 ms +[1421768813.131634] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.5 ms +[1421768813.395489] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.8 ms +[1421768813.669490] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.0 ms +[1421768813.908949] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.6 ms +[1421768814.187488] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.5 ms +[1421768814.416029] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421768814.633010] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421768814.852443] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421768815.057272] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768815.262979] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.90 ms +[1421768815.468561] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768815.676345] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.61 ms +[1421768815.887709] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.05 ms +[1421768816.124878] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.1 ms +[1421768816.342916] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421768816.562807] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.7 ms +[1421768816.788089] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421768817.011100] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421768817.234266] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421768817.463450] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421768817.691162] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421768817.920266] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421768818.125655] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768818.331911] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768818.537889] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768818.743151] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768818.948881] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768819.154947] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421768819.361082] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768819.567260] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421768819.773086] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768819.980480] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.36 ms +[1421768820.189406] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.93 ms +[1421768820.419890] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.6 ms +[1421768820.632722] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.94 ms +[1421768820.838129] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768821.043158] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768821.248506] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768821.453877] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768821.658990] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768821.865798] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421768822.070917] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768822.275849] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768822.481039] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768822.687414] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768822.892994] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768823.098244] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768823.303585] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768823.510010] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421768823.715881] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768823.921475] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768824.126719] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768824.332739] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768824.538393] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768824.744714] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768824.950294] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768825.155526] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768825.360622] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768825.566205] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768825.772870] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768825.978608] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768826.184292] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768826.389834] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768826.595438] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768826.800982] 1026 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768827.006431] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768827.211677] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768827.417139] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768827.623833] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768827.829482] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768828.034466] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768828.239352] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768828.444868] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768828.651596] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768828.857359] 1258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768829.062340] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768829.267617] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768829.473000] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768829.678094] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768829.883832] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421768830.090121] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768830.295267] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768830.500852] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768830.706848] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768830.913799] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768831.120548] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768831.325596] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768831.532059] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421768831.737462] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768831.942922] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768832.148704] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768832.354263] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768832.560606] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768832.766359] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768832.971696] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768833.176680] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768833.381868] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768833.587259] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768833.792953] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768833.998841] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768834.205645] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768834.410822] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768834.616398] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768834.822481] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421768835.027621] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768835.234174] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768835.439780] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768835.645304] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421768835.851760] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421768836.057809] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768836.262943] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768836.468117] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768836.674367] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768836.879974] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768837.084534] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768837.289629] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768837.494702] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768837.700419] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768837.907033] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768838.112124] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768838.318343] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768838.524928] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768838.730665] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.05 ms +[1421768838.937012] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768839.143326] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768839.348301] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768839.553008] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768839.758583] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768839.964178] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768840.170305] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768840.392535] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421768840.630436] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.7 ms +[1421768840.835416] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768841.040121] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768841.245241] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768841.450223] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768841.655425] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768841.860787] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768842.065649] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768842.270429] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768842.475504] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768842.681045] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768842.905693] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421768843.115308] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.29 ms +[1421768843.321080] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768843.527489] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768843.733784] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768843.939325] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768844.153118] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.1 ms +[1421768844.359460] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768844.565878] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768844.771222] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421768844.976630] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768845.181651] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768845.424025] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.4 ms +[1421768845.629380] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768845.850929] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421768846.056878] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768846.261707] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768846.467082] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768846.673227] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421768846.879687] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768847.084522] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768847.290537] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768847.495832] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768847.701152] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768847.907288] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421768848.112057] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768848.317151] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768848.522097] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768848.727924] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768848.933237] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768849.150838] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421768849.355801] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768849.561160] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768849.766261] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768849.972362] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768850.178840] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768850.461158] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.1 ms +[1421768850.667711] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768850.873045] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768851.077785] 1148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768851.284152] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768851.490401] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768851.695576] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768851.901751] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768852.107482] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768852.312956] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768852.519601] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768852.724759] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768852.929863] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768853.135976] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421768853.341422] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768853.546977] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768853.752411] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768853.957740] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768854.164276] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768854.369428] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768854.574590] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768854.780204] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768854.985491] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768855.191722] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768855.397792] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768855.603249] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768855.810089] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768856.038427] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421768856.244404] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768856.450480] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768856.656664] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768856.862562] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768857.067467] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768857.272828] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768857.478774] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768857.684439] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768857.889852] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421768858.095230] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421768858.300603] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768858.505772] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768858.711092] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768858.916206] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768859.122447] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421768859.328953] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768859.534807] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768859.740943] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768859.947227] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768860.152475] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768860.357557] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768860.563673] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768860.769267] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768860.975045] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768861.181116] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421768861.386601] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768861.592037] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768861.798232] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768862.003537] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768862.210000] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768862.415089] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768862.621634] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768862.827269] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768863.033017] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421768863.238029] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768863.443704] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768863.649636] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768863.854879] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768864.059939] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768864.265119] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768864.471529] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768864.677156] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768864.883414] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768865.088074] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768865.293224] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768865.499287] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768865.704719] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768865.910124] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768866.116531] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768866.321997] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768866.527953] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768866.732681] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768866.937765] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768867.143185] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768867.349392] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768867.555233] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421768867.760909] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768867.966403] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768868.171520] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768868.382726] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.20 ms +[1421768868.598893] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421768868.805724] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768869.011741] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768869.216749] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768869.422684] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768869.627351] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768869.833383] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768870.037992] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768870.244127] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421768870.450918] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768870.656890] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421768870.862102] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768871.066336] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768871.272187] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768871.478158] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421768871.683574] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768871.889123] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768872.093699] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768872.300266] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421768872.505579] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768872.710699] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768872.917147] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768873.122661] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768873.327483] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768873.532536] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768873.738838] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768873.944392] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768874.150589] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768874.355547] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768874.560574] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768874.775792] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421768874.980879] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768875.186040] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768875.391274] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768875.597113] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768875.802207] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768876.006537] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768876.211887] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768876.417465] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768876.623380] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768876.828832] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768877.033940] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768877.239931] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768877.445015] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768877.650212] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768877.855191] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768878.060110] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421768878.265702] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768878.472516] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421768878.677921] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768878.883296] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768879.099323] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421768879.327783] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421768879.533768] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421768879.738575] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421768879.944373] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768880.150061] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421768880.360169] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.19 ms +[1421768880.566678] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421768880.958001] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=187 ms +[1421768881.175859] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421768881.450482] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.6 ms +[1421768881.750459] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=95.8 ms +[1421768882.033860] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.5 ms +[1421768882.262357] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421768882.484013] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421768882.762867] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.0 ms +[1421768882.980975] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421768883.260783] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.9 ms +[1421768883.486459] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421768883.710379] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421768883.935300] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421768884.184586] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.0 ms +[1421768884.410825] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421768884.616285] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768884.822645] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768885.027681] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768885.241412] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421768885.451002] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.79 ms +[1421768885.685143] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.1 ms +[1421768885.940465] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.2 ms +[1421768886.202486] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=58.0 ms +[1421768886.424164] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421768886.662079] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.8 ms +[1421768886.886223] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421768887.175222] 1529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.9 ms +[1421768887.430247] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=50.8 ms +[1421768887.635682] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768887.921212] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.9 ms +[1421768888.147506] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421768888.369729] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421768888.652048] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.2 ms +[1421768888.878124] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768889.160621] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.8 ms +[1421768889.366867] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768889.572258] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768889.786184] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.81 ms +[1421768889.997763] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.43 ms +[1421768890.212138] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768890.460724] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.7 ms +[1421768890.680538] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421768890.905553] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421768891.184221] 1566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.4 ms +[1421768891.409047] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421768891.635995] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421768891.864380] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421768892.151104] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.5 ms +[1421768892.424732] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.5 ms +[1421768892.652037] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421768892.882070] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421768893.107580] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421768893.334231] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421768893.540759] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421768893.746612] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768893.952245] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768894.157983] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768894.366758] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.96 ms +[1421768894.573056] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768894.779182] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768894.984851] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768895.190963] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768895.401677] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.40 ms +[1421768895.615625] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.46 ms +[1421768895.852423] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.7 ms +[1421768896.094948] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.0 ms +[1421768896.356699] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=57.9 ms +[1421768896.617370] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.6 ms +[1421768896.842366] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421768897.123118] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.5 ms +[1421768897.343824] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421768897.566847] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421768897.796837] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.4 ms +[1421768898.080854] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.8 ms +[1421768898.305745] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421768898.533720] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421768898.760213] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421768898.989428] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421768899.217107] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421768899.424858] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.23 ms +[1421768899.642517] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421768899.857312] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421768900.070808] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.60 ms +[1421768900.307433] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.7 ms +[1421768900.539692] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.2 ms +[1421768900.759427] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421768900.983316] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421768901.271898] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.4 ms +[1421768901.503220] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.4 ms +[1421768901.724744] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421768901.952532] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421768902.175548] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421768902.405490] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.2 ms +[1421768902.627383] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421768902.854962] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421768903.134736] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.7 ms +[1421768903.361516] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421768903.584898] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421768903.790112] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768903.996704] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421768904.205181] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.04 ms +[1421768904.415971] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.60 ms +[1421768904.655280] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.8 ms +[1421768904.900932] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=41.6 ms +[1421768905.119849] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421768905.340650] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421768905.564472] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421768905.847085] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.5 ms +[1421768906.066203] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421768906.290452] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421768906.516165] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421768906.721717] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768906.951036] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.0 ms +[1421768907.182093] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.9 ms +[1421768907.408133] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421768907.686985] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.9 ms +[1421768907.913670] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421768908.146940] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.4 ms +[1421768908.351799] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768908.559197] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.35 ms +[1421768908.774539] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421768909.000132] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421768909.213690] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.57 ms +[1421768909.431817] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421768909.668432] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.0 ms +[1421768909.873484] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768910.091640] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421768910.311286] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421768910.516473] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768910.721658] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768910.927084] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768911.132482] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768911.337627] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768911.543388] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768911.748921] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768911.954429] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768912.160748] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768912.366237] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768912.572015] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768912.777483] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768912.983959] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768913.189124] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768913.394811] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768913.600443] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768913.806003] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768914.011235] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768914.216294] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768914.421376] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768914.626709] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768914.831924] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768915.036858] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421768915.241790] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768915.447572] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768915.653050] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768915.857954] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768916.062726] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768916.267906] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768916.473413] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768916.678459] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768916.885128] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421768917.090377] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768917.296710] 1612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768917.503503] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768917.709440] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768917.915002] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768918.121553] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421768918.327989] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421768918.533377] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421768918.738798] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768918.943755] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768919.148719] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421768919.353705] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768919.559688] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768919.764904] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768919.971331] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421768920.176192] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768920.381897] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421768920.588323] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768920.793865] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768921.000319] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768921.205477] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768921.410589] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768921.615650] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768921.820579] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768922.025168] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768922.230128] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768922.435337] 252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768922.640759] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421768922.846018] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768923.051391] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421768923.256563] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768923.461741] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768923.666842] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768923.872040] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421768924.078361] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768924.283870] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768924.489528] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768924.694959] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768924.900648] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768925.106089] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768925.312699] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768925.519110] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421768925.724916] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421768925.931405] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421768926.136544] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768926.342274] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768926.547973] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421768926.753474] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421768926.958788] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421768927.164488] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768927.371191] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768927.577835] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768927.783708] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421768927.989455] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768928.194824] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768928.400115] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421768928.605161] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768928.810214] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768929.015384] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768929.220647] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768929.425666] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768929.630799] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768929.836336] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768930.041556] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768930.247816] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421768930.453804] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768930.660783] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768930.866371] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421768931.071352] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768931.277486] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768931.482748] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768931.688095] 1410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768931.894518] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421768932.099624] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768932.304970] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768932.510764] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768932.716486] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768932.922874] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421768933.127916] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421768933.333181] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768933.539184] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768933.745256] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421768933.951837] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421768934.157451] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768934.363038] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768934.569117] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768934.774586] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768934.980859] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421768935.187940] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421768935.397644] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.65 ms +[1421768935.610516] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.51 ms +[1421768935.859131] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.4 ms +[1421768936.118237] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=55.3 ms +[1421768936.394834] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.6 ms +[1421768936.600065] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421768936.806560] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421768937.012606] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421768937.217725] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768937.422787] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768937.628075] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768937.833855] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768938.038809] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421768938.243952] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768938.449820] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421768938.656326] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768938.861646] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421768939.067494] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768939.272968] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768939.478405] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768939.684172] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768939.890533] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421768940.096390] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768940.302949] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421768940.508040] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768940.712978] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768940.918326] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768941.124773] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421768941.329783] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768941.535619] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768941.741485] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768941.947241] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768942.152380] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768942.357377] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421768942.562649] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768942.767795] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768942.973042] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768943.178669] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768943.385103] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768943.591167] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768943.796948] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768944.058687] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=57.5 ms +[1421768944.264110] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768944.469795] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421768944.674625] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768944.879832] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768945.085540] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768945.290450] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768945.495519] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768945.700825] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768945.906313] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768946.110999] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768946.316965] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768946.523405] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768946.730230] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421768946.935970] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421768947.141943] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768947.348099] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421768947.553835] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421768947.759843] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768947.965658] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421768948.171375] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421768948.376452] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421768948.581600] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421768948.787065] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768948.992699] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768949.197872] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768949.402856] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768949.608316] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421768949.814802] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768950.019845] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421768950.226051] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421768950.431303] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768950.637191] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768950.842887] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421768951.049232] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421768951.254977] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421768951.460665] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768951.665786] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768951.870512] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421768952.075227] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768952.282047] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.88 ms +[1421768952.487903] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421768952.693374] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768952.898732] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768953.105551] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421768953.311209] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768953.515908] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768953.721350] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768953.927547] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768954.132876] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421768954.339381] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768954.545122] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421768954.750698] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768954.956928] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768955.162343] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768955.367733] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421768955.573694] 1021 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768955.779585] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768955.984751] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421768956.190636] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768956.396171] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421768956.601617] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421768956.808531] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421768957.013505] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768957.218776] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768957.425341] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421768957.630925] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421768957.836109] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768958.040786] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421768958.245856] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421768958.451175] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768958.657135] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421768958.862270] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421768959.068368] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421768959.274348] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421768959.480579] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421768959.686399] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768959.893322] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421768960.098581] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421768960.304067] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421768960.509758] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421768960.714982] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421768960.921485] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421768961.126519] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768961.332501] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421768961.538022] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768961.744427] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421768961.949894] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768962.156733] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421768962.382306] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421768962.619963] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.1 ms +[1421768962.825676] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421768963.030949] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421768963.236178] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421768963.453384] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421768963.662552] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.14 ms +[1421768963.900889] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.3 ms +[1421768964.120921] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421768964.341089] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421768964.566596] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421768964.853198] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.1 ms +[1421768965.072712] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421768965.288432] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.9 ms +[1421768965.513291] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421768965.801149] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.9 ms +[1421768966.027310] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421768966.255087] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421768966.541926] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.8 ms +[1421768966.824461] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.4 ms +[1421768967.048391] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421768967.326468] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.2 ms +[1421768967.544708] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421768967.750211] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768967.955727] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421768968.166683] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.59 ms +[1421768968.374923] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.30 ms +[1421768968.586384] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.31 ms +[1421768968.801102] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421768969.019726] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421768969.238335] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421768969.458645] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421768969.740013] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.3 ms +[1421768969.967270] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421768970.190212] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421768970.475935] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.9 ms +[1421768970.688799] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.83 ms +[1421768970.971268] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.4 ms +[1421768971.200980] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421768971.427758] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421768971.649026] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421768971.857110] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.05 ms +[1421768972.089305] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.4 ms +[1421768972.368287] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.0 ms +[1421768972.593350] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421768972.811730] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.4 ms +[1421768973.016851] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421768973.222264] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421768973.427935] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421768973.636263] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.26 ms +[1421768973.848568] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.36 ms +[1421768974.059850] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.93 ms +[1421768974.278692] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421768974.498118] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421768974.722151] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421768985.132299] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421768985.339137] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421768985.547680] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.99 ms +[1421768985.773433] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421768985.987861] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.2 ms +[1421768986.230773] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.8 ms +[1421768986.489245] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=54.3 ms +[1421768986.764812] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.1 ms +[1421768986.990106] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421768987.217432] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421768987.430793] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.33 ms +[1421768987.658550] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421768987.883534] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421768988.112034] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.1 ms +[1421768988.398082] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.0 ms +[1421768988.624514] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421768988.902742] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.3 ms +[1421768989.125503] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421768989.348115] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421768989.587585] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.6 ms +[1421768989.793612] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421768989.999264] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421768990.207752] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.01 ms +[1421768990.419229] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.37 ms +[1421768990.633528] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.98 ms +[1421768990.884386] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.4 ms +[1421768991.154244] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=65.8 ms +[1421768991.435057] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.4 ms +[1421768991.641862] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421768991.926768] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.7 ms +[1421768992.156763] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421768992.381645] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421768992.606521] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421768992.833178] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421768993.055118] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421768993.334329] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.2 ms +[1421768993.614963] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.7 ms +[1421768993.843310] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421768994.070447] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421768994.297908] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421768994.503720] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421768994.710377] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421768994.917772] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.92 ms +[1421768995.143985] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421768995.357487] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.37 ms +[1421768995.576760] 847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421768995.793004] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421768996.013712] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421768996.237043] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421768996.515579] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.0 ms +[1421768996.735693] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms +[1421768996.941974] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421768997.167259] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421768997.376599] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.27 ms +[1421768997.600827] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421768997.885604] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.6 ms +[1421768998.116212] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.8 ms +[1421768998.345108] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421768998.572062] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421768998.852798] 1720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.6 ms +[1421768999.082876] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.2 ms +[1421768999.355666] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=68.9 ms +[1421768999.563280] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.23 ms +[1421768999.771601] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.16 ms +[1421769000.019686] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.4 ms +[1421769000.240712] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421769000.458570] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421769000.678426] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421769000.902264] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421769001.186472] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.9 ms +[1421769001.411524] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421769001.643963] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.7 ms +[1421769001.867285] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421769002.091303] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421769002.323851] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.5 ms +[1421769002.554489] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.1 ms +[1421769002.783972] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.2 ms +[1421769003.010764] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421769003.238003] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421769003.463111] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421769003.684329] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421769003.890367] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769004.095833] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769004.302904] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.05 ms +[1421769004.513011] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.69 ms +[1421769004.722955] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.14 ms +[1421769004.939898] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421769005.195092] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=50.9 ms +[1421769005.416243] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421769005.637345] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421769005.915558] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.3 ms +[1421769006.198973] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.3 ms +[1421769006.404388] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769006.609455] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769006.815898] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769007.020775] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769007.226693] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421769007.437542] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.15 ms +[1421769007.642924] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769007.850602] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.32 ms +[1421769008.061753] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.33 ms +[1421769008.296306] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.5 ms +[1421769008.516189] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421769008.734337] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421769008.959233] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421769009.184166] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421769009.461981] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.0 ms +[1421769009.667296] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769009.872643] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769010.083055] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.90 ms +[1421769010.291942] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.82 ms +[1421769010.505571] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.62 ms +[1421769010.748404] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=38.6 ms +[1421769010.965659] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421769011.235944] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=66.0 ms +[1421769011.463093] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421769011.690949] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421769011.917687] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421769012.142069] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421769012.368456] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421769012.575114] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421769012.802858] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421769013.084816] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.8 ms +[1421769013.313979] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421769013.535527] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421769013.764339] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421769014.050707] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.4 ms +[1421769014.256473] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769014.462701] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421769014.668533] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769014.875623] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.94 ms +[1421769015.094089] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421769015.305905] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.90 ms +[1421769015.522006] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421769015.742260] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421769015.961879] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421769016.184384] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421769016.407679] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421769016.634783] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421769016.860450] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421769017.086108] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421769017.312123] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421769017.535900] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421769017.759935] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421769017.979885] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421769018.204586] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421769018.425311] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421769018.709092] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.5 ms +[1421769018.914467] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769019.119775] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769019.325245] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769019.531023] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769019.740114] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.67 ms +[1421769019.953028] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.65 ms +[1421769020.196466] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.3 ms +[1421769020.413285] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421769020.637283] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421769020.863330] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421769021.090567] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421769021.317117] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421769021.536196] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421769021.761831] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421769021.967659] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769022.188793] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421769022.414097] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421769022.639517] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421769022.863881] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421769023.143696] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.8 ms +[1421769023.363075] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421769023.570111] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769023.775952] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769023.981382] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769024.196016] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421769024.407263] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.05 ms +[1421769024.623527] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421769024.874958] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=47.1 ms +[1421769025.097605] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421769025.321783] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421769025.546589] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421769025.768321] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421769026.056679] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.2 ms +[1421769026.336183] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.5 ms +[1421769026.563726] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421769026.782446] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421769027.006942] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421769027.227434] 130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421769027.509838] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.6 ms +[1421769027.737708] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421769027.965730] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421769028.198776] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.1 ms +[1421769028.404152] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769028.609952] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421769028.816938] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.00 ms +[1421769029.034674] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.4 ms +[1421769029.244536] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.08 ms +[1421769029.462631] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.1 ms +[1421769029.714135] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=47.4 ms +[1421769029.978532] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.5 ms +[1421769030.201103] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421769030.431065] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421769030.646978] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.7 ms +[1421769030.852875] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769031.058044] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769031.262928] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769031.468051] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769031.673327] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769031.878473] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769032.083214] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769032.288129] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769032.493370] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769032.701272] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.68 ms +[1421769032.922190] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421769033.159926] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=33.5 ms +[1421769033.377021] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421769033.595540] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421769033.817254] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421769034.021972] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769034.226744] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769034.431802] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769034.637392] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769034.843695] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769035.049206] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769035.254528] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769035.460393] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421769035.665573] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769035.871182] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769036.076535] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769036.281601] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421769036.486365] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769036.692023] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769036.897149] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421769037.101881] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769037.307657] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.91 ms +[1421769037.530568] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms +[1421769037.744128] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.42 ms +[1421769037.950433] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769038.156713] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769038.363309] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421769038.572175] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.07 ms +[1421769038.783543] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.35 ms +[1421769039.026728] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.2 ms +[1421769039.248397] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421769039.515158] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=62.8 ms +[1421769039.799870] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.7 ms +[1421769040.025196] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421769040.252827] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421769040.479936] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421769040.707977] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421769040.913297] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769041.198104] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.9 ms +[1421769041.420857] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421769041.644792] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421769041.919161] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.1 ms +[1421769042.138900] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.7 ms +[1421769042.362665] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421769042.568260] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769042.774657] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769042.980247] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769043.185387] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769043.391017] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769043.597293] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769043.802771] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769044.009233] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.90 ms +[1421769044.217245] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.15 ms +[1421769044.429092] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.23 ms +[1421769044.668227] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.3 ms +[1421769044.917767] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.2 ms +[1421769045.139339] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421769045.363629] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421769045.591813] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421769045.823698] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.6 ms +[1421769046.053195] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421769046.279175] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421769046.507517] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421769046.730644] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421769046.959254] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421769047.186622] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421769047.416280] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.7 ms +[1421769047.642607] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421769047.866234] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421769048.071023] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769048.276330] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769048.481892] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769048.688769] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421769048.910085] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421769049.115518] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769049.320746] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769049.526113] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769049.732355] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769049.938885] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769050.144629] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769050.350812] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769050.556541] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769050.763272] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769050.968927] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769051.174404] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769051.380920] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769051.586785] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769051.792676] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769051.999140] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769052.205337] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769052.410965] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769052.617567] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769052.823646] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769053.029825] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769053.235093] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769053.440072] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769053.645237] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769053.850817] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769054.057052] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769054.262132] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769054.467275] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769054.672929] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769054.878574] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769055.083843] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769055.289218] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769055.495753] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769055.701197] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769055.907196] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769056.111898] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769056.317454] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769056.523228] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769056.729706] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769056.934975] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769057.139807] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769057.344812] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769057.550226] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769057.756557] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421769057.962971] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769058.168189] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421769058.373254] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769058.579060] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769058.785625] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769058.990818] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769059.195673] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769059.401221] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421769059.608021] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421769059.813703] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769060.018979] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769060.224459] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421769060.429982] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769060.635830] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769060.842597] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769061.048897] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769061.253545] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769061.458463] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769061.664122] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769061.870782] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769062.076119] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769062.281223] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769062.487116] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769062.692386] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769062.897638] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769063.103733] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421769063.308958] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769063.515629] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769063.721772] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769063.927068] 1297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769064.132600] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769064.337943] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769064.543673] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769064.749456] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769064.954213] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769065.160182] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769065.368116] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769065.574217] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769065.780131] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769065.986568] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769066.191592] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769066.396865] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769066.604348] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769066.810055] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769067.015248] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769067.220376] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769067.425887] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769067.632343] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769067.837576] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769068.043521] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769068.248729] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769068.454001] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769068.659005] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769068.864050] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769069.069368] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769069.275437] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769069.481354] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769069.686730] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769069.891937] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769070.098041] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769070.302986] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769070.509346] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769070.716000] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769070.921426] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769071.127125] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769071.332120] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769071.537246] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769071.743477] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769071.948738] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769072.154250] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769072.359857] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769072.565321] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769072.770808] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769072.977315] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769073.183661] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421769073.388674] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769073.594678] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769073.799882] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769074.004577] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769074.209579] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769074.415921] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769074.621198] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769074.826155] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421769075.032111] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769075.237937] 1529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769075.443977] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769075.650396] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769075.856154] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769076.062052] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769076.268220] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769076.473727] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769076.679546] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769076.885011] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421769077.090826] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769077.295991] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769077.501428] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769077.708079] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769077.913601] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769078.118647] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769078.323553] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769078.528661] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769078.733783] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769078.938870] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769079.145414] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769079.351075] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769079.556511] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769079.761662] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769079.966910] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769080.172564] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769080.378290] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769080.584126] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769080.789848] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769080.995746] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769081.201218] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769081.406418] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769081.612280] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769081.818869] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769082.024156] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769082.230369] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769082.435910] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769082.641839] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769082.847132] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769083.052028] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769083.256762] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769083.462085] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769083.667696] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769083.872681] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769084.078407] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769084.283790] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769084.488534] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421769084.693986] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769084.899784] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769085.104806] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769085.309728] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769085.515673] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769085.721171] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769085.926743] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769086.132336] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769086.337930] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769086.543356] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769086.748377] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769086.953703] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769087.159670] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769087.365936] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769087.571384] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769087.776753] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769087.982233] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769088.187489] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769088.393267] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769088.599065] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769088.804960] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769089.010919] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769089.215823] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769089.421301] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769089.626818] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769089.833193] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769090.038988] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769090.244293] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769090.450519] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769090.657120] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769090.863195] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421769091.073335] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.66 ms +[1421769091.285343] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.10 ms +[1421769091.501927] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421769091.718323] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421769091.940631] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421769092.163606] 1133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421769092.388951] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421769092.614308] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421769092.840865] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421769093.116197] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.1 ms +[1421769093.336004] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421769093.564154] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421769093.792129] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421769094.017636] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421769094.223893] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769094.428739] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769094.634017] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769094.840148] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769095.047918] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.50 ms +[1421769095.273319] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421769095.514068] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.8 ms +[1421769095.762510] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.1 ms +[1421769095.988376] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421769096.207735] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421769096.487006] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.2 ms +[1421769096.710944] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421769096.993448] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.5 ms +[1421769097.207671] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.93 ms +[1421769097.431709] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421769097.714932] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.0 ms +[1421769097.941165] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421769098.167496] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421769098.392403] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421769098.614159] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421769098.843469] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421769099.074598] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.5 ms +[1421769099.280948] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421769099.487669] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769099.693343] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769099.898447] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769100.112062] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.91 ms +[1421769100.321820] 1248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.03 ms +[1421769100.534700] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.02 ms +[1421769100.752982] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421769100.973236] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421769101.193947] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421769101.421167] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421769101.626705] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769101.831979] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769102.036721] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769102.242099] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769102.447700] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421769102.653652] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769102.859417] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769103.064508] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769103.269368] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769103.475301] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769103.680498] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769103.885816] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769104.091043] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769104.296261] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769104.502834] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421769104.708692] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769104.914181] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421769105.119647] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769105.325179] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769105.530645] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769105.736957] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769105.942206] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769106.148913] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769106.353851] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769106.559956] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421769106.765393] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769106.971752] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769107.176905] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769107.382005] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769107.587195] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769107.792627] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769107.997903] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421769108.203159] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769108.409564] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769108.616151] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421769108.821693] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421769109.027694] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421769109.233004] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769109.439541] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769109.644378] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421769109.850089] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769110.056163] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769110.281798] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421769110.495233] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.95 ms +[1421769110.710204] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421769110.927018] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421769111.149182] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms +[1421769111.373994] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421769111.600168] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421769111.824479] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421769112.051170] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421769112.256528] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769112.462128] 1342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421769112.668336] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421769112.877048] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.03 ms +[1421769113.088107] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.00 ms +[1421769113.300631] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.52 ms +[1421769113.513880] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.53 ms +[1421769113.733431] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421769114.008082] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.4 ms +[1421769114.294183] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.9 ms +[1421769114.519691] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421769114.746362] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421769114.968428] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421769115.194080] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421769115.398933] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769115.624990] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421769115.847452] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421769116.072442] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421769116.305183] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.6 ms +[1421769116.532679] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421769116.759878] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769116.965335] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769117.170380] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769117.376450] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769117.582059] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769117.788417] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769117.993753] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769118.199240] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769118.406103] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.85 ms +[1421769118.613674] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.42 ms +[1421769118.822447] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.86 ms +[1421769119.035289] 277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.06 ms +[1421769119.241049] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.91 ms +[1421769119.455268] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421769119.674890] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.2 ms +[1421769119.898508] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421769120.178489] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.1 ms +[1421769120.405369] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421769120.635850] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.2 ms +[1421769120.897769] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=57.8 ms +[1421769121.123668] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421769121.354543] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.8 ms +[1421769121.577513] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421769121.802083] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421769122.027239] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421769122.313718] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.6 ms +[1421769122.538228] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421769122.743341] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769122.948605] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769123.154573] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769123.362317] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.47 ms +[1421769123.591862] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.5 ms +[1421769123.798841] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421769124.004232] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769124.210495] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769124.415973] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769124.622022] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769124.827622] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769125.032462] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769125.237916] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769125.443087] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769125.648819] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769125.854472] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769126.059453] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769126.264622] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769126.469983] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769126.675394] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769126.880780] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769127.087265] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421769127.292704] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769127.499379] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421769127.704993] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769127.909810] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421769128.115288] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769128.321461] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769128.527753] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769128.734241] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769128.939265] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769129.144133] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769129.349547] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769129.555016] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769129.760756] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769129.965962] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769130.171047] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769130.377224] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769130.582597] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769130.788779] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769130.994364] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769131.199711] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769131.405034] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769131.611371] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769131.817830] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769132.023768] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421769132.229843] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769132.436278] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421769132.641688] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769132.847079] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769133.051840] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769133.257672] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421769133.463326] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421769133.669777] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769133.874641] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769134.079862] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421769134.284941] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769134.491765] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769134.698567] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769134.904247] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769135.109577] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769135.315540] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769135.521126] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769135.727054] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769135.933916] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769136.139727] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769136.345420] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769136.551687] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769136.757155] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769136.962447] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421769137.167820] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769137.373566] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421769137.578917] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769137.784261] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769137.989806] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769138.194839] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421769138.400016] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769138.606325] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769138.811779] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769139.016741] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769139.221992] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769139.427226] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769139.632416] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769139.838249] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769140.042930] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769140.248168] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769140.453371] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769140.659716] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769140.865289] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769141.070296] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769141.275295] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769141.480500] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769141.685676] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769141.891415] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769142.097932] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421769142.303839] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769142.509893] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769142.716470] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421769142.922757] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769143.128521] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769143.334743] 1913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769143.540728] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769143.746138] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769143.952065] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421769144.157212] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769144.362579] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769144.567677] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421769144.773760] 1720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769144.979033] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769145.185230] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769145.390200] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769145.595117] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769145.799933] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769146.004951] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769146.210039] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769146.415356] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769146.621371] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769146.827183] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769147.031972] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769147.236960] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769147.442209] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769147.647457] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769147.854033] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769148.058773] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769148.263874] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769148.468925] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769148.674599] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769148.880914] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769149.086076] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769149.291089] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769149.496300] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769149.703168] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421769149.908732] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421769150.113630] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769150.319102] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769150.525732] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769150.731478] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769150.936753] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769151.143407] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769151.349647] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769151.555007] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769151.759955] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769151.964855] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769152.171192] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421769152.376252] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769152.581291] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769152.786285] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769152.991685] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769153.196470] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769153.401500] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769153.607131] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769153.812807] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769154.018517] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769154.224675] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769154.429771] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769154.635427] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769154.841010] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769155.045570] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769155.250715] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769155.456528] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769155.662502] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769155.867888] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769156.073598] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769156.278845] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769156.484663] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769156.690619] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769156.895830] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769157.100764] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769157.306382] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769157.513547] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.87 ms +[1421769157.719989] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769157.926452] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769158.132169] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769158.337408] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769158.542956] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769158.749393] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769158.956052] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421769159.161465] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769159.366589] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769159.572729] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769159.778511] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769159.985266] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769160.191823] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769160.397829] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769160.603309] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769160.809031] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769161.014875] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421769161.220147] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769161.450114] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.1 ms +[1421769161.655609] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769161.860682] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769162.065880] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769162.271176] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769162.476586] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769162.682387] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769162.887364] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769163.092350] 30 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769163.297650] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769163.503800] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769163.709492] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769163.915137] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769164.119978] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769164.325420] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769164.530964] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769164.736562] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769164.942196] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769165.147806] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769165.353858] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769165.603566] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.8 ms +[1421769165.808797] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769166.014696] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.69 ms +[1421769166.241714] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421769166.452364] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.51 ms +[1421769166.666824] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769166.927589] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=56.9 ms +[1421769167.150923] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421769167.376569] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421769167.582789] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769167.787883] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769167.993083] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769168.198688] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769168.404017] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769168.610243] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769168.815534] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769169.020852] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769169.226333] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421769169.432670] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769169.638954] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421769169.844093] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769170.049095] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769170.262567] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.58 ms +[1421769170.471576] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.11 ms +[1421769170.684281] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.12 ms +[1421769170.930978] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.8 ms +[1421769171.148858] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421769171.369168] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421769171.646104] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.0 ms +[1421769171.870337] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421769172.075685] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769172.280782] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769172.486271] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421769172.693390] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.96 ms +[1421769172.918239] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421769173.131278] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.96 ms +[1421769173.378816] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.4 ms +[1421769173.642891] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.7 ms +[1421769173.871753] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.7 ms +[1421769174.090540] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421769174.308212] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421769174.539063] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.4 ms +[1421769174.769896] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.3 ms +[1421769174.998308] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421769175.229397] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.7 ms +[1421769175.454660] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421769175.677467] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421769175.954747] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.2 ms +[1421769176.182730] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421769176.405353] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421769176.691711] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.0 ms +[1421769176.908991] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421769177.113948] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769177.319536] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769177.526809] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.18 ms +[1421769177.735651] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.82 ms +[1421769177.947745] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.21 ms +[1421769178.162676] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421769178.381556] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421769178.600368] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421769178.822016] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421769179.041715] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421769179.246920] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769179.452524] 555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769179.659131] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769179.864648] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769180.069265] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769180.274600] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769180.479818] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769180.685503] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421769180.890858] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769181.096273] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769181.303944] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.72 ms +[1421769181.515063] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.71 ms +[1421769181.720773] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769181.925403] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769182.130506] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769182.336702] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769182.542097] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769182.747876] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769182.953546] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769183.158863] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769183.364501] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769183.570081] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769183.776353] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769183.982915] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769184.189161] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769184.395391] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769184.601571] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769184.807377] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769185.012074] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769185.217414] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769185.422783] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769185.628708] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769185.833969] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769186.039032] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769186.244156] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769186.449276] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769186.655049] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769186.860042] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769187.064932] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769187.269991] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769187.475652] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769187.681778] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769187.887602] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769188.092390] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769188.298730] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421769188.504420] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769188.711038] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769188.916039] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769189.122031] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769189.327238] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769189.533967] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769189.740624] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769189.945882] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769190.150875] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769190.356437] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769190.561760] 30 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769190.767433] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769190.973259] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769191.179839] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769191.385149] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769191.590923] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769191.797634] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769192.004078] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769192.209821] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421769192.415475] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769192.620508] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769192.825883] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769193.030891] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769193.236530] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769193.441960] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769193.647475] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421769193.853797] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769194.058389] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769194.263755] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769194.469208] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769194.674959] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769194.881299] 1984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769195.086479] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769195.291503] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769195.496718] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769195.703393] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769195.908605] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769196.113039] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769196.318079] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769196.523346] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769196.728537] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769196.934112] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769197.139353] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769197.344753] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769197.549880] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421769197.755158] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769197.961469] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769198.167040] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769198.373295] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769198.578772] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769198.783829] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769198.989202] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421769199.195789] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769199.401099] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769199.606519] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769199.811904] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769200.016478] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769200.222646] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769200.427770] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769200.634265] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769200.839912] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769201.045447] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769201.250422] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769201.456164] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421769201.662313] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769201.867603] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769202.072285] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769202.277632] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421769202.482763] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769202.688047] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769202.893530] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421769203.098536] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769203.304086] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769203.509705] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769203.714742] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769203.920846] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769204.125793] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769204.330827] 998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769204.537153] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769204.743105] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769204.948349] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769205.153574] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769205.358483] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769205.563911] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769205.769114] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769205.974286] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769206.179891] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769206.384787] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769206.589918] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769206.794975] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769207.000134] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769207.205432] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769207.411786] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769207.618635] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769207.824548] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769208.029343] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769208.234296] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769208.440700] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769208.646410] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769208.852719] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769209.057457] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769209.262301] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769209.467382] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769209.672222] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769209.877176] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769210.082100] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769210.289679] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.48 ms +[1421769210.495809] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769210.701638] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769210.906768] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769211.111457] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769211.316756] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769211.522332] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769211.727851] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769211.933619] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769212.139061] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769212.344348] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769212.549853] 1063 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769212.756674] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769212.962494] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769213.167588] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769213.373742] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769213.580113] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769213.785290] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769213.990433] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769214.195377] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769214.410522] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421769214.616760] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769214.823357] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769215.029350] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769215.234701] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769215.440294] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769215.646093] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769215.851729] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769216.056850] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769216.261908] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769216.466869] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769216.672964] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769216.878291] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769217.084028] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421769217.289502] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769217.495973] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769217.701363] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769217.906745] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769218.111395] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769218.316783] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769218.522499] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769218.729144] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769218.934261] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769219.139521] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769219.344831] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769219.551746] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769219.757310] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769219.963624] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421769220.169889] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769220.376406] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769220.581215] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769220.787233] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769220.992616] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769221.198365] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769221.404532] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769221.610366] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769221.816380] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421769222.021718] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421769222.227002] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769222.432418] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769222.638972] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421769222.844807] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769223.049590] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769223.254347] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769223.459529] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769223.665190] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769223.871278] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769224.076346] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769224.281494] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769224.486885] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769224.692313] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769224.898159] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769225.102827] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769225.308229] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769225.513641] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769225.718667] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769225.925540] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769226.132227] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769226.338661] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769226.543734] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769226.749140] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769226.954524] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769227.159806] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769227.365298] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769227.571674] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769227.777482] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769227.984010] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769228.189644] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769228.395193] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769228.601416] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769228.808353] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769229.014255] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769229.219392] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769229.425822] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421769229.631598] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769229.836913] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769230.042380] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421769230.247822] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769230.453341] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769230.659427] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769230.865114] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769231.071044] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421769231.276014] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769231.480789] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769231.685670] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769231.891203] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769232.097691] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769232.304097] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421769232.510122] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769232.715502] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769232.920714] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769233.125782] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769233.331837] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769233.537891] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769233.742702] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769233.947715] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769234.153171] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769234.359383] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769234.564837] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769234.770770] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421769234.978350] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.83 ms +[1421769235.183670] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769235.388898] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769235.594301] 260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769235.799081] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421769236.005270] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421769236.210898] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769236.416551] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769236.621995] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769236.827543] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769237.033818] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769237.239012] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769237.445791] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769237.651288] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769237.855879] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.00 ms +[1421769238.060779] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769238.266276] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769238.471427] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769238.676945] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769238.882256] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769239.086931] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769239.292358] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769239.498070] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421769239.703458] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769239.909842] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769240.115129] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769240.320416] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769240.525898] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769240.732588] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769240.938142] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769241.144517] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421769241.349982] 651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769241.555712] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769241.761048] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769241.966867] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421769242.173642] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769242.378802] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769242.583772] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769242.789897] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421769242.995382] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769243.200830] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769243.405860] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769243.611629] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769243.818174] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769244.023254] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769244.228396] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769244.434424] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769244.640054] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769244.846303] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769245.052540] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769245.257817] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769245.462983] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769245.667646] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769245.872754] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769246.077626] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769246.282532] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769246.488848] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769246.694078] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769246.900005] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769247.104719] 1417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769247.310155] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769247.515604] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769247.720760] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769247.927053] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769248.133526] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421769248.339074] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769248.545782] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769248.751534] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769248.958021] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769249.164334] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769249.370416] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769249.576047] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769249.781672] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769249.988449] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769250.194111] 825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769250.399420] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769250.604949] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769250.810131] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769251.014637] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769251.220070] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769251.425534] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769251.631338] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769251.838320] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769252.043428] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769252.248655] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769252.454756] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.91 ms +[1421769252.661296] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769252.867054] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421769253.072882] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769253.277956] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769253.483288] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769253.688685] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769253.894170] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421769254.099592] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421769254.304492] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769254.509755] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769254.715250] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769254.920364] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769255.126887] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769255.332546] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421769255.540559] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.75 ms +[1421769255.746207] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769255.984348] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.0 ms +[1421769256.200339] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421769256.456591] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=52.0 ms +[1421769256.728098] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=67.2 ms +[1421769256.952981] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421769257.158122] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769257.363493] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769257.569112] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769257.785674] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421769257.997004] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.01 ms +[1421769258.208660] 1330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.55 ms +[1421769258.422326] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.41 ms +[1421769258.641793] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.2 ms +[1421769258.865909] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421769259.089809] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421769259.370953] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.1 ms +[1421769259.602780] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.6 ms +[1421769259.886129] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.3 ms +[1421769260.107468] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421769260.334698] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421769260.540339] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421769260.745705] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769260.951110] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769261.158273] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.03 ms +[1421769261.383875] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421769261.598851] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421769261.812220] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.97 ms +[1421769262.064740] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.5 ms +[1421769262.270293] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769262.475912] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769262.681093] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769262.894009] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.00 ms +[1421769263.103390] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.77 ms +[1421769263.317304] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421769263.561136] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.8 ms +[1421769263.779100] 161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421769264.004801] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421769264.227913] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421769264.454090] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421769264.673455] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421769264.954608] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.0 ms +[1421769265.179341] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421769265.408860] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421769265.630258] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421769265.835940] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769266.040738] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769266.245789] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769266.451637] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769266.659765] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.88 ms +[1421769266.868272] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.65 ms +[1421769267.097069] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421769267.315782] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421769267.529575] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.52 ms +[1421769267.735968] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769267.941051] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769268.147287] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769268.362516] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.4 ms +[1421769268.574853] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.29 ms +[1421769268.787914] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.01 ms +[1421769269.005781] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421769269.211003] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769269.416320] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421769269.621657] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769269.828423] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769270.033503] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769270.238702] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769270.443866] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769270.649452] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421769270.854909] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769271.060163] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769271.265672] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769271.471828] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769271.678050] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769271.884717] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769272.090660] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769272.296744] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769272.502703] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769272.709569] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421769272.914983] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769273.120520] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421769273.325932] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769273.531065] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769273.736252] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769273.942681] 1888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769274.148095] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769274.353718] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769274.559046] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769274.764264] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769274.969192] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769275.174423] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769275.379574] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769275.586214] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421769275.791601] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769275.997662] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769276.203210] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769276.409135] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769276.614684] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769276.820882] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769277.026008] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769277.232177] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421769277.438203] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769277.643655] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769277.849394] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769278.055542] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769278.260842] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769278.466025] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769278.672790] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769278.878295] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769279.084102] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769279.289290] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769279.494746] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769279.700483] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769279.906235] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769280.112988] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421769280.318353] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769280.523620] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769280.730181] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769280.937181] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769281.143020] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769281.348426] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769281.554112] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769281.760381] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769281.965775] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769282.171518] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.88 ms +[1421769282.377003] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769282.582436] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769282.788183] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769282.994576] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769283.200631] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769283.406009] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769283.611734] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769283.817838] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769284.023785] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769284.229309] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769284.434502] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769284.639677] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769284.845734] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769285.050355] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769285.255528] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769285.461228] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769285.667773] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769285.873312] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769286.078501] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769286.283961] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769286.489347] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769286.694658] 671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769286.900558] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769287.105205] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769287.310169] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769287.516765] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769287.722163] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769287.927776] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769288.133622] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769288.339231] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769288.544608] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769288.750371] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769288.955816] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769289.160906] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769289.367199] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769289.572812] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769289.778722] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421769289.984964] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421769290.191398] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769290.396965] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769290.602769] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769290.807595] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769291.012048] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769291.218214] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769291.424081] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769291.630220] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769291.836618] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769292.042566] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769292.247856] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769292.453132] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769292.659669] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769292.866076] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769293.071392] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769293.277593] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769293.484289] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.01 ms +[1421769293.690414] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769293.895887] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769294.101489] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769294.306470] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769294.512156] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769294.717622] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769294.923175] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769295.129607] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769295.334447] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769295.540431] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769295.745802] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769295.951014] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769296.156626] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769296.363138] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769296.568756] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769296.774152] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769296.980101] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421769297.185484] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769297.390514] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769297.595641] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421769297.800768] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769298.006176] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769298.211900] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769298.417160] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769298.623104] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769298.828512] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769299.034600] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769299.239747] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769299.445140] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769299.651045] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769299.856035] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769300.060949] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769300.266804] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769300.472066] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769300.678728] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769300.884034] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769301.089014] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769301.294323] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769301.499900] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769301.705140] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769301.912425] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421769302.118211] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769302.324511] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769302.530213] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769302.735784] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769302.940710] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769303.146883] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769303.352216] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769303.558682] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769303.763861] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769303.969458] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769304.175021] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769304.380429] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769304.585911] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769304.791090] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769304.996504] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769305.201609] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769305.407191] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769305.613839] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769305.820086] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769306.026237] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769306.231700] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769306.437380] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769306.642555] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769306.847971] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769307.052859] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769307.258051] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769307.463434] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769307.669585] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769307.875438] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769308.080674] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769308.285860] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769308.492620] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769308.698171] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769308.903843] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769309.108681] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769309.313412] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769309.519472] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769309.724852] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769309.930748] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769310.136505] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769310.341629] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769310.548151] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769310.754707] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769310.961206] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769311.166814] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769311.372328] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769311.579230] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769311.784327] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769311.989741] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769312.195308] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769312.401713] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769312.607342] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769312.813828] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769313.018975] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769313.224935] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769313.434211] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.97 ms +[1421769313.640792] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769313.845962] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769314.051803] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769314.268387] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421769314.474447] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421769314.680034] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769314.885826] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769315.092077] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769315.297555] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769315.502735] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769315.707974] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769315.914069] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769316.119742] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421769316.325109] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769316.530895] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421769316.736476] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769316.942028] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769317.148452] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769317.353451] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769317.559465] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421769317.764392] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769317.969646] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769318.174903] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769318.380362] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769318.587380] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769318.792608] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769318.997735] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769319.202842] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769319.409422] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769319.615011] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769319.820377] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769320.025649] 1328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769320.230787] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769320.436948] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769320.641816] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769320.847086] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769321.051946] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769321.256908] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769321.462035] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769321.667587] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769321.872817] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769322.077686] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769322.289802] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.95 ms +[1421769322.495420] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769322.700495] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769322.905873] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769323.110707] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769323.316687] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769323.523370] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421769323.729898] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769323.936180] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769324.141560] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769324.346757] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769324.551900] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769324.757874] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769324.963543] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769325.170555] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769325.376166] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769325.581585] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769325.787235] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769325.992713] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769326.197919] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769326.403392] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769326.608857] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769326.815696] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769327.020780] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769327.225485] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769327.431961] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769327.637805] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769327.844199] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769328.050572] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769328.257442] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421769328.464071] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769328.669966] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769328.876094] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769329.081077] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769329.286228] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769329.491557] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769329.697141] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769329.902844] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769330.107979] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769330.314529] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769330.520558] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769330.727009] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769330.932595] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769331.138480] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769331.343869] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769331.549533] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769331.754603] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769331.961355] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769332.167583] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769332.373879] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769332.579550] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769332.785152] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769332.991120] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769333.197037] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769333.403151] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769333.609896] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769333.815343] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769334.020152] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769334.225363] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769334.431054] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769334.636438] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769334.843239] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769335.048243] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769335.254669] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769335.460185] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769335.666692] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769335.871967] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769336.076648] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769336.282102] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769336.489487] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.01 ms +[1421769336.701743] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.69 ms +[1421769336.913140] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.96 ms +[1421769337.119354] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769337.325501] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769337.530553] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769337.736028] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769337.942051] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769338.148172] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769338.352895] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.03 ms +[1421769338.558772] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769338.764824] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769338.969709] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769339.175931] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769339.381448] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769339.587024] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769339.792103] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769339.996968] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769340.202192] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769340.407501] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769340.613205] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769340.818473] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769341.023766] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769341.229142] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769341.434419] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769341.640091] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769341.845231] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769342.049820] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769342.254991] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769342.461799] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421769342.666977] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769342.872424] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769343.077747] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769343.283110] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769343.488832] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769343.695008] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421769343.900763] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769344.105824] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769344.312011] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769344.517178] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769344.722882] 555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769344.928837] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769345.134246] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769345.339657] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769345.545951] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769345.752591] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769345.958114] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769346.163312] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769346.368631] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769346.574433] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769346.788058] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.12 ms +[1421769346.995083] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769347.200258] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769347.406807] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421769347.612199] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769347.818106] 1573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769348.022704] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769348.227467] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769348.432351] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769348.638893] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.80 ms +[1421769348.844364] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769349.050441] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769349.256418] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769349.462911] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769349.668558] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769349.875094] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769350.081451] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421769350.288016] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421769350.493280] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769350.698860] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769350.905235] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769351.111577] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769351.317437] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421769351.524385] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769351.730596] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769351.936693] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769352.141682] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769352.346727] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769352.552106] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769352.757618] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421769352.962531] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769353.167611] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769353.372987] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769353.579593] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769353.784769] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769353.990003] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769354.195255] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769354.401088] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769354.606387] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769354.811736] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769355.016603] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.01 ms +[1421769355.221548] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769355.426901] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769355.632626] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769355.838012] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769356.043288] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769356.248336] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769356.453487] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769356.660324] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421769356.866477] 1148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769357.071412] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769357.277240] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769357.483334] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769357.689816] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769357.896186] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769358.100678] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769358.305832] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769358.520542] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421769358.726700] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769358.933103] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769359.139248] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769359.344392] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769359.549587] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769359.754653] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769359.959582] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421769360.165889] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421769360.372146] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769360.577588] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769360.783525] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421769360.989104] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769361.194365] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769361.399345] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769361.605045] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769361.810067] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769362.015780] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769362.220843] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769362.427147] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769362.632565] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769362.838045] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769363.042793] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769363.247737] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769363.453931] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421769363.660552] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.72 ms +[1421769363.865740] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769364.070473] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769364.275926] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769364.481165] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769364.686502] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769364.893014] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769365.098087] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769365.303061] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769365.509027] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769365.714529] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769365.920984] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769366.126157] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769366.331552] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769366.536729] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769366.741930] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769366.947083] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769367.152147] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769367.358706] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421769367.563974] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769367.769949] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769367.975316] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769368.181933] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769368.387251] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769368.592917] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769368.798551] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769369.004929] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769369.211301] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769369.416652] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421769369.622105] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769369.827741] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421769370.033806] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769370.239161] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769370.445387] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769370.652044] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769370.858282] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769371.062857] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769371.268795] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769371.474093] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769371.679340] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769371.885896] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769372.091361] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769372.297975] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.76 ms +[1421769372.504372] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421769372.709811] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769372.915354] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769373.121833] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769373.327139] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769373.533007] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769373.738386] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769373.943656] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769374.148693] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769374.353880] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769374.560508] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421769374.765749] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769374.971153] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769375.177037] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421769375.382360] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769375.587662] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769375.794453] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769375.999903] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769376.205391] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769376.410110] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769376.615997] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769376.821985] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769377.026594] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769377.232570] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769377.438934] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769377.644931] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769377.850601] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769378.055823] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769378.262338] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421769378.468190] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421769378.673648] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421769378.879656] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769379.084549] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769379.289825] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769379.496611] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769379.702055] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769379.907319] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769380.112264] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769380.317312] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769380.523334] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769380.729445] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769380.934608] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769381.139752] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769381.344565] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769381.549795] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769381.755114] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769381.960043] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769382.164786] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769382.370394] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769382.576179] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769382.781649] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769382.986623] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769383.191895] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769383.397289] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769383.603673] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769383.809727] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421769384.015154] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769384.220403] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769384.426331] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769384.631767] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769384.838021] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769385.042937] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769385.248256] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769385.453740] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769385.659476] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769385.865984] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769386.071888] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769386.277099] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769386.482800] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421769386.688573] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769386.894041] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769387.098965] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769387.303963] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769387.508968] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769387.713798] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769387.919924] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421769388.124661] 1186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769388.329884] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769388.535534] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769388.741971] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769388.947530] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769389.153881] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421769389.359733] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769389.565367] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769389.770528] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769389.975801] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421769390.181005] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769390.387479] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421769390.593978] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769390.799620] 1186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769391.005407] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421769391.210958] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769391.416258] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769391.623339] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421769391.829234] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421769392.034125] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769392.239558] 1238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769392.445162] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769392.650411] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769392.856628] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769393.062157] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769393.268514] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421769393.473521] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769393.678516] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769393.884659] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421769394.089324] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769394.294789] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769394.500039] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769394.706308] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769394.911724] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769395.117318] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769395.322874] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769395.528654] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769395.733707] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769395.939940] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769396.145413] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769396.351730] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769396.557367] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769396.762872] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769396.969602] 1803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769397.175535] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769397.380638] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769397.586990] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421769397.792696] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769397.998241] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769398.203188] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769398.409192] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769398.615897] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.75 ms +[1421769398.821096] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769399.026886] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769399.233141] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769399.439685] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769399.645189] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769399.849933] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769400.054581] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769400.260987] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769400.469662] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.53 ms +[1421769400.679852] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.50 ms +[1421769400.892185] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.43 ms +[1421769401.097014] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769401.302067] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769401.507552] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769401.714567] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769401.921552] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769402.126846] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769402.333686] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769412.743392] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769412.949283] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769413.154515] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769413.359905] 967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769413.565220] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769413.771687] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769413.977143] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769414.182546] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769414.387857] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769414.593812] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769414.799406] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421769415.004577] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769415.209864] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769415.414773] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769415.620628] 1684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769415.826588] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769416.032255] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769416.237256] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769416.443454] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769416.648975] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769416.854495] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769417.059596] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769417.264502] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769417.469835] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769417.674770] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769417.880112] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769418.084914] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769418.291335] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769418.497973] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769418.703252] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769418.909975] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769419.116369] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421769419.322041] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769419.527700] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769419.734268] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769419.940473] 1938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769420.145376] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421769420.350974] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769420.556285] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769420.762532] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769420.967598] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769421.173241] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421769421.379789] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421769421.585271] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769421.791150] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769421.997425] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769422.202591] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769422.407879] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769422.613186] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769422.818154] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769423.023255] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769423.228576] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769423.434805] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421769423.640788] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769423.846496] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769424.052222] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769424.258319] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769424.464359] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769424.669860] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769424.875615] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769425.080686] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769425.285825] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769425.491202] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769425.696214] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769425.901644] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769426.106704] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769426.312217] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769426.517925] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769426.723976] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769426.929455] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769427.135043] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769427.340476] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769427.545948] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769427.751723] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769427.956857] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769428.161829] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769428.367080] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769428.573375] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769428.778444] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769428.983434] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769429.188816] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769429.395020] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769429.600917] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769429.806309] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769430.011102] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769430.216088] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769430.421185] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769430.626211] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769430.830690] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769431.035444] 1451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769431.240907] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769431.446147] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769431.651431] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769431.857154] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769432.062874] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769432.267849] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769432.473154] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769432.678362] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769432.884145] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769433.090435] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769433.295549] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769433.501582] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769433.707318] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769433.912813] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769434.118951] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769434.324216] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769434.529432] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769434.735830] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421769434.941603] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769435.147179] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769435.353622] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769435.559897] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769435.766710] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769435.973264] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769436.179117] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769436.384519] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769436.589746] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769436.795074] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769437.001364] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421769437.206352] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769437.411475] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769437.616370] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769437.822223] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769438.028160] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769438.232958] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769438.439045] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769438.644856] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421769438.851830] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.79 ms +[1421769439.056782] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769439.262846] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769439.468039] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769439.674490] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769439.880313] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769440.085487] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769440.290772] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769440.496738] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769440.702575] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769440.909677] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769441.115109] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769441.321104] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769441.526298] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769441.731503] 1261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769441.936616] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769442.141705] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769442.346875] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769442.553349] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769442.758393] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769442.964161] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769443.169794] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769443.375234] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769443.580094] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769443.785037] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769443.990646] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769444.195888] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769444.402608] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421769444.609356] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769444.814741] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769445.019444] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769445.224470] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769445.430551] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769445.635961] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769445.840763] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769446.045577] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769446.250522] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769446.456049] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769446.661099] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769446.866915] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769447.071908] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421769447.277827] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769447.483382] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769447.688599] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769447.894265] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769448.099163] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769448.304720] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769448.510122] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769448.716151] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769448.921306] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769449.125850] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421769449.331034] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769449.536111] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769449.741431] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769449.946986] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769450.152485] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769450.358331] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769450.563732] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769450.768983] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769461.198240] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421769461.486253] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.9 ms +[1421769461.691583] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769461.919379] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421769462.151321] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.7 ms +[1421769462.372127] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421769462.599659] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421769462.827341] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421769463.055424] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421769463.260981] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769463.469157] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.67 ms +[1421769463.674519] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769463.884899] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.58 ms +[1421769464.108433] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421769464.320286] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.00 ms +[1421769464.567470] 1982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.6 ms +[1421769464.773082] 338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769464.979692] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421769465.198910] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421769465.404782] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769465.610129] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769465.815648] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769466.020168] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769466.225679] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769466.430813] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769466.635822] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769466.841273] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769467.046758] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769467.251855] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769467.457418] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769467.663846] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769467.868777] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769468.074711] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769468.279866] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769468.485316] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769468.692148] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769468.898972] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769469.104285] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769469.309359] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769469.515021] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421769469.720469] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769469.925563] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769470.130987] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769470.336618] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769470.542322] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769470.748622] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769470.954183] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769471.159609] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769471.364841] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769471.571271] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769471.776595] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769471.982449] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769472.187546] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769472.393808] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769472.600276] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769472.805943] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769473.010901] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769473.215891] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769473.421116] 329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769473.626887] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769473.832283] 145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769474.037170] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769474.242134] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769474.447475] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769474.654067] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769474.860343] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769475.065077] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769475.270997] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769475.477601] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769475.684144] 1932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769475.889791] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769476.095208] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769476.300465] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769476.505497] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769476.710684] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769476.916971] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421769477.121622] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769477.326620] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769477.532158] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769477.738892] 1870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769477.944371] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769478.150728] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769478.356124] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769478.561362] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769478.766684] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769478.972781] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769479.178123] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769479.383633] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769479.588992] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769479.794671] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769480.000129] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769480.216900] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421769480.431615] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.94 ms +[1421769480.638548] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421769480.844368] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769481.049475] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769481.254806] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769481.461554] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769481.667076] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769481.872832] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769482.078577] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769482.283818] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769482.489157] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769482.695052] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769482.900986] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769483.105764] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769483.310981] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769483.516201] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769483.721705] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769483.927750] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421769484.134163] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421769484.339506] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769484.545256] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421769484.750398] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769484.956128] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769485.161675] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769485.367555] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769485.572853] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769485.778157] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769485.983174] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769486.188744] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769486.394977] 1570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769486.601006] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769486.807115] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769487.011849] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769487.217162] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769487.422460] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769487.628918] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769487.833880] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769488.038733] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769488.243389] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769488.448583] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769498.858812] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769499.064055] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769499.269405] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769499.474569] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769499.679322] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769499.884525] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769500.089147] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769500.294609] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769500.500599] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769500.706198] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769500.912436] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769501.117683] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769501.322858] 1195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769501.529406] 1575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769501.735892] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769501.941510] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769502.147790] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769502.352802] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769502.558837] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769502.764454] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769502.969771] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769503.174866] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769503.380733] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769503.585790] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769503.790981] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769503.996265] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769504.201802] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769504.407048] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769504.612556] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769504.817944] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769505.022614] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769505.227970] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769505.434476] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769505.639532] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769505.844425] 814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769506.049084] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769506.253873] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769506.459161] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769506.665677] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769506.872207] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769507.078158] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421769507.282724] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769507.487974] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769507.693209] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769507.898672] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769508.103865] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769508.310349] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769508.516912] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769508.721992] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769508.927365] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769509.132373] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769509.337400] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769509.544293] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421769509.749934] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769509.956040] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769510.161516] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769510.367241] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769510.574039] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769510.779669] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769510.984961] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769511.190245] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769511.395713] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769511.602048] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769511.807031] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769512.012289] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769512.218441] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421769512.423697] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769512.630295] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421769512.836345] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421769513.041486] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769513.246527] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769513.452551] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769513.658101] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769513.863556] 296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769514.068071] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769514.273606] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769514.479799] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769514.685352] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769514.890801] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769515.099061] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769515.311240] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.39 ms +[1421769515.516744] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769515.726316] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.93 ms +[1421769515.938771] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.04 ms +[1421769516.147227] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.01 ms +[1421769516.352620] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769516.558070] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769516.763614] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769516.969580] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769517.176206] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769517.382740] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769517.588204] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769517.793449] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769517.998715] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769518.203924] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769518.410227] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769518.616034] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769518.821187] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769519.026478] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769519.232749] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421769519.438461] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769519.644144] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769519.850620] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769520.055711] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769520.260983] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769520.466987] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769520.672410] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769520.877580] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769521.088107] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.84 ms +[1421769521.293532] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769521.498841] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769521.704109] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769521.909786] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769522.116144] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769522.321788] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769522.527738] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421769522.733263] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769522.939322] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769523.144968] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769523.351118] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769523.557469] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769523.762217] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769523.967050] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769524.173115] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769524.379008] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769524.583900] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769524.789665] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769524.994972] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421769525.201200] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421769525.406858] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421769525.613107] 1612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769525.818636] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769526.023750] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769526.229153] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769526.434712] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769526.640305] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769526.845468] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769527.050397] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769527.255894] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769527.461614] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769527.666954] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769527.872587] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769528.077887] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769528.284235] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421769528.490066] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769528.696721] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769528.903601] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421769529.109457] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769529.314642] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769529.520670] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769529.726059] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769529.931893] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769530.137397] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769530.342880] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769530.549713] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769530.756289] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769530.961409] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769531.168073] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421769531.373284] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769531.578428] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769531.784217] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769531.989624] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769532.194474] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769532.399498] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769532.604967] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421769532.810613] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769533.014980] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769533.219738] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421769533.426214] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769533.631509] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769533.837207] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769534.043009] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769534.249023] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769534.453869] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769534.658593] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769534.863982] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769535.069440] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769535.274509] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769535.480224] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769535.685862] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769535.892345] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769536.098197] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769536.304146] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421769536.509144] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769536.714267] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769536.919269] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769537.123762] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769537.330245] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421769537.535676] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769537.741376] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769537.946356] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769538.151480] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769538.356616] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769538.562280] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769538.767494] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769538.973396] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769539.178340] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769539.384377] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769539.589575] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769539.795774] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769540.000967] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769540.206654] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769540.412014] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769540.618212] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769540.824234] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769541.029241] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769541.234242] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769541.440025] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769541.645812] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769541.852112] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769542.056784] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769542.262124] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769542.467648] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769542.674616] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421769542.880375] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769543.085189] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769543.290569] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769543.496505] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769543.702596] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769543.908190] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769544.113707] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769544.319326] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769544.525177] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769544.730628] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769544.935736] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769545.141094] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769545.346894] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769545.551765] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769545.756931] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769545.962277] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769546.167451] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769546.372691] 296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769546.578196] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769546.784895] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769546.990717] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769547.196083] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769547.402365] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421769547.608313] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769547.814262] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769548.019320] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769548.224462] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769548.429776] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769548.636065] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769548.842821] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769549.048385] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769549.253645] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769549.459399] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769549.665016] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769549.870316] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769550.075746] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421769550.281080] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769550.487411] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769550.693034] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769550.898104] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421769551.102622] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769551.307545] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769551.513227] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769551.718834] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769551.924740] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769552.130600] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421769552.335974] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769552.541110] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769552.746338] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769552.951933] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421769553.158281] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769553.378622] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421769553.592903] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.89 ms +[1421769553.805653] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.41 ms +[1421769554.024571] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421769554.244924] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421769554.467339] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421769554.747980] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.2 ms +[1421769554.953561] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769555.159016] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769555.363904] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769555.571951] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.48 ms +[1421769555.787396] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.17 ms +[1421769556.000743] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.99 ms +[1421769556.248103] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.1 ms +[1421769556.465780] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421769556.690985] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421769556.914741] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421769557.139082] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421769557.358692] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.7 ms +[1421769557.589562] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.3 ms +[1421769557.795026] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769558.000870] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769558.205991] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769558.412236] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769558.617967] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769558.823534] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769559.032661] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.83 ms +[1421769559.243691] 13 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769559.458521] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421769559.676720] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421769559.896834] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421769560.121135] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421769560.341436] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421769560.625072] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.3 ms +[1421769560.830314] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769561.034918] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769561.246998] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.04 ms +[1421769561.472694] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421769561.687687] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421769561.901100] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.64 ms +[1421769562.152135] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=47.1 ms +[1421769562.371909] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421769562.594440] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421769562.816429] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421769563.041570] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421769563.263657] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421769563.485995] 1133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421769563.691824] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769563.897772] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769564.103405] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769564.309184] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769564.514860] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769564.720181] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421769564.925461] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769565.130816] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769565.335988] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769565.541291] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769565.747390] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.94 ms +[1421769565.954866] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.64 ms +[1421769566.167215] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.30 ms +[1421769566.380937] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.28 ms +[1421769566.597136] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.9 ms +[1421769566.817687] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421769567.037216] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421769567.262854] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421769567.468233] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769567.674618] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769567.880092] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769568.085437] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421769568.308481] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421769568.521262] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.63 ms +[1421769568.733889] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.29 ms +[1421769568.953084] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421769569.173648] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421769569.397837] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421769569.621097] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421769569.844458] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421769570.070617] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421769570.303587] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.1 ms +[1421769570.527220] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421769570.752916] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421769570.978981] 825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421769571.205798] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421769571.431522] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421769571.714820] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.3 ms +[1421769571.942713] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421769572.148669] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769572.354012] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769572.559771] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421769572.766856] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.05 ms +[1421769572.994195] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421769573.208714] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421769573.455878] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.9 ms +[1421769573.676352] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421769573.958315] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.3 ms +[1421769574.182498] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421769574.416771] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.3 ms +[1421769574.641207] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421769574.865801] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421769575.149189] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.3 ms +[1421769575.354660] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769575.575205] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421769575.805300] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421769576.032416] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421769576.314397] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.1 ms +[1421769576.540680] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421769576.767653] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421769576.972962] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769577.178299] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769577.383849] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769577.591640] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.74 ms +[1421769577.819637] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421769578.061023] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=37.6 ms +[1421769578.312546] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=47.4 ms +[1421769578.534668] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421769578.760754] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421769579.041441] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.7 ms +[1421769579.264522] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421769579.489432] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421769579.773376] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.6 ms +[1421769579.978904] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769580.183927] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769580.404788] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421769580.633725] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421769580.859999] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421769581.086015] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.1 ms +[1421769581.364461] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.5 ms +[1421769581.648645] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.9 ms +[1421769581.928144] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.4 ms +[1421769582.133268] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769582.339969] 2006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769582.545632] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769582.762728] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421769582.992674] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.1 ms +[1421769583.208244] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421769583.424164] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.9 ms +[1421769583.647534] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421769583.922926] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.5 ms +[1421769584.208930] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.8 ms +[1421769584.436390] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421769584.719350] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.8 ms +[1421769585.005344] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.0 ms +[1421769585.213979] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769585.440447] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421769585.666918] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421769585.943454] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.3 ms +[1421769586.231955] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.4 ms +[1421769586.458397] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421769586.684293] 1077 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421769586.890345] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769587.096146] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769587.302367] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769587.510191] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.94 ms +[1421769587.720367] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.17 ms +[1421769587.925247] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769588.130186] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769588.335809] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769588.541650] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769588.747229] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769588.952523] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769589.157379] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769589.363773] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769589.570281] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769589.775569] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769589.980764] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769590.185901] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769590.391270] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769590.597922] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769590.803764] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769591.008788] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769591.213794] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769591.420378] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421769591.625939] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769591.831868] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769592.036940] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769592.241733] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769592.447133] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769592.652688] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769592.857767] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769593.063595] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421769593.268718] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769593.475021] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769593.680872] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421769593.886288] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769594.090941] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769594.295912] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769594.501220] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769594.706346] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769594.912771] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769595.118153] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769595.324258] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769595.529346] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769595.734150] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769595.940149] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421769596.146573] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769596.351813] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769596.557233] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769596.762936] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769596.968452] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769597.174416] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769597.379616] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769597.585074] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769597.790044] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769597.994992] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769598.200798] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769598.406300] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769598.611262] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769598.816616] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769599.021557] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769599.226908] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769599.432210] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769599.638768] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769599.844984] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769600.049745] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769600.255538] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769600.465276] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.59 ms +[1421769600.671750] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769600.877179] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769601.082018] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769601.288187] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769601.494698] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769601.700572] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769601.906189] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769602.110956] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769602.316412] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769602.523368] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421769602.729105] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769602.934158] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769603.139204] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769603.344542] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769603.550599] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769603.755543] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769603.961260] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769604.167463] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769604.372664] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769604.578088] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769604.783013] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769604.992722] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421769605.198416] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421769605.404152] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421769605.609835] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421769605.814776] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421769606.019473] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769606.224936] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769606.430229] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769606.635478] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769606.842067] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769607.047733] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421769607.254074] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769607.459574] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769607.665079] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769607.870048] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769608.074873] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769608.280067] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769608.486372] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769608.693189] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769608.899702] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769609.105809] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421769609.310842] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769609.516099] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769609.721445] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769609.926732] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769610.132198] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769610.337500] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769610.543617] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769610.749115] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769610.954233] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769611.160598] 1955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769611.365990] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769611.571142] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769611.776490] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769611.982003] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769612.186961] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769612.392243] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769612.597992] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769612.803843] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769613.008635] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769613.213943] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769613.419334] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769613.624774] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769613.830458] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769614.034865] 116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421769614.240256] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769614.446564] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421769614.653425] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769614.858582] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769615.063319] 141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769615.269293] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769615.475611] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769615.682032] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769615.887817] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421769616.092948] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769616.297993] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769616.503223] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769616.708645] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769616.913618] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769617.118763] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769617.323924] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769617.528921] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769617.733923] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769617.938853] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769618.144633] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769618.350656] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769618.556017] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769618.761184] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769618.966233] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769619.172371] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769619.377306] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769619.582415] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769619.789024] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.76 ms +[1421769619.994216] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769620.200429] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769620.405831] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769620.611077] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769620.816147] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769621.021655] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769621.226654] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769621.453165] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421769621.659342] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769621.864850] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769622.069486] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769622.274574] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769622.480278] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769622.685452] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769622.891994] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769623.097129] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769623.302093] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769623.507696] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769623.713341] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769623.919561] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769624.124645] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769624.329494] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769624.535494] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769624.741553] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769624.946730] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769625.152012] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769625.359435] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.76 ms +[1421769625.564463] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769625.770720] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769625.975976] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769626.188721] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.46 ms +[1421769626.394360] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421769626.600062] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769626.806232] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769627.010812] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769627.216576] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421769627.421845] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769627.626628] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769627.831391] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769628.036216] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421769628.242672] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421769628.449144] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769628.655611] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769628.861368] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769629.067303] 1482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421769629.273732] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769629.480053] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769629.687701] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.04 ms +[1421769629.892961] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769630.108031] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.4 ms +[1421769630.314076] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769630.519788] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769630.725635] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769630.930582] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769631.136877] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421769631.345258] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.49 ms +[1421769631.557889] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.29 ms +[1421769631.771641] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.26 ms +[1421769631.991209] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.2 ms +[1421769632.211324] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421769632.432569] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421769632.665277] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.3 ms +[1421769632.898604] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.0 ms +[1421769633.124397] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421769633.348398] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421769633.577557] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.0 ms +[1421769633.802416] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421769634.025218] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421769634.251459] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421769634.536392] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.6 ms +[1421769634.762073] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421769634.995220] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.8 ms +[1421769635.200538] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769635.412195] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.59 ms +[1421769635.629386] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421769635.840407] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.79 ms +[1421769636.052795] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.65 ms +[1421769636.265937] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.16 ms +[1421769636.485254] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421769636.706069] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421769636.997145] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=86.6 ms +[1421769637.219408] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421769637.487701] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=63.8 ms +[1421769637.694076] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769637.900215] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769638.105618] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769638.312365] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.69 ms +[1421769638.532211] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421769638.745762] 1417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.21 ms +[1421769638.965434] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.2 ms +[1421769639.185029] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421769639.403710] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.5 ms +[1421769639.681006] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.2 ms +[1421769639.906427] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421769640.119828] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.73 ms +[1421769640.326150] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769640.533134] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421769640.739125] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421769640.949160] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.66 ms +[1421769641.162558] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.27 ms +[1421769641.375638] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.97 ms +[1421769641.594358] 1330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421769641.816780] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421769642.040105] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421769642.260842] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421769642.483559] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421769642.710116] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421769642.935002] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421769643.145196] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.02 ms +[1421769643.430039] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.1 ms +[1421769643.653128] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421769643.880655] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421769644.107687] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421769644.389712] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.1 ms +[1421769644.618256] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421769644.843211] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421769645.048346] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769645.253696] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769645.465393] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.14 ms +[1421769645.686887] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421769645.901447] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.2 ms +[1421769646.145860] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=40.4 ms +[1421769646.403413] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=53.6 ms +[1421769646.622833] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421769646.900624] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.7 ms +[1421769647.130259] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421769647.335531] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769647.540534] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769647.753712] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.39 ms +[1421769647.958888] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769648.164016] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.03 ms +[1421769648.369002] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769648.575601] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769648.781872] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms +[1421769648.992387] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.85 ms +[1421769649.206594] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.98 ms +[1421769649.424798] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421769649.631281] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769649.837996] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769650.044004] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769650.249311] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769650.454746] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769650.660545] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769650.867274] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769651.072489] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769651.277665] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769651.483738] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769651.689668] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769651.896386] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421769652.101496] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769652.306832] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769652.513823] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421769652.719711] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769652.926191] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769653.131336] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769653.337480] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769653.543070] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769653.749661] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769653.955224] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769654.161882] 1765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769654.367311] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769654.573261] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421769654.779032] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769654.984937] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769655.190704] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769655.396617] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769655.603063] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769655.808281] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769656.013160] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769656.219410] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769656.424881] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769656.631519] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769656.838184] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769657.043193] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769657.249101] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421769657.454627] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769657.660332] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769657.865847] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769658.071253] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769658.277605] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769658.482910] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769658.689314] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769658.895268] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769659.100318] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769659.305340] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769659.510577] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769659.716206] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769659.922618] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769660.127764] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769660.332942] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769660.538261] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769660.743718] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769660.985755] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=37.8 ms +[1421769661.203077] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421769661.408828] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769661.640090] 1932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.0 ms +[1421769661.845191] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421769662.050270] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769662.255531] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769662.460947] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769662.666527] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769662.872449] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769663.078453] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769663.283234] 181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769663.489805] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.74 ms +[1421769663.695067] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769663.900308] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769664.105220] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769664.310270] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769664.515522] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769664.721119] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769664.927886] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769665.132904] 512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769665.339245] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421769665.544586] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769665.749759] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769665.955273] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769666.160710] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769666.366536] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769666.572628] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769666.778373] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769666.983684] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769667.189864] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769667.395257] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769667.600636] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769667.805617] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769668.010905] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769668.216154] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769668.421864] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769668.628137] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769668.834548] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769669.039774] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769669.245618] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421769669.450663] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769669.655902] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769669.860892] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769670.065629] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769670.271499] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769670.476582] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769670.682971] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769670.888383] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769671.093303] 1297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769671.298830] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769671.504578] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769671.710297] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769671.917103] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421769672.122619] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769672.328393] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.74 ms +[1421769672.533699] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769672.738758] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769672.944701] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769673.149888] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769673.355063] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769673.560302] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769673.765798] 1444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769673.971541] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769674.177936] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769674.383164] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769674.589842] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769674.796201] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769675.001078] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769675.207328] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421769675.412879] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769675.619008] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769675.824270] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769676.028942] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.03 ms +[1421769676.234595] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769676.439966] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769676.645257] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769676.851133] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421769677.055900] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769677.261572] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421769677.466970] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769677.672854] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769677.879772] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769678.085821] 1503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769678.290879] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769678.496011] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769678.702215] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769678.908066] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769679.113815] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769679.319024] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769679.523806] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769679.729287] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421769679.935296] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421769680.141204] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421769680.361885] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421769680.568584] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769680.773579] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769680.979237] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769681.184541] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769681.389947] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769681.594784] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769681.799702] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769682.005893] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769682.211215] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769682.416656] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769682.622636] 1021 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769682.827847] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769683.032198] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769683.238390] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769683.443622] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769683.648585] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769683.853776] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769684.058706] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769684.265136] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769684.471599] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421769684.677679] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769684.883541] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769685.088505] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769685.294993] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769685.500626] 1430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769685.706847] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769685.912712] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769686.118710] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769686.324014] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769686.529122] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769686.735197] 1722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769686.941389] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769687.146495] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769687.351758] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769687.557532] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769687.762595] 471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769687.967843] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769688.174483] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769688.380657] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769688.592805] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.06 ms +[1421769688.798481] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769689.003513] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769689.208773] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769689.414550] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769689.621421] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421769689.827564] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769690.033741] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769690.239734] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769690.444566] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421769690.649765] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769690.855949] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769691.061041] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769691.266277] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769691.472386] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421769691.677867] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769691.884027] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769692.089283] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769692.294031] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769692.499878] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769692.705454] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769692.910652] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769693.115879] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769693.322361] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769693.527866] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769693.734451] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769693.939354] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769694.144701] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769694.350511] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769694.555733] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769694.760921] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769694.966610] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769695.171938] 847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769695.377927] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769695.583233] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769695.789220] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769695.995840] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769696.202004] 1586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769696.407309] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769696.613864] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769696.819906] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769697.025914] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769697.231532] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769697.436673] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769697.642324] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421769697.848164] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769698.053226] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769698.259294] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769698.464829] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769698.669865] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769698.875676] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421769699.080463] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769699.285734] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769699.492022] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769699.697336] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769699.903997] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769700.109106] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769700.314150] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769700.519336] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769700.724471] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769700.930952] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769701.136322] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769701.341369] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769701.547798] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769701.753766] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769701.959363] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769702.164686] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769702.376476] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.49 ms +[1421769702.581588] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769702.787705] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769702.992947] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769703.198910] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769703.404097] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769703.609041] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769703.814770] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769704.019219] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769704.224188] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769704.430623] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769704.636419] 1238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769704.842403] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769705.047899] 1026 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769705.253448] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769705.458400] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769705.663607] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769705.868588] 478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769706.074276] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769706.279581] 1063 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769706.485674] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769706.691546] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769706.896734] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769707.103552] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421769707.309750] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.99 ms +[1421769707.515360] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769707.722295] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421769707.928042] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769708.133918] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769708.339047] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769708.544541] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769708.751061] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769708.956830] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769709.162649] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421769709.367777] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769709.574671] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421769709.780598] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769709.986548] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769710.192037] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769710.397669] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769710.603275] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769710.809573] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769711.014257] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769711.219303] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769711.424779] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769711.630089] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769711.835495] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769712.042040] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421769712.248342] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769712.453617] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769712.659118] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769712.865136] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769713.070175] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769713.275368] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769713.480949] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769713.687565] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769713.893380] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769714.099075] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769714.304324] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769714.509900] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769714.715321] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769714.920673] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769715.126155] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769715.331598] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769715.538208] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769715.744025] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769715.950839] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.22 ms +[1421769716.160797] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.20 ms +[1421769716.397625] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.8 ms +[1421769716.647254] 1856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.4 ms +[1421769716.866213] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421769717.091522] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421769717.297773] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421769717.503619] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769717.709073] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769717.916221] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.39 ms +[1421769718.126216] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.94 ms +[1421769718.338584] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.23 ms +[1421769718.550319] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.87 ms +[1421769718.809019] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=54.2 ms +[1421769719.082335] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=69.5 ms +[1421769719.306543] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421769719.587179] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.4 ms +[1421769719.810167] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421769720.032158] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421769720.242721] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.35 ms +[1421769720.473044] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769720.700365] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421769720.926738] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421769721.148878] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421769721.375212] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421769721.653962] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.5 ms +[1421769721.906313] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.6 ms +[1421769722.111556] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769722.318031] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769722.524515] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421769722.741098] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421769722.952942] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.52 ms +[1421769723.189490] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.0 ms +[1421769723.407070] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421769723.629548] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421769723.907218] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.4 ms +[1421769724.126128] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421769724.349997] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421769724.572908] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421769724.794045] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421769724.999254] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769725.204572] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769725.409978] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769725.616473] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769725.822421] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769726.028658] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421769726.233616] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769736.649365] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.26 ms +[1421769736.862696] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.31 ms +[1421769737.078464] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421769737.295405] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421769737.518420] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421769737.744309] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421769737.966534] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421769738.188698] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421769738.419148] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.5 ms +[1421769738.624539] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769738.831068] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769739.036727] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.87 ms +[1421769739.243794] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.31 ms +[1421769739.454802] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.83 ms +[1421769739.669611] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421769739.889159] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421769740.109409] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421769740.386735] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.6 ms +[1421769740.609346] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421769740.834798] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421769741.052109] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769741.282824] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.5 ms +[1421769741.512685] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421769741.740676] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421769741.966759] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421769742.190422] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421769742.420808] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.1 ms +[1421769742.650486] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421769742.931966] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.2 ms +[1421769743.157261] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421769743.362346] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769743.568768] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769743.775111] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769743.984293] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.06 ms +[1421769744.196362] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.90 ms +[1421769744.413490] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421769744.632379] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421769744.851355] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.4 ms +[1421769745.072414] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421769745.296672] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421769745.523165] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421769745.749204] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421769746.033624] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.3 ms +[1421769746.255067] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421769746.478791] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421769746.705469] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421769746.931037] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421769747.160559] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.3 ms +[1421769747.380926] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421769747.603047] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421769747.828569] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421769748.034602] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769748.240114] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769748.445207] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769748.650759] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769748.860951] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.02 ms +[1421769749.072227] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.25 ms +[1421769749.283648] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.44 ms +[1421769749.532411] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.0 ms +[1421769749.799301] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.5 ms +[1421769750.021961] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421769750.245033] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421769750.472218] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421769750.699561] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421769750.922116] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421769751.139378] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421769751.364114] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421769751.591310] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421769751.823323] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.7 ms +[1421769752.052801] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.8 ms +[1421769752.337664] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.0 ms +[1421769752.621697] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.9 ms +[1421769752.827612] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769753.033825] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769753.238753] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421769753.450515] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.63 ms +[1421769753.676297] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421769753.881997] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769754.098081] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.2 ms +[1421769754.317028] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421769754.539008] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421769754.761527] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421769754.981033] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421769755.262115] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.8 ms +[1421769755.539133] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.9 ms +[1421769755.744959] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769755.951466] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769756.156376] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769756.361372] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769756.567616] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421769756.784363] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms +[1421769756.995683] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.33 ms +[1421769757.237509] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=37.7 ms +[1421769757.453146] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.7 ms +[1421769757.669690] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421769757.874899] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769758.079667] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769758.286169] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421769758.495038] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.27 ms +[1421769758.706339] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.12 ms +[1421769758.918887] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.39 ms +[1421769759.138872] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421769759.401416] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=58.1 ms +[1421769759.627277] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421769759.852290] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421769760.076762] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421769760.306572] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421769760.590525] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.9 ms +[1421769760.820985] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421769761.105975] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.2 ms +[1421769761.335642] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.4 ms +[1421769761.558047] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421769761.849556] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=87.1 ms +[1421769762.126902] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.6 ms +[1421769762.346890] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421769762.552474] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769762.758246] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769762.964021] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769763.172698] 1541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.38 ms +[1421769763.381754] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.13 ms +[1421769763.595409] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.61 ms +[1421769763.810247] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421769764.028380] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421769764.246511] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms +[1421769764.468180] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421769764.746673] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.3 ms +[1421769764.972519] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421769765.254820] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421769765.516331] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=57.5 ms +[1421769765.721628] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769765.926997] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769766.132404] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769766.338137] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421769766.547772] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.49 ms +[1421769766.761180] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.82 ms +[1421769766.978596] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421769767.197947] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421769767.470271] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=68.3 ms +[1421769767.677328] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421769767.883007] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769768.088853] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769768.309474] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421769768.521103] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.45 ms +[1421769768.735385] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.92 ms +[1421769768.952844] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.6 ms +[1421769769.170856] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.1 ms +[1421769769.396940] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421769769.618416] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421769769.840002] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421769770.065426] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421769770.292244] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421769770.577416] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.2 ms +[1421769770.782988] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769771.000067] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421769771.227378] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421769771.453246] 130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms +[1421769771.681635] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms +[1421769771.907040] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421769772.117052] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.28 ms +[1421769772.322676] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769772.528149] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769772.735706] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.70 ms +[1421769772.945906] 320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.55 ms +[1421769773.160355] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421769773.407485] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.2 ms +[1421769773.628727] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421769773.852404] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421769774.067725] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421769774.289483] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421769774.520976] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.3 ms +[1421769774.753083] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.8 ms +[1421769775.035721] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.4 ms +[1421769775.241326] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769775.530515] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.1 ms +[1421769775.753718] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421769775.975333] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421769776.181965] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769776.387867] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769776.592919] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769776.797996] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769777.003229] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769777.209329] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769777.419020] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.98 ms +[1421769777.652604] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.5 ms +[1421769777.870667] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421769778.075305] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769778.280599] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769778.485893] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769778.692393] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.69 ms +[1421769778.903577] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.23 ms +[1421769779.109557] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421769779.314575] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769779.519414] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769779.724730] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769779.930211] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769780.135517] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769780.341044] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769780.546389] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769780.751703] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769780.957457] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769781.163051] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769781.368282] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769781.574639] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421769781.779982] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769781.985452] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769782.190898] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769782.397501] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769782.604159] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421769782.811055] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421769783.017016] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421769783.222903] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769783.428133] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769783.633832] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769783.839302] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769784.043947] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769784.249118] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769784.455076] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421769784.662119] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769784.868746] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421769785.074578] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421769785.280482] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769785.485393] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769785.690560] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769785.896883] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769786.101539] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769786.306404] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769786.512978] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421769786.718801] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421769786.925201] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421769787.130896] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421769787.336005] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769787.541169] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769787.746146] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769787.951094] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769788.155925] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769788.360851] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769788.566526] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769788.771838] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769788.977231] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769789.183685] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769789.389157] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769789.594537] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769789.804631] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.70 ms +[1421769790.010398] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769790.217129] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421769790.422777] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769790.628173] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769790.833559] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769791.039204] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769791.244571] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769791.450006] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769791.655630] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769791.862589] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769792.068161] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421769792.273692] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769792.478983] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769792.684754] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769792.889682] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769793.095566] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769793.301874] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769793.507202] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769793.712995] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769793.918641] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769794.124100] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769794.329357] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769794.534493] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769794.741021] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421769794.947466] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769795.152505] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769795.358953] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769795.564533] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769795.770315] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769795.975233] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769796.180269] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769796.385564] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769796.591096] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769796.797122] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421769797.002648] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769797.208544] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769797.413878] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769797.619792] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769797.824654] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769798.029463] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769798.234155] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769798.438928] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.02 ms +[1421769798.645104] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769798.850470] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769799.055019] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769799.259692] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769799.464779] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769799.669401] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769799.875344] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769800.080591] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769800.286657] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769800.492152] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769800.697883] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769800.903051] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769801.109140] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769801.315691] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769801.522055] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769801.728353] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769801.933988] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769802.139222] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769802.344673] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769802.551265] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769802.756805] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769802.962037] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769803.167365] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769803.373925] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769803.579554] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769803.785693] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769803.991094] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769804.196289] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769804.401843] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769804.607572] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769804.812938] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769805.017581] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769805.222282] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769805.442381] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421769805.648624] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421769805.854659] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421769806.059642] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769806.265032] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769806.470413] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769806.675600] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769806.881179] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769807.086083] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769807.291656] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769807.497704] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769807.704005] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769807.909403] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769808.115117] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769808.321656] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421769808.528056] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769808.733337] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769808.938959] 624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769809.144064] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769809.349022] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769809.554021] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769809.759678] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769809.965218] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769810.170687] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769810.377105] 1888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769810.582491] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769810.787887] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769810.994299] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769811.200174] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421769811.405359] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769811.610506] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769811.815982] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769812.021914] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769812.226946] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769812.432763] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769812.638741] 1297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421769812.844564] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769813.049816] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769813.255043] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769813.460643] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769813.666171] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769813.871681] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769814.076443] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769814.282272] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769814.487416] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769814.693943] 1955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769814.899595] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769815.104870] 266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769815.310433] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769815.515818] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769815.720956] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769815.926362] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769816.131732] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769816.337170] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769816.542323] 110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769816.747679] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769816.953449] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769817.160207] 1730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769817.367749] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.43 ms +[1421769817.574676] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769817.779862] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769817.986062] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769818.191919] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769818.397644] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769818.603369] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769818.809097] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769819.014120] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769819.219052] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769819.423899] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769819.628898] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769819.833831] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769820.038614] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769820.244033] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769820.449361] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769820.654818] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769820.861566] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769821.066822] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769821.271841] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769821.477190] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769821.682452] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769821.888203] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769822.093541] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769822.299542] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769822.505672] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769822.711239] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769822.917586] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769823.122600] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769823.328149] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769823.533123] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769823.739637] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769823.946632] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769824.151400] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769824.357728] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769824.563582] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769824.769794] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769824.975656] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769825.182134] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769825.387561] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769825.593397] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769825.799291] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769826.004219] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769826.210419] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769826.415910] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769826.664315] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.2 ms +[1421769826.870669] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769827.075495] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769827.280762] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769827.486043] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769827.691071] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769827.897184] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769828.102465] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769828.308326] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421769828.513971] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421769828.719858] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.01 ms +[1421769828.925896] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769829.130660] 250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769829.335828] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769829.541105] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769829.745986] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769829.952161] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769830.158094] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421769830.365390] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.43 ms +[1421769830.575204] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.22 ms +[1421769830.788647] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.04 ms +[1421769831.001999] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.26 ms +[1421769831.222444] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421769831.447163] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421769831.726615] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=75.4 ms +[1421769831.950010] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.2 ms +[1421769832.226419] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.6 ms +[1421769832.451184] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421769832.680905] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.6 ms +[1421769832.898615] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421769833.120707] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421769833.346084] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.4 ms +[1421769833.551341] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769833.756872] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769833.962592] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769834.168210] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769834.375581] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.46 ms +[1421769834.582995] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.41 ms +[1421769834.788575] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769834.994611] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769835.200586] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769835.416695] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421769835.643809] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.1 ms +[1421769835.859581] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421769836.075663] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421769836.296985] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.6 ms +[1421769836.521415] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421769836.806897] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.3 ms +[1421769837.032114] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421769837.260655] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421769837.490845] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.4 ms +[1421769837.744275] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=49.2 ms +[1421769837.949373] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769838.155365] 1644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769838.360960] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769838.566802] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769838.772549] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769838.978056] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769839.183077] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769839.388495] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769839.593460] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769839.798921] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769840.004722] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769840.210239] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769840.415358] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769840.620728] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769840.826201] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769841.031835] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms +[1421769841.236910] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421769841.443407] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769841.649120] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769841.854516] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769842.059007] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769842.264078] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769842.469655] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769842.675951] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.92 ms +[1421769842.882493] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421769843.088332] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769843.293469] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769843.498464] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769843.704003] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769843.909342] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769844.114596] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769844.319561] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769844.525738] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769844.731648] 1249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769844.937893] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421769845.143322] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769845.348852] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769845.555587] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769845.764681] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.14 ms +[1421769845.993214] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421769846.209793] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421769846.453092] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.4 ms +[1421769846.674080] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.3 ms +[1421769846.880558] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769847.085392] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769847.292106] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.96 ms +[1421769847.498703] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.75 ms +[1421769847.708719] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.89 ms +[1421769847.923172] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421769848.134210] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.05 ms +[1421769848.356929] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421769848.584357] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421769848.790916] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769848.996577] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769849.203008] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769849.408325] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769849.613383] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769849.818495] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769850.023613] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769850.229167] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769850.434631] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769850.640386] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769850.845635] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769851.052080] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769851.257376] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769851.462860] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769851.669711] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421769851.875577] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769852.080801] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769852.286840] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769852.492361] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769852.697866] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769852.903300] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.87 ms +[1421769853.108327] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769853.314554] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769853.519955] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769853.728269] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769853.933466] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769854.139508] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.03 ms +[1421769854.345602] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421769854.550751] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769854.756697] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769854.961825] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769855.168164] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769855.373635] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769855.579264] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769855.785980] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769855.991864] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769856.197529] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769856.402627] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769856.608470] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769856.813847] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769857.019932] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421769857.226351] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421769857.431444] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769857.636577] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769857.841375] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769858.046916] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769858.252490] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769858.457768] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769858.662915] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769858.867829] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769859.072332] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769859.278157] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421769859.483756] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769859.689296] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769859.894745] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769860.100867] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769860.305762] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769860.510587] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769860.715977] 1170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769860.921570] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769861.126875] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769861.332212] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769861.537862] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769861.743863] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769861.950693] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769862.156260] 204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769862.360963] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769862.566113] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769862.771570] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769862.976811] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769863.181725] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769863.387003] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769863.591782] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769863.797124] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769864.002466] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769864.208145] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769864.414702] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769864.620348] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769864.825531] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769865.030333] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769865.236239] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769865.442987] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769865.650014] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769865.855408] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769866.061530] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421769866.267687] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769866.473037] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769866.678629] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769866.884465] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769867.089619] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769867.295061] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769867.500921] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769867.707060] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421769867.912689] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769868.117956] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769868.324170] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769868.529501] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769868.735474] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421769868.941699] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769869.147823] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769869.354227] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769869.560208] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769869.766061] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769869.972483] 1738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769870.177387] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769870.382211] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769870.587120] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769870.792681] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769870.998184] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769871.203861] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769871.410339] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769871.616273] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769871.822287] 837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769872.028241] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421769872.233195] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769872.438236] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769872.643937] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769872.849097] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769873.054295] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769873.259703] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769873.465099] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769873.671616] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769873.877219] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769874.082596] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769874.288016] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769874.493731] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769874.699048] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769874.904863] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769875.109773] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421769875.338524] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421769875.565466] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.9 ms +[1421769875.793210] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.8 ms +[1421769876.018745] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421769876.239678] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421769876.467349] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421769876.692250] 723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421769876.912598] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421769877.135754] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421769877.363349] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421769877.590731] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421769877.818045] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421769878.024065] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769878.230379] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769878.435889] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421769878.650476] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421769878.856154] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769879.070831] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421769879.309991] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.0 ms +[1421769879.562675] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.3 ms +[1421769879.830791] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=63.9 ms +[1421769880.108156] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.4 ms +[1421769880.328959] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.7 ms +[1421769880.555237] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms +[1421769880.843435] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=84.1 ms +[1421769881.048366] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769881.254694] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769881.460426] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769881.667030] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769881.872324] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769882.076997] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769882.282047] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769882.487540] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769882.693280] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769882.898499] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769883.103611] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769883.309833] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421769883.520915] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.73 ms +[1421769883.735519] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421769883.953400] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.0 ms +[1421769884.171375] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.1 ms +[1421769884.393790] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769884.600304] 1947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769884.806763] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769885.011991] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421769885.218409] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421769885.424855] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769885.648543] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421769885.860836] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.91 ms +[1421769886.073861] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.35 ms +[1421769886.332387] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=54.6 ms +[1421769886.554890] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421769886.781182] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421769887.005537] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421769887.228707] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421769887.453943] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.0 ms +[1421769887.659235] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769887.864556] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769888.073114] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769888.278454] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769888.484513] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769888.689673] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769888.895407] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769889.101522] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769889.307065] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421769889.513831] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769889.720153] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769889.926428] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769890.132883] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769890.338301] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769890.543364] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769890.748662] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769890.954300] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769891.159737] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769891.365253] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769891.570715] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769891.776971] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769891.983079] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769892.189776] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.95 ms +[1421769892.412333] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421769892.624729] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.29 ms +[1421769892.839314] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms +[1421769893.055621] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421769893.274485] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421769893.481215] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769893.686802] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769893.891982] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769894.097466] 555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421769894.314715] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421769894.544135] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.0 ms +[1421769894.788652] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=40.4 ms +[1421769895.044118] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.3 ms +[1421769895.260355] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.0 ms +[1421769895.481858] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421769895.711945] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421769895.938345] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.6 ms +[1421769896.165359] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.8 ms +[1421769896.392866] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421769896.599350] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769896.805043] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769897.009778] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769897.214874] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769897.421020] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769897.626129] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769897.831889] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769898.036645] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769898.241697] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769898.446950] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769898.652740] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769898.861934] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.78 ms +[1421769899.067412] 130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769899.272972] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769899.478385] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769899.683953] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769899.890239] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769900.095243] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769900.299955] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769900.505137] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769900.710270] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769900.915470] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421769901.120599] 1108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769901.327111] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769901.533569] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769901.739658] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421769901.946230] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769902.151553] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769902.356224] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769902.562044] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769902.769706] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421769902.976384] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769903.181805] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769903.387401] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769903.594233] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769903.799431] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769904.004330] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769904.209781] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769904.415782] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421769904.621347] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769904.827726] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769905.032706] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769905.237697] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769905.443311] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769905.649486] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769905.855217] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421769906.059895] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769906.266147] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769906.471395] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769906.676385] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769906.881659] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769907.086245] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769907.291727] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769907.498638] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421769907.704434] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769907.910851] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769908.117652] 1984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421769908.323291] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769908.529177] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769908.735511] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769908.940446] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769909.145476] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769909.350855] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769909.556850] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421769909.762327] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769909.968019] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769910.173841] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769910.379688] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769910.585052] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769910.790505] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769910.996396] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769911.201823] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769911.407152] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769911.612159] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769911.817848] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769912.023044] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769912.229228] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421769912.434463] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769912.639898] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769912.845780] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769913.050559] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769913.255848] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769913.460883] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769913.667277] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421769913.873153] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769914.079541] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769914.285156] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421769914.490665] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769914.695732] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769914.901210] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769915.106074] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421769915.311681] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769915.517672] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769915.724381] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769915.931221] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769916.136637] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769916.342066] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769916.548946] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769916.755155] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769916.968937] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.39 ms +[1421769917.175619] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769917.380872] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769917.619711] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.7 ms +[1421769917.860803] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.7 ms +[1421769918.099455] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.6 ms +[1421769918.346998] 904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.4 ms +[1421769918.590383] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.1 ms +[1421769918.838463] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.8 ms +[1421769919.084816] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.7 ms +[1421769919.326272] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=37.4 ms +[1421769919.570310] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.9 ms +[1421769919.817132] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.8 ms +[1421769920.064790] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.1 ms +[1421769920.309857] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=41.0 ms +[1421769920.554441] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=40.7 ms +[1421769920.793931] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.6 ms +[1421769921.033392] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.0 ms +[1421769921.269405] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.3 ms +[1421769921.507418] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.0 ms +[1421769921.746748] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.3 ms +[1421769921.970949] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769922.190085] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421769922.434063] 1075 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=40.1 ms +[1421769922.685074] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.7 ms +[1421769922.928866] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.8 ms +[1421769923.176687] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.7 ms +[1421769923.420087] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.4 ms +[1421769923.660474] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.0 ms +[1421769923.904261] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.6 ms +[1421769924.133923] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.4 ms +[1421769924.368503] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.2 ms +[1421769924.591937] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421769924.818368] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421769925.042440] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.9 ms +[1421769925.257583] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421769925.466316] 1450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.50 ms +[1421769925.677785] 1177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.47 ms +[1421769925.889703] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.74 ms +[1421769926.126408] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769926.381811] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.3 ms +[1421769926.630781] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.9 ms +[1421769926.866286] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.4 ms +[1421769927.093797] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421769927.309206] 1087 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421769927.529086] 1175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.0 ms +[1421769927.739723] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.93 ms +[1421769927.953966] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.1 ms +[1421769928.168962] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms +[1421769928.384196] 1927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421769928.599704] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421769928.813800] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.1 ms +[1421769929.030675] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421769929.249337] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421769929.462488] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.37 ms +[1421769929.669428] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.76 ms +[1421769929.883947] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421769930.095636] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.57 ms +[1421769930.302085] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421769930.514837] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.55 ms +[1421769930.727117] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.02 ms +[1421769930.939408] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.04 ms +[1421769931.149659] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.32 ms +[1421769931.365039] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.4 ms +[1421769931.576779] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.65 ms +[1421769931.790069] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.32 ms +[1421769931.995025] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769932.200035] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769932.405004] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769932.610947] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769932.816219] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769933.021369] 1351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421769933.226326] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769933.431521] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769933.636799] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769933.842484] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769934.047528] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769934.252661] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769934.457829] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769934.663474] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769934.868958] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769935.074128] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769935.279132] 290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769935.483923] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769935.689009] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769935.894259] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769936.099624] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769936.304889] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769936.510209] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769936.716469] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421769936.921786] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769937.126765] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421769937.333143] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421769937.538501] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769937.743983] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769937.949560] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769938.154773] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769938.359782] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769938.565154] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769938.770415] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769938.975612] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769939.192424] 1026 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.1 ms +[1421769939.397790] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769939.603314] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769939.810280] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.83 ms +[1421769940.016074] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769940.222237] 1529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769940.428762] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769940.634749] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769940.840579] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769941.045870] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769941.250823] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769941.456245] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769941.661480] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769941.866866] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769942.072815] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769942.278352] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769942.483684] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769942.690258] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769942.895601] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769943.100512] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769943.305503] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769943.511867] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769943.717579] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769943.924061] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms +[1421769944.131155] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421769944.336587] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769944.541928] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769944.748089] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769944.953842] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769945.160090] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769945.365452] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769945.571679] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769945.777354] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769945.983447] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769946.188877] 602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769946.394244] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769946.599974] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769946.806489] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421769947.011640] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769947.216609] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769947.421802] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769947.628348] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769947.834187] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769948.040205] 1503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421769948.245718] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769948.451456] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769948.658213] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769948.864725] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.00 ms +[1421769949.072413] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.78 ms +[1421769949.277955] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769949.484402] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.93 ms +[1421769949.689623] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769949.895148] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769950.100378] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421769950.305651] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769950.510476] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769950.716387] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769950.921537] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769951.126870] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769951.333017] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769951.539588] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769951.745539] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769951.950849] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769952.156009] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769952.361379] 1369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769952.567737] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421769952.773507] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421769952.980501] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.61 ms +[1421769953.187306] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769953.392724] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421769953.598279] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421769953.803165] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769954.007871] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769954.212852] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769954.420572] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769954.625532] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769954.831432] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769955.036930] 1984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769955.241967] 841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769955.446564] 352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769955.652257] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421769955.858092] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769956.063761] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769956.268546] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769956.474795] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769956.680673] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421769956.886105] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769957.090769] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769957.296665] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769957.503039] 1482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769957.708349] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769957.913633] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769958.118587] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769958.323530] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421769958.528860] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421769958.734521] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769958.941270] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769959.146471] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421769959.351625] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769959.557328] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769959.763104] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769959.976140] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.79 ms +[1421769960.182416] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421769960.387897] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769960.594429] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769960.805733] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.82 ms +[1421769961.010611] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769961.215654] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769961.421816] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769961.627114] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769961.832276] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769962.036878] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769962.241998] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769962.446726] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769962.652977] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421769962.858431] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769963.064376] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421769963.270345] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421769963.475753] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769963.680564] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769963.885334] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769964.090086] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769964.295550] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769964.501260] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769964.706589] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769964.911489] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.00 ms +[1421769965.116000] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421769965.320919] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769965.525953] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769965.731209] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769965.936378] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769966.142388] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421769966.347749] 955 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421769966.554198] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421769966.759845] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769966.964934] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769967.169990] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769967.376081] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769967.580890] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769967.786298] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421769967.993147] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421769968.198644] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421769968.405090] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421769968.610710] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421769968.817101] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421769969.021916] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769969.227339] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421769969.432261] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769969.637374] 830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769969.842754] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421769970.048496] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769970.253330] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769970.458805] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421769970.664902] 1723 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421769970.869996] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769971.074658] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769971.281130] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421769971.491102] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.62 ms +[1421769971.703271] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.18 ms +[1421769971.918636] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.4 ms +[1421769972.135052] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.8 ms +[1421769972.354208] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421769972.560633] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769972.766294] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769972.971875] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769973.180849] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.93 ms +[1421769973.414940] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.9 ms +[1421769973.621481] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421769973.826937] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769974.031051] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769974.237201] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769974.442248] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769974.648378] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769974.855306] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421769975.060340] 126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421769975.266629] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769975.472910] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.08 ms +[1421769975.678524] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769975.885624] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769976.090828] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769976.296113] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769976.501047] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421769976.706059] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769976.912150] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421769977.118481] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421769977.324105] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769977.530854] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769977.736544] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421769977.941552] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421769978.146690] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769978.352220] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769978.557649] 1261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421769978.763071] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769978.967931] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769979.173140] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769979.377998] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421769979.583250] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421769979.788623] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769979.994027] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421769980.199053] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769980.405573] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421769980.611953] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769980.817697] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421769981.022571] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769981.227789] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421769981.433041] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769981.639583] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421769981.845346] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421769982.050259] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421769982.255241] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421769982.460919] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769982.666503] 1330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421769982.872721] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421769983.078388] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421769983.283643] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769983.489471] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421769983.695028] 1175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769983.900396] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769984.105107] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769984.310334] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769984.517098] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769984.723457] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421769984.929268] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769985.134634] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421769985.339852] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769985.545617] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769985.752038] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421769985.958605] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769986.164670] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421769986.370716] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769986.605198] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.0 ms +[1421769986.810610] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421769987.021267] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.95 ms +[1421769987.226762] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421769987.431733] 480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769987.636980] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769987.843740] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769988.048918] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421769988.254269] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769988.460710] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421769988.666286] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769988.872422] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421769989.077578] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769989.282808] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421769989.489013] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769989.695196] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421769989.919905] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421769990.126218] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421769990.331701] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421769990.538024] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421769990.744448] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769990.993714] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.6 ms +[1421769991.205777] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.61 ms +[1421769991.411334] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421769991.618246] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421769991.825124] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421769992.030092] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421769992.236078] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769992.442649] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421769992.649155] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.92 ms +[1421769992.855186] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421769993.060772] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421769993.266225] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421769993.471546] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421769993.676920] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421769993.882380] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421769994.087438] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421769994.292530] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769994.499146] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421769994.704802] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421769994.910977] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421769995.116104] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421769995.321295] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421769995.532308] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.09 ms +[1421769995.737981] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421769995.943922] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421769996.171243] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.0 ms +[1421769996.386547] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms +[1421769996.592313] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421769996.798209] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421769997.003884] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421769997.209219] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421769997.418830] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.34 ms +[1421769997.625300] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421769997.830702] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421769998.035480] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421769998.255961] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.6 ms +[1421769998.461422] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769998.677655] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.9 ms +[1421769998.883538] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421769999.090309] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421769999.296071] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421769999.501452] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421769999.706864] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421769999.912058] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770000.116911] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770000.322174] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770000.527311] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770000.733520] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770000.939152] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770001.144344] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421770001.349527] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770001.555693] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770001.761233] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770001.966789] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770002.173647] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770002.380029] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770002.585122] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770002.791026] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421770002.997244] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770003.202615] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770003.407993] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770003.613590] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770003.818939] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770004.024250] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770004.229235] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770004.434118] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770004.639161] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770004.845307] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770005.050066] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770005.255409] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770005.461605] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770005.668073] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770005.873268] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770006.078141] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770006.283159] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770006.488463] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770006.693714] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770006.898518] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770007.103041] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770007.308104] 513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770007.513248] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770007.718238] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770007.923174] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770008.128914] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421770008.334800] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770008.540100] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770008.745614] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421770008.951733] 1932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770009.156866] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770009.361913] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770009.568536] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770009.774144] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770009.979752] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770010.186056] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770010.391205] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770010.596806] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421770010.802500] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770011.007583] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770011.212760] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770011.419208] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770011.640166] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.5 ms +[1421770011.845691] 1241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770012.050374] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770012.255566] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770012.461280] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770012.666664] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770012.871991] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770013.077382] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421770013.282646] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770013.488914] 1682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770013.694861] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421770013.900634] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770014.105981] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770014.311480] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770014.517428] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770014.722728] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770014.928352] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770015.135171] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770015.340979] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770015.546993] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770015.752735] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421770015.958815] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770016.164322] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770016.370108] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770016.575328] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770016.780361] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770016.985207] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770017.190586] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770017.396058] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770017.602150] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770017.807607] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770018.012600] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770018.218650] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770018.423518] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770018.628471] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770018.833710] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770019.039569] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770019.244783] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770019.450224] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770019.655918] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770019.861949] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770020.067250] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770020.273250] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770020.478894] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770020.684726] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770020.890161] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770021.095410] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770021.301468] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770021.508120] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770021.714767] 1734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770021.920475] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770022.126124] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770022.331191] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770022.536531] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770022.743060] 1984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421770022.948476] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770023.154156] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770023.359168] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770023.564443] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770023.769884] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770023.975915] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770024.182153] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421770024.387555] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770024.592709] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770024.798389] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770025.003639] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770025.208724] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770025.414709] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770025.620867] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770025.826706] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770026.031635] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770026.236921] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770026.442405] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770026.648070] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770026.855394] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421770027.060838] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770027.266280] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421770027.473374] 1523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.94 ms +[1421770027.678454] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770027.884683] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770028.090053] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770028.295305] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770028.501262] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770028.707320] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770028.913963] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.95 ms +[1421770029.119348] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770029.324604] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770029.529748] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770029.735356] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770029.941444] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770030.148787] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.82 ms +[1421770030.354122] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770030.560900] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421770030.767829] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770030.973253] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770031.178515] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770031.384472] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421770031.589558] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770031.795221] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770032.001693] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770032.207178] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770032.412821] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770032.618126] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770032.823645] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770033.028910] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770033.234501] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770033.439798] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770033.644496] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770033.850701] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770034.058523] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.34 ms +[1421770034.265323] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770034.471376] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770034.676993] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770034.882333] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770035.088263] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770035.294453] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770035.499424] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770035.704665] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770035.910100] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770036.115713] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770036.321251] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770036.527019] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770036.732226] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770036.937517] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770037.143864] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770037.349471] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770037.555716] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770037.761597] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421770037.968006] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421770038.173949] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421770038.380455] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770038.586438] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770038.791681] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770038.996743] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770039.202351] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770039.408302] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770039.614268] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770039.820797] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770040.025595] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770040.231930] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770040.437579] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770040.642965] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770040.849661] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.79 ms +[1421770041.054208] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770041.259172] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770041.464124] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770041.669104] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770041.875465] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770042.080463] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770042.285713] 1148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770042.492019] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770042.697491] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770042.902813] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770043.108096] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770043.313490] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770043.521252] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.47 ms +[1421770043.730871] 224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.60 ms +[1421770043.943086] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.40 ms +[1421770044.161109] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.9 ms +[1421770044.381965] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421770044.607960] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms +[1421770044.813815] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770045.018729] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770045.223567] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770045.428696] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770045.633754] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770045.840370] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770046.046216] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770046.251243] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770046.456630] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770046.661873] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770046.867673] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770047.073159] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770047.279159] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770047.484730] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770047.690043] 1457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770047.896861] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770048.101910] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770048.307800] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770048.513134] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770048.718238] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770048.923890] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770049.130514] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770049.336825] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770049.542974] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770049.748568] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770049.954741] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770050.159878] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770050.366234] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770050.571765] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770050.777359] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770050.983809] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770051.189161] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770051.394348] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770051.600456] 1913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770051.806041] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770052.011205] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770052.217287] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770052.422749] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770052.629067] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770052.834584] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770053.040037] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770053.245118] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770053.450517] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770053.656154] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770053.861286] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770054.066447] 1126 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770054.271965] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770054.477688] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770054.684234] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770054.889249] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770055.094244] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770055.299810] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.94 ms +[1421770055.505976] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770055.711740] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770055.919594] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.77 ms +[1421770056.125116] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770056.331367] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770056.537152] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770056.742517] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770056.948700] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421770057.155079] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770057.360318] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770057.565016] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770057.770243] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770057.975870] 591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770058.181500] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770058.388027] 1932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770058.593159] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770058.799679] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770059.004866] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770059.210132] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770059.415477] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770059.621427] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770059.827425] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770060.033639] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770060.238878] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770060.444701] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770060.650266] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770060.855267] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770061.060324] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770061.265387] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770061.471008] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770061.676248] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770061.882694] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770062.087414] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770062.292673] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770062.497977] 1150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770062.703435] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770062.909037] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770063.115237] 1728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770063.320613] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770063.526796] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770063.733210] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421770063.938506] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770064.145399] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770064.350775] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770064.555863] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770064.762110] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770064.968536] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770065.173929] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770065.378995] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770065.584433] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421770065.790392] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421770065.996186] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770066.202604] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770066.407495] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770066.613808] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770066.819352] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770067.023899] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770067.231912] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.28 ms +[1421770067.456136] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421770067.668595] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.90 ms +[1421770067.888634] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421770068.106194] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.1 ms +[1421770068.329082] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421770068.556747] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421770068.777375] 77 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421770069.061350] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.9 ms +[1421770069.266926] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770069.471881] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770069.679548] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.64 ms +[1421770069.884471] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770070.090004] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770070.295223] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770070.500884] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770070.706215] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770070.913001] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.86 ms +[1421770071.122555] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.35 ms +[1421770071.336672] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.3 ms +[1421770071.585893] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.1 ms +[1421770071.801401] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421770072.006456] 1283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770072.211419] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770072.416364] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770072.621637] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770072.827476] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770073.032507] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770073.239073] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770073.444641] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770073.650709] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770073.856834] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770074.062417] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770074.268744] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421770074.474258] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770074.679598] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770074.884566] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770075.089668] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770075.295923] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421770075.501488] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770075.707431] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770075.912884] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770076.117787] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770076.323054] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770076.528653] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770076.733520] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770076.938697] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770077.143675] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770077.349167] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770077.554382] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770077.760837] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770077.965795] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770078.171226] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770078.376482] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770078.581614] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770078.786761] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770078.991711] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770079.198416] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770079.403206] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770079.609335] 1932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770079.814731] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770080.019593] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770080.224609] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770080.430237] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770080.635840] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770080.841362] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770081.046009] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770081.251328] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770081.458134] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421770081.663640] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770081.869197] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770082.074479] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770082.279366] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770082.484864] 1423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770082.690337] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770082.896346] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770083.101624] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770083.307826] 1495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770083.513432] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770083.719480] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770083.925183] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770084.131408] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770084.336539] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770084.541745] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770084.747081] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770084.952724] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770085.158205] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421770085.363161] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770085.569276] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770085.774513] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770085.979641] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770086.184671] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770086.390520] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770086.595753] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770086.800742] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770087.005553] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770087.212068] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770087.417407] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770087.622814] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770087.828766] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421770088.033437] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770088.238368] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770088.443606] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770088.649109] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770088.855428] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770089.060584] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770089.266884] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421770089.472313] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421770089.677968] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770089.883569] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770090.088879] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770090.293981] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770090.500486] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770090.706032] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770090.912695] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770091.119379] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770091.324660] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770091.530371] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770091.736256] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770091.942159] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770092.147370] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770092.352682] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770092.558553] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770092.764486] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770092.970302] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770093.176681] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770093.382036] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770093.587356] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770093.793103] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770093.999790] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770094.205439] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770094.411187] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770094.616041] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770094.820824] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770095.027490] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.66 ms +[1421770095.233412] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770095.439701] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770095.644673] 534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770095.850180] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770096.055788] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770096.261236] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770096.466415] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770096.672796] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770096.878585] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770097.083825] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770097.289263] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770097.495844] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770097.702396] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770097.908618] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770098.114007] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770098.320682] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421770098.527487] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.92 ms +[1421770098.733025] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770098.938830] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770099.144302] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770099.349403] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770099.555709] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770099.761998] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770099.967969] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770100.174807] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770100.380114] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770100.586670] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770100.792951] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770100.999372] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770101.204857] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770101.409597] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.03 ms +[1421770101.614733] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770101.820066] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770102.025397] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770102.231523] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770102.436925] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770102.642386] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770102.848048] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770103.053563] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421770103.258745] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770103.463991] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770103.669658] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770103.875416] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770104.080366] 936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770104.285883] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770104.491261] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770104.696498] 519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770104.901992] 968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770105.106882] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770105.311833] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770105.516946] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770105.722471] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770105.929470] 1739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770106.134819] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770106.340295] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770106.545976] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770106.751835] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770106.956759] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770107.162114] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770107.367783] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770107.573152] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770107.779937] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770107.986484] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770108.192715] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770108.398716] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770108.604089] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770108.809548] 504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770109.014368] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770109.219581] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770109.424933] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770109.631295] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770109.837147] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770110.042200] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770110.247180] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770110.452586] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770110.659042] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770110.864083] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770111.068775] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770111.274660] 1957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770111.479778] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770111.685396] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770111.891268] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770112.096443] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770112.301856] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770112.507031] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770112.712632] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770112.919330] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421770113.124995] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770113.330150] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770113.535632] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770113.741513] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770113.947186] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770114.152650] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770114.359181] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770114.564877] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770114.770148] 38 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770114.976415] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770115.181528] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770115.387547] 1744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770115.592974] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770115.798567] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770116.004755] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770116.211272] 1781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770116.417285] 1401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770116.623802] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770116.829010] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770117.034055] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770117.238732] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770117.443792] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770117.648957] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770117.855216] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770118.059895] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770118.265102] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770118.471511] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770118.677579] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770118.883300] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770119.087780] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770119.292838] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770119.497947] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770119.703667] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770119.909305] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770120.114689] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770120.321215] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770120.530404] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.70 ms +[1421770120.757810] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421770120.972838] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.6 ms +[1421770121.227718] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=50.6 ms +[1421770131.636341] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770131.841472] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770132.046305] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770132.251588] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770132.457573] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770132.662893] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770132.869853] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421770133.074592] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770133.279290] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770133.484577] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770133.690033] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770133.895446] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770134.099845] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770134.305193] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421770134.510874] 1175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.92 ms +[1421770134.716196] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770134.921623] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770135.126146] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770135.330975] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770135.536762] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770135.742886] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770135.948682] 1451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770136.154159] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421770136.359975] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770136.565070] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770136.770057] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770136.976528] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421770137.191151] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.3 ms +[1421770137.396825] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770137.602296] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770137.808829] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770138.013337] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770138.218448] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770138.423694] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770138.635221] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.42 ms +[1421770138.841698] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770139.046225] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770139.250972] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770139.455975] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770139.661323] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770139.866469] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770140.071398] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770140.276859] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770140.482715] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770140.688207] 1078 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770140.894162] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770141.099454] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770141.305818] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770141.512407] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770141.718968] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770141.924541] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770142.129647] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770142.334952] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770142.541254] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770142.746897] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770142.953242] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421770143.159244] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770143.364648] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770143.571036] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770143.776891] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770143.982064] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770144.187892] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770144.393238] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770144.598799] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770144.804724] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770145.010078] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770145.215229] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770145.420648] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770145.626384] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770145.832017] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770146.037682] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770146.243895] 1581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770146.449558] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770146.654877] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770146.860906] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770147.066139] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770147.272442] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770147.477917] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770147.683836] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421770147.889835] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421770148.094939] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770148.300157] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770148.506112] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770148.711102] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770148.916232] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770149.120781] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770149.325855] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770149.531703] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770149.737351] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770149.942133] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770150.148732] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.76 ms +[1421770150.354322] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421770150.559268] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770150.764351] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770150.970724] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421770151.175968] 642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770151.381900] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770151.587401] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770151.793598] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770152.000415] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770152.205947] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770152.410855] 570 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770152.615377] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770152.820976] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770153.026198] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770153.231584] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770153.436756] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770153.642079] 512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770153.848664] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770154.053750] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770154.259597] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770154.465600] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770154.671255] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770154.876443] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770155.082290] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770155.287522] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770155.492801] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770155.698330] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770155.904956] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770156.110069] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770156.315383] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770156.521483] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.99 ms +[1421770156.726623] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770156.931723] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770157.136725] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770157.342878] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770157.548088] 1139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770157.754795] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421770157.960857] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421770158.166317] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770158.371650] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770158.577704] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770158.783662] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421770158.989146] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770159.194787] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770159.400994] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770159.606702] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421770159.811815] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770160.017587] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770160.222974] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770160.427996] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770160.633199] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770160.838453] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770161.043418] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770161.248429] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770161.454632] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770161.661801] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770161.867936] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770162.073016] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770162.279238] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770162.484310] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770162.690061] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770162.895954] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770163.101342] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770163.306887] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770163.512452] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770163.718098] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770163.923322] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770164.128557] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770164.334543] 1350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770164.540474] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770164.745855] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770164.951712] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770165.157344] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770165.363478] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770165.568731] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770165.773764] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770165.979486] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770166.184945] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770166.391255] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770166.596380] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770166.803301] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770167.008213] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770167.213086] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770167.419477] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421770167.626176] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770167.831462] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770168.037281] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770168.242521] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770168.447763] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770168.652963] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770168.859300] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770169.066086] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421770169.272627] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770169.478375] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770169.684065] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.91 ms +[1421770169.899943] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421770170.111183] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.64 ms +[1421770170.324572] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.65 ms +[1421770170.541717] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.9 ms +[1421770170.764955] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms +[1421770170.987804] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.6 ms +[1421770171.211175] 233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421770171.416454] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770171.621628] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770171.826616] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770172.034614] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.64 ms +[1421770172.246412] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.86 ms +[1421770172.489565] 1989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=39.5 ms +[1421770172.695845] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770172.900922] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770173.106108] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770173.312648] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421770173.518302] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770173.723441] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770173.928867] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770174.134104] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770174.339249] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770174.544402] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770174.750261] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770174.956135] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770175.160887] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770175.366277] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770175.572735] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770175.778033] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770175.984696] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770176.190861] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770176.396987] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770176.602836] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421770176.809531] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770177.014398] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770177.220034] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770177.425857] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770177.630974] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770177.837671] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421770178.042853] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770178.248072] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770178.453504] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770178.658303] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770178.863640] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770179.068600] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770179.273617] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770179.479846] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770179.685481] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770179.891320] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770180.096181] 240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770180.301735] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770180.507580] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770180.712968] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770180.919775] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421770181.125216] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770181.330497] 1419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770181.536418] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770181.741879] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770181.948112] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770182.153259] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770182.359464] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770182.564640] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770182.770101] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770182.975789] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770183.182095] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421770183.387226] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770183.592457] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770183.797750] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770184.003877] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770184.208922] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770184.414596] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770184.620100] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770184.826357] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770185.032415] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421770185.237671] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770185.443366] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421770185.648723] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770185.853796] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770186.058835] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770186.265236] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770186.471886] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770186.677566] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770186.882996] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770187.087688] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770187.292740] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770187.499403] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770187.705253] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770187.911982] 1812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770188.118363] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770188.323296] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770188.528388] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770188.733969] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770188.939521] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770189.145957] 1482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770189.350882] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770189.555790] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770189.761673] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.98 ms +[1421770189.966895] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770190.173013] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770190.378179] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770190.583417] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770190.788774] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770190.995505] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421770191.201009] 1115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770191.406781] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770191.612447] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770191.818067] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770192.022875] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770192.228486] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770192.434477] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421770192.640889] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770192.846960] 1726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770193.051790] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770193.257020] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770193.462554] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770193.669003] 1720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770193.874609] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770194.079173] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770194.284596] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770194.489989] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770194.695364] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770194.900516] 508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770195.106896] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770195.312138] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770195.518366] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770195.723691] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770195.929617] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770196.134954] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770196.340838] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770196.547131] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770196.752556] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770196.957957] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770197.163896] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770197.369184] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770197.574714] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770197.780118] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770197.986684] 1896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421770198.191845] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770198.396886] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421770198.601862] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770198.807244] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770199.012020] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770199.217414] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770199.423955] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770199.629743] 496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770199.836590] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770200.042607] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770200.247877] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770200.454453] 1716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770200.660647] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421770200.867192] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770201.072194] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770201.277121] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770201.482534] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421770201.687581] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770201.893864] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770202.098919] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770202.304507] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421770202.510230] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770202.715243] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770202.922468] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770203.127915] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770203.334075] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770203.539133] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770203.745234] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770203.950598] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770204.156110] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770204.361123] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770204.566687] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770204.771851] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770204.978402] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770205.184086] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770205.390121] 543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770205.596696] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770205.802676] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770206.007944] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770206.212954] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770206.418264] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770206.623725] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770206.829534] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770207.035629] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770207.241961] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770207.448355] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770207.654546] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770207.859982] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770208.066002] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770208.270991] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770208.476205] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770208.682294] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421770208.888147] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770209.093378] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770209.299304] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770209.505402] 1897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770209.710684] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770209.916033] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770210.121124] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770210.326652] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770210.532236] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421770210.737857] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770210.944160] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770211.149516] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770211.355127] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770211.559903] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770211.764827] 308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770211.970189] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770212.175470] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770212.380999] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770212.586503] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770212.791555] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770212.997778] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770213.203564] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770213.408857] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770213.613973] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770213.819342] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770214.024249] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770214.229672] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770214.435481] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770214.641231] 60 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770214.846855] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770215.053027] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770215.258423] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770215.463643] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770215.669884] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770215.874621] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770216.079537] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770216.285171] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770216.490648] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770216.695892] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770216.901384] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770217.107932] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770217.313663] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770217.519045] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770217.724249] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770217.929438] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770218.134569] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770218.339986] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770218.546380] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770218.752089] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770218.957720] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770219.163309] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770219.368502] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770219.573702] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770219.778974] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770219.984216] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770220.190866] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770220.396168] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770220.601647] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770220.806838] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770221.011277] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770221.216232] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770221.421829] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770221.627415] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770221.834280] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770222.039078] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770222.243781] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770222.449004] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770222.654958] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770222.861183] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421770223.066785] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770223.271897] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770223.477871] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421770223.683367] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770223.889050] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770224.094095] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770224.299423] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770224.504752] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770224.710112] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770224.915522] 1082 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770225.120427] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770225.325191] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770225.530388] 555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770225.736819] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770225.942261] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770226.147535] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770226.352651] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770226.558665] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770226.764588] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770226.970258] 1382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770227.175679] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770227.380893] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770227.586579] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770227.791983] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421770227.998303] 1556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770228.204477] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421770228.410809] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770228.616069] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770228.822331] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770229.027276] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770229.232571] 1394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770229.438944] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770229.644214] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770229.849992] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770230.055583] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770230.260863] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421770230.469784] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.78 ms +[1421770230.691207] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.4 ms +[1421770230.897562] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.99 ms +[1421770231.102723] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770231.308107] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770231.514119] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770231.720462] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421770231.925878] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770232.131967] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770232.338014] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770232.543540] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770232.748655] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770232.954498] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421770233.161029] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421770233.366363] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770233.572499] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770233.777622] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770233.982934] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770234.188592] 1410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770234.394680] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770234.599740] 348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770234.804907] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770235.009787] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770235.215931] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770235.421221] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770235.626172] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770235.831846] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770236.037187] 1435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770236.242276] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770236.447351] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770236.652438] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770236.857197] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770237.062331] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770237.282196] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421770237.515808] 1673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.1 ms +[1421770237.760989] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=40.8 ms +[1421770237.982324] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421770238.203462] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421770238.480700] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.5 ms +[1421770238.709527] 1137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms +[1421770238.934919] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.5 ms +[1421770239.158980] 985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421770239.385315] 63 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421770239.670585] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.5 ms +[1421770239.900896] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.2 ms +[1421770240.127183] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421770240.333585] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770240.539095] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770240.744586] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770240.952750] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.87 ms +[1421770241.177246] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421770241.412368] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.4 ms +[1421770241.628187] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms +[1421770241.849865] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms +[1421770242.072641] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421770242.294735] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421770242.527183] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.3 ms +[1421770242.811682] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.5 ms +[1421770243.035756] 305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421770243.320413] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.9 ms +[1421770243.525365] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770243.731112] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770243.936414] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770244.142860] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770244.348090] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770244.553769] 819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421770244.763927] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.59 ms +[1421770244.976836] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.43 ms +[1421770245.189106] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.00 ms +[1421770245.410251] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.1 ms +[1421770245.631664] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421770245.910359] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.4 ms +[1421770246.116348] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770246.321736] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770246.528488] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770246.734376] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.79 ms +[1421770246.942727] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.50 ms +[1421770247.155864] 951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.19 ms +[1421770247.371640] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.6 ms +[1421770247.628665] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=52.7 ms +[1421770247.901678] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=68.8 ms +[1421770248.124741] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421770248.344622] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.7 ms +[1421770248.569137] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421770248.844024] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.3 ms +[1421770249.049023] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770249.279406] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.5 ms +[1421770249.555618] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=72.0 ms +[1421770249.761030] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770249.967260] 1178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770250.173972] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770250.379700] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770250.585779] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770250.792703] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770250.998558] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770251.203872] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770251.409258] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770251.614242] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770251.820589] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770252.026309] 30 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770252.231687] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770252.437109] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770252.643437] 1910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770252.848983] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770253.054284] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421770253.259604] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421770253.465196] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770253.671588] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770253.877610] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770254.082571] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770254.289459] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770254.495419] 1321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770254.700662] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770254.906211] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421770255.111844] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421770255.318880] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.18 ms +[1421770255.529205] 725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.19 ms +[1421770255.741053] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.02 ms +[1421770255.956994] 610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.9 ms +[1421770256.174231] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.3 ms +[1421770256.380631] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770256.587155] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770256.792911] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770257.003447] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.49 ms +[1421770257.217704] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.26 ms +[1421770257.431838] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.1 ms +[1421770257.653591] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.3 ms +[1421770257.875367] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421770258.098302] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.1 ms +[1421770258.320194] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421770258.539309] 814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421770258.768957] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.4 ms +[1421770258.992574] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421770259.216469] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421770259.422749] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770259.627967] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770259.832640] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770260.038366] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770260.243504] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770260.450881] 862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.56 ms +[1421770260.660409] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.64 ms +[1421770260.878994] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770261.096558] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421770261.318692] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421770261.544239] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421770261.749550] 177 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770261.954790] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770262.160066] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770262.366771] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770262.572771] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770262.778465] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770262.985316] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421770263.190762] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770263.395782] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770263.601189] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770263.806348] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770264.011999] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770264.217391] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770264.423308] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770264.628782] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770264.834538] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770265.040535] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770265.246317] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770265.451579] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770265.656962] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770265.863092] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770266.068131] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770266.274203] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770266.479323] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770266.685276] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770266.891917] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770267.098061] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770267.303391] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770267.509332] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770267.715167] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770267.920694] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770268.126210] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770268.332247] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770268.539737] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.23 ms +[1421770268.745710] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770268.951476] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770269.158474] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.88 ms +[1421770269.364990] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770269.570651] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770269.776425] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770269.982731] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770270.189242] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770270.394113] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.01 ms +[1421770270.599531] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770270.806462] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421770271.011890] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421770271.218205] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421770271.423517] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770271.628725] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770271.843965] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421770272.058309] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421770272.272120] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.80 ms +[1421770272.484422] 463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.33 ms +[1421770272.697264] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.78 ms +[1421770272.921009] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.6 ms +[1421770273.145342] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.8 ms +[1421770273.371845] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421770273.653684] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.2 ms +[1421770273.872909] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.2 ms +[1421770274.098780] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421770274.318291] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421770274.607638] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=85.3 ms +[1421770274.826075] 1396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421770275.108063] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.5 ms +[1421770275.385925] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.9 ms +[1421770275.614578] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421770275.843324] 828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421770276.048334] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770276.253680] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770276.460856] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.86 ms +[1421770276.666924] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421770276.879133] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.92 ms +[1421770277.117167] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=34.0 ms +[1421770277.335812] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421770277.558779] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421770277.782446] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.4 ms +[1421770278.010116] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421770278.236485] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421770278.453178] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.4 ms +[1421770278.681398] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421770278.910099] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.5 ms +[1421770279.137813] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421770279.423606] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.2 ms +[1421770279.651104] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.6 ms +[1421770279.856059] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770280.080196] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421770280.307642] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421770280.537240] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.5 ms +[1421770280.742587] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770280.947858] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770281.153029] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770281.360434] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.39 ms +[1421770281.568732] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.88 ms +[1421770281.774267] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770281.979974] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770282.185014] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770282.390879] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770282.596563] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770282.801910] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770283.007159] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770283.213631] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421770283.419057] 488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421770283.624219] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770283.829790] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770284.034834] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770284.240001] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770284.445161] 752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770284.650098] 88 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770284.855788] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770285.060891] 785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770285.265992] 1261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770285.471508] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770285.676955] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770285.883236] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770286.088400] 1235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770286.293824] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770286.499973] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770286.705028] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770286.910977] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770287.115816] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770287.320479] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770287.525610] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770287.731167] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770287.937205] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421770288.142993] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770288.349112] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770288.554524] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770288.759910] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770288.966595] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770289.173106] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770289.378368] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770289.584465] 1507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770289.790481] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770289.995967] 446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770290.201497] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770300.610084] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770300.815289] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770301.020435] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770301.225752] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770301.431143] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770301.636167] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770301.841460] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770302.046504] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770302.251279] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770302.456565] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770302.663090] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421770302.869254] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770303.074561] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770303.280081] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770303.485622] 966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770303.691490] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770303.896819] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770304.102180] 694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770304.307759] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770304.514919] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.07 ms +[1421770304.720526] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770304.926142] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770305.132453] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770305.337348] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770305.542177] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770305.747411] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770305.953182] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770306.158516] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770306.364876] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770306.571005] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770306.776504] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770306.981983] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770307.187025] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770307.392553] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770307.598721] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770307.803572] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770308.008638] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770308.215000] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770308.420852] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770308.626371] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770308.831529] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770309.036504] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770309.241929] 964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770309.448211] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770309.654633] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421770309.860758] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770310.065738] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770310.271716] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770310.476908] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770310.683023] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770310.888377] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770311.093763] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770311.300305] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770311.505422] 161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770311.710711] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770311.916586] 977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770312.122695] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770312.327773] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770312.535236] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.05 ms +[1421770312.741006] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770312.946650] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421770313.152758] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770313.358751] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770313.564156] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421770313.770523] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421770313.977541] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.76 ms +[1421770314.184520] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.83 ms +[1421770314.390161] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770314.595809] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770314.801652] 1688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770315.007705] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770315.212727] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770315.418401] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770315.623538] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770315.829636] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770316.034577] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770316.240990] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421770316.446792] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770316.652492] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770316.859046] 1888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770317.064106] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770317.269512] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770317.476013] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770317.681009] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421770317.886777] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770318.091530] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770318.296629] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770318.502031] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770318.707042] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770318.913560] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770319.118636] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770319.325159] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770319.530604] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770319.736549] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770319.941781] 113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770320.147200] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770320.352134] 39 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770320.557214] 938 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770320.762154] 246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770320.968049] 1133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770321.173465] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770321.378899] 430 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770321.585739] 1628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770321.791358] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770321.996736] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770322.205519] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.48 ms +[1421770322.417686] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.22 ms +[1421770322.635068] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421770322.876237] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.9 ms +[1421770323.090418] 574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.1 ms +[1421770323.314297] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421770323.540169] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.3 ms +[1421770323.745867] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770324.032789] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.5 ms +[1421770324.258743] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.6 ms +[1421770324.477319] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.2 ms +[1421770324.683873] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421770324.889794] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770325.095080] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770325.301026] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770325.506483] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770325.711702] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770325.918076] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421770326.123483] 1072 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770326.328979] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770326.534129] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770326.739316] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770326.945240] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.93 ms +[1421770327.155844] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.58 ms +[1421770327.391536] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=31.7 ms +[1421770327.642256] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=46.5 ms +[1421770327.906666] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=60.4 ms +[1421770328.111987] 451 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770328.317252] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770328.522835] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770328.729623] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.03 ms +[1421770328.938656] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.36 ms +[1421770329.152790] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.80 ms +[1421770329.371341] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421770329.592939] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421770329.867095] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.0 ms +[1421770330.089807] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.0 ms +[1421770330.317586] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421770330.600652] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.8 ms +[1421770330.828258] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms +[1421770331.103524] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=71.3 ms +[1421770331.331591] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.9 ms +[1421770331.559728] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.7 ms +[1421770331.788840] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.9 ms +[1421770332.076967] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.8 ms +[1421770332.304695] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421770332.534342] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms +[1421770332.745600] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.09 ms +[1421770332.951258] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770333.157212] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770333.364771] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.45 ms +[1421770333.574716] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.49 ms +[1421770333.790604] 1192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.3 ms +[1421770334.007441] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.6 ms +[1421770334.270832] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=59.1 ms +[1421770334.490673] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.9 ms +[1421770334.774159] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.4 ms +[1421770335.002553] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421770335.229215] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421770335.455903] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms +[1421770335.681028] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421770335.888103] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421770336.107369] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421770336.332191] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421770336.563704] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.0 ms +[1421770336.769605] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770336.974956] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770337.180537] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421770337.387000] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770337.592673] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770337.797979] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770338.004537] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770338.210168] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770338.415458] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770338.622011] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770338.827620] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770339.033419] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770339.239097] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770339.444515] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770339.651436] 1175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421770339.871089] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421770340.099622] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.8 ms +[1421770340.305872] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770340.510917] 639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770340.716149] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770340.921964] 833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770341.129116] 1156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.00 ms +[1421770341.353509] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421770341.566679] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.94 ms +[1421770341.784871] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421770342.006759] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms +[1421770342.230827] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421770342.437375] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770342.643861] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770342.850007] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770343.054814] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770343.259867] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770343.465452] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770343.672444] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.80 ms +[1421770343.879224] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.67 ms +[1421770344.085499] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770344.291663] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770344.497005] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770344.702230] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770344.907769] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770345.112686] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770345.319371] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770345.525615] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770345.731733] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770345.937569] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770346.143390] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770346.348574] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770346.554822] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770346.760114] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770346.965323] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770347.170294] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770347.375708] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770347.584057] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770347.790869] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770347.996311] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770348.201863] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770348.407142] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770348.612451] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770348.818696] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770349.023830] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770349.228982] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770349.433869] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770349.639741] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770349.845269] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770350.050502] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770350.255793] 1050 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770350.462206] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770350.668635] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770350.874318] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770351.079685] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770351.285875] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770351.492291] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770351.697630] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770351.903017] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770352.108869] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421770352.314741] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770352.521223] 1958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770352.726707] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770352.932125] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770353.137616] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770353.342896] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770353.548310] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770353.754045] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770353.961404] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.83 ms +[1421770354.167770] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770354.374594] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.75 ms +[1421770354.580018] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770354.785201] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770354.990729] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770355.195892] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770355.401622] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770355.606563] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770355.813487] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770356.018480] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770356.223858] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770356.429484] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770356.634772] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770356.840895] 1913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770357.045746] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770357.252163] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770357.457491] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770357.663213] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770357.869817] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770358.074902] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770358.280591] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770358.485969] 745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770358.691577] 1164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770358.896945] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770359.102178] 1056 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770359.307220] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770359.512768] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770359.718558] 1197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770359.924468] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421770360.129659] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770360.335718] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770360.542132] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770360.747723] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770360.952914] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770361.158292] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770361.363768] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770361.568814] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770361.774001] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770361.979802] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770362.185594] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770362.391069] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770362.596463] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770362.802972] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770363.007968] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770363.213325] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770363.418743] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770363.625042] 1566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770363.831008] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770364.035867] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770364.240996] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770364.447942] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421770364.653473] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770364.860321] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770365.066488] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770365.272816] 1599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770365.478506] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770365.684334] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770365.896818] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.19 ms +[1421770366.101696] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770366.306785] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770366.512246] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770366.718698] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770366.923973] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770367.129191] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770367.334254] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770367.540815] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770367.747223] 1984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770367.952696] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770368.157945] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770368.363999] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770368.569529] 1202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770368.774845] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770368.981218] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770369.187716] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770369.392927] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770369.598136] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770369.803738] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770370.008503] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770370.213559] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770370.419912] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421770370.625603] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770370.831064] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770371.037350] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421770371.242253] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770371.447653] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770371.653634] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770371.860035] 1551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770372.064967] 200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770372.270045] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770372.476522] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421770372.681780] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770372.887773] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770373.094254] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.91 ms +[1421770373.320155] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421770373.553102] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.8 ms +[1421770373.765923] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.74 ms +[1421770373.988498] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.5 ms +[1421770374.211831] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421770374.495392] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.4 ms +[1421770374.722009] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421770374.949811] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421770375.235234] 1928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.0 ms +[1421770375.463874] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421770375.692580] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.6 ms +[1421770375.897800] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770376.102730] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770376.308037] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421770376.517649] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.64 ms +[1421770376.731461] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.31 ms +[1421770376.946607] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421770377.160299] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.79 ms +[1421770377.381006] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421770377.650540] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=65.4 ms +[1421770377.932793] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.2 ms +[1421770378.156790] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421770378.376841] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.8 ms +[1421770378.594479] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421770378.799796] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770379.004589] 457 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770379.210819] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421770379.416074] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770379.621291] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770379.826507] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770380.031338] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770380.236518] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770380.441733] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770380.647600] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770380.853474] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770381.058179] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770381.263075] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770381.469601] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770381.674695] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770381.881403] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770382.086146] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770382.292194] 1912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770382.497742] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770382.702903] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770382.908596] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770383.113764] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770383.319146] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770383.524763] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770383.730630] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770383.935900] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770384.141783] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770384.346823] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770384.552187] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770384.757620] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770384.963315] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770385.168461] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770385.373648] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770385.579198] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770385.784869] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770385.990490] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770386.195420] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770386.401110] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770386.607739] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770386.813419] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770387.019204] 1210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770387.225570] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770387.431190] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770387.637007] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770387.843244] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770388.049095] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770388.254329] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770388.459241] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770388.664900] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421770388.870769] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770389.076803] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770389.282078] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770389.487451] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770389.693004] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770389.899273] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770390.104904] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770390.310970] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421770390.516890] 1240 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770390.723332] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770390.928768] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770391.135025] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770391.340515] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770391.546400] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770391.753217] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770391.958928] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421770392.164075] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770392.370286] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421770392.576931] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421770392.782091] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770392.987938] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770393.195130] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.03 ms +[1421770393.401660] 1813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421770393.607213] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770393.813215] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.94 ms +[1421770394.018145] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770394.224010] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770394.429226] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770394.636464] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770394.842743] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770395.048262] 899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770395.253391] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770395.459626] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421770395.664951] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770395.870108] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770396.074890] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770396.280155] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770396.486163] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770396.691736] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770396.898386] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770397.103654] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770397.308856] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770397.514485] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770397.720017] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770397.925023] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770398.131032] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770398.337132] 1880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770398.542630] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770398.748760] 1312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770398.954282] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770399.160893] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770399.366046] 358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770399.571887] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770399.777582] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770399.984494] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.67 ms +[1421770400.191138] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421770400.397122] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770400.602211] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770400.808690] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770401.014474] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770401.220473] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770401.425936] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770401.631000] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770401.837410] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770402.042702] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770402.248055] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770402.453940] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770402.659260] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770402.864183] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770403.069310] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770403.274528] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770403.480646] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770403.686819] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770403.892423] 1017 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770404.099000] 1700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421770404.304087] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770404.509661] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770404.715353] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770404.920832] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770405.126430] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770405.331582] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770405.538055] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770405.743746] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770405.949215] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770406.154593] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770406.360967] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770406.566419] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770406.771827] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770406.977154] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770407.182384] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770407.387460] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770407.592685] 545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770407.798877] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770408.004907] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770408.210318] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770408.416768] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421770408.622188] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770408.827757] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770409.033249] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770409.238783] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770409.443935] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770409.649160] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770409.854678] 857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770410.059611] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770410.265586] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770410.471965] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770410.677288] 20 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770410.883115] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421770411.088489] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770411.294673] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770411.500653] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770411.706080] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770411.911625] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770412.116748] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770412.322869] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770412.528058] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770412.734916] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770412.940178] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770413.146741] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770413.352254] 27 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770413.558050] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421770413.763337] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770413.968621] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770414.175108] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770414.380698] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770414.586490] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770414.791878] 711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770414.998460] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770415.204196] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770415.409770] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770415.615666] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770415.821070] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770416.025646] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421770416.230823] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770416.435638] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770416.641648] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770416.846716] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770417.051660] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770417.257920] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770417.464849] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770417.670731] 415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770417.876525] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770418.081608] 391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770418.286497] 191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770418.491492] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770418.697874] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770418.903081] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770419.109081] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770419.314356] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770419.519619] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770419.726399] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770419.932632] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421770420.138059] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770420.344283] 1654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770420.550269] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770420.756196] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770420.961769] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770421.170793] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.98 ms +[1421770421.376181] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770421.582703] 1596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770421.788484] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770421.994341] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770422.199909] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770422.405332] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770422.610852] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770422.815886] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770423.021655] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421770423.226979] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770423.433201] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421770423.639598] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421770423.845173] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770424.049746] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770424.254377] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770424.459740] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770424.665483] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770424.871324] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770425.076392] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770425.281558] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770425.487844] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770425.694323] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421770425.899935] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770426.105736] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770426.311909] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770426.517324] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770426.722313] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770426.928727] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770427.134220] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770427.340489] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770427.546069] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770427.751395] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770427.957191] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770428.162730] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770428.367704] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770428.573816] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770428.781034] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.99 ms +[1421770428.987093] 806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.95 ms +[1421770429.192687] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770429.399216] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770429.605277] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770429.811516] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770430.016592] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770430.221998] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770430.427313] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770430.632732] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770430.837758] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770431.042740] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770431.247903] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770431.453373] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770431.658716] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770431.863550] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770432.069154] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770432.274238] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421770432.480383] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770432.685683] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770432.891407] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770433.096756] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770433.302716] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770433.509302] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770433.715078] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770433.921045] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770434.126198] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770434.331961] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770434.538818] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770434.743885] 627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770434.949501] 1441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421770435.155121] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770435.361147] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770435.566666] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.78 ms +[1421770435.771848] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770435.978247] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421770436.183795] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770436.388953] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770436.594280] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770436.800097] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770437.005515] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770437.210929] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770437.416058] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770437.622225] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770437.827479] 423 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770438.032187] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770438.237319] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770438.442917] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770438.648547] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770438.854624] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770439.060804] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770439.265891] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770439.472290] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421770439.677878] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770439.883435] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770440.088988] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770440.294285] 1173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770440.499783] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770440.705239] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770440.910467] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421770441.116399] 1713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770441.321802] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770441.526854] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770441.732544] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770441.938023] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770442.143968] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770442.349531] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770442.555265] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770442.761560] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770442.966718] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770443.173467] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms +[1421770443.378971] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770443.584437] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770443.789824] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770443.995700] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770444.202331] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770444.408466] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770444.613357] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770444.819546] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770445.024774] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770445.229911] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770445.435360] 1385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770445.640793] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770445.847137] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770446.052130] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770446.257040] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770446.462131] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770446.667445] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770446.874432] 1964 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770447.081217] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.86 ms +[1421770447.286588] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770447.492373] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770447.697622] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770447.904172] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770448.109839] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770448.315223] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770448.520531] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770448.725955] 555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770448.932268] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421770449.137414] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770449.344315] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.88 ms +[1421770449.549448] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770449.773970] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.4 ms +[1421770449.990841] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421770450.203557] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.72 ms +[1421770450.422636] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421770450.646550] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421770450.870473] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.1 ms +[1421770451.075241] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770451.280227] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770451.486641] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770451.694866] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.56 ms +[1421770451.905053] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.73 ms +[1421770452.118306] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.53 ms +[1421770452.330297] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.70 ms +[1421770452.547788] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421770452.767618] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms +[1421770453.045473] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.0 ms +[1421770453.250993] 155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770453.471009] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.1 ms +[1421770453.676684] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770453.883260] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421770454.088465] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770454.293554] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770454.503208] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.62 ms +[1421770454.736368] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.1 ms +[1421770454.951723] 592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.2 ms +[1421770455.204902] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.5 ms +[1421770455.421738] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.7 ms +[1421770455.627520] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770455.832838] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770456.038176] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421770456.243437] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770456.449011] 426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770456.654726] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770456.860822] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770457.066177] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770457.272678] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770457.477592] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770457.682971] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770457.889096] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770458.094822] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770458.299993] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770458.505432] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770458.710399] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770458.916762] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770459.122314] 1476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770459.328270] 1752 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770459.533389] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770459.738730] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770459.945000] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770460.151257] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770460.357215] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421770460.562485] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770460.767840] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770460.973460] 1415 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770461.179269] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770461.386304] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770461.591927] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770461.797256] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770462.002644] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770462.208006] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770462.413230] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770462.618458] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770462.824136] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770463.030022] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770463.235000] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770463.440428] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770463.647025] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770463.852825] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770464.057313] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770464.263642] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421770464.477036] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.26 ms +[1421770464.681776] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770464.887042] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770465.092958] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770465.298393] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770465.503836] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770465.709243] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770465.914303] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770466.119369] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770466.325924] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770466.532565] 1530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770466.739009] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770466.944195] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770467.149493] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770467.354973] 236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770467.560831] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770467.767106] 1780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770467.972080] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770468.178078] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770468.384125] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770468.589971] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770468.796161] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421770469.002186] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770469.207675] 299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770469.413138] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770469.618941] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770469.823819] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770470.028972] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770470.234439] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770470.441042] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770470.647750] 1659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770470.853214] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770471.058111] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770471.263761] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770471.470255] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770471.676634] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770471.883387] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770472.088801] 1026 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770472.293962] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770472.499594] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770472.705430] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770472.910936] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770473.117787] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.63 ms +[1421770473.323103] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770473.528447] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770473.733568] 1402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770473.938749] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770474.144667] 1652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770474.349928] 1458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770474.555019] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770474.761532] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770474.966519] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770475.171410] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770475.376653] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770475.583619] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.74 ms +[1421770475.789711] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770475.995483] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770476.201048] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770476.406461] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770476.612850] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770476.818236] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770477.023927] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770477.229323] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770477.434674] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770477.640383] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770477.846419] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770478.051029] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770478.255995] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770478.461777] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770478.667229] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770478.874158] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770479.079297] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770479.284057] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770479.489193] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770479.694574] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770479.900028] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770480.106423] 1860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421770480.312736] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770480.517824] 1447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770480.723206] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770480.929476] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770481.134856] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770481.340570] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770481.546307] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770481.752082] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770481.957771] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770482.163187] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770482.368841] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770482.574490] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770482.779835] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770482.986205] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770483.191914] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770483.397135] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770483.602823] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770483.808101] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770484.012718] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770484.218788] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770484.425145] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421770484.630513] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770484.836046] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770485.040862] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770485.246030] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770485.450870] 788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770485.657328] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770485.862511] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770486.068329] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770486.273589] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770486.478701] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770486.683952] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770486.889468] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770487.094532] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770487.299688] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770487.504515] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770487.710342] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770487.916331] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770488.121387] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770488.326704] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770488.532307] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770488.738282] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770488.943084] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770489.148193] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770489.353417] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770489.558649] 99 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770489.763731] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770489.968336] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770490.172970] 109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770490.378194] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770490.586554] 1665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.40 ms +[1421770490.792219] 1230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770490.998562] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770491.203978] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770491.410186] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770491.616217] 1976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770491.821408] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770492.027178] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770492.232318] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770492.437681] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770492.643350] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770492.848571] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770493.054485] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770493.259894] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770493.465424] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770493.671201] 185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770493.876682] 273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770494.083147] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421770494.303867] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421770494.530959] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421770494.816084] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.7 ms +[1421770495.021269] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770495.226094] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770495.431178] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770495.636445] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770495.843101] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421770496.048519] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770496.253558] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421770496.459244] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421770496.663999] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770496.868820] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770497.073542] 869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770497.278412] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770497.483894] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770497.689460] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770497.895142] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770498.101462] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770498.306779] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770498.512206] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770498.718265] 1566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770498.923730] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770499.129311] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770499.335433] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770499.540940] 367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770499.746695] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770499.951880] 272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770500.157156] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770500.362912] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770500.568777] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770500.774424] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770500.979864] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770501.185188] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770501.391124] 1931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770501.595813] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770501.802342] 1769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770502.007290] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770502.213110] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770502.417967] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770502.622397] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770502.828157] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421770503.035174] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770503.241799] 1741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770503.447297] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770503.653294] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770503.859579] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.05 ms +[1421770504.065519] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770504.270817] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421770504.475479] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770504.680111] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770504.889711] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770505.097961] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770505.303076] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770505.507749] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770505.712278] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770505.917814] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421770506.123082] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770506.328000] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770506.533218] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770506.746095] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.92 ms +[1421770506.951739] 1039 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770507.156666] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770507.361946] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770507.567822] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770507.773150] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770507.978631] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770508.185318] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770508.391833] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770508.597159] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770508.803350] 1870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770509.008966] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770509.214255] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770509.420597] 1612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770509.625304] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770509.830899] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770510.036733] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770510.241676] 1100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770510.446728] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770510.653160] 1672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770510.858595] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770511.065213] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421770511.270899] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770511.475829] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770511.681220] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770511.886707] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770512.091743] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770512.297240] 1397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770512.503299] 898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.92 ms +[1421770512.710748] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.05 ms +[1421770512.916046] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770513.121745] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421770513.327257] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770513.533811] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770513.739827] 1133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770513.945837] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421770514.151640] 1305 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770514.357649] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770514.563385] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770514.769109] 1999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421770514.974125] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770515.179942] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770515.384397] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770515.589212] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770515.795054] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770516.001360] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421770516.207081] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770516.412638] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770516.618335] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770516.823499] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770517.028187] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770517.234614] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770517.439620] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770517.645020] 1016 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770517.850040] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770518.055012] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770518.259688] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770518.464906] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770518.670099] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770518.876604] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770519.082319] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770519.286999] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770519.491872] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770519.697654] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421770519.903372] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421770520.110090] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.96 ms +[1421770520.315557] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770520.520904] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770520.726657] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770520.932025] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770521.139054] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.79 ms +[1421770521.344575] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770521.549978] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770521.755342] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770521.960428] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770522.171410] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.61 ms +[1421770522.376026] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770522.580615] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770522.786854] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770522.993334] 1528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770523.198816] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421770523.404026] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770523.610790] 1637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.72 ms +[1421770523.816393] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770524.022556] 720 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms +[1421770524.228254] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770524.433267] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770524.639400] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770524.845148] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770525.050272] 1307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770525.255470] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770525.461532] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770525.667283] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770525.880842] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.26 ms +[1421770526.093410] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.33 ms +[1421770526.298744] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770526.505590] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770526.730646] 1625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421770526.935733] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770527.140762] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770527.346003] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770527.551422] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770527.757829] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770527.964415] 1794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770528.169094] 131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770528.374390] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770528.579949] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770528.785624] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770528.992069] 539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421770529.198612] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.69 ms +[1421770529.404968] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770529.611211] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770529.817580] 1837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421770530.024012] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770530.229013] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770530.433988] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770530.638761] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770530.844426] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770531.049379] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770531.254062] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770531.459338] 982 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770531.664785] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770531.871261] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770532.077152] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770532.281924] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770532.488184] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770532.693812] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421770532.898649] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770533.103284] 151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770533.308119] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770533.512830] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770533.717869] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770533.923426] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770534.128943] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770534.334913] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770534.540172] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770534.745397] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770534.950482] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770535.156173] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770535.361418] 648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770535.567257] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770535.773199] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770535.978834] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421770536.192670] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.4 ms +[1421770536.397764] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770536.602552] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770536.808269] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770537.013189] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770537.219461] 1561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770537.424899] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770537.630186] 1075 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770537.835473] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770538.040629] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770538.247293] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770538.453257] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770538.659462] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770538.865893] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770539.071798] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770539.277225] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770539.482660] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770539.689496] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770539.895222] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770540.101724] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770540.306828] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770540.512353] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421770540.717286] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770540.922599] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770541.128144] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770541.334590] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.60 ms +[1421770541.539338] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770541.744676] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770541.949937] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770542.155068] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770542.360209] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770542.565454] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770542.770582] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770542.976534] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770543.182069] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770543.388888] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.81 ms +[1421770543.594657] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770543.800717] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770544.005780] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770544.211689] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770544.416958] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770544.622277] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770544.828047] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770545.033178] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770545.238383] 1058 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770545.443144] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770545.647902] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770545.853247] 1075 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770546.058590] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770546.263405] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770546.468585] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770546.673496] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770546.878797] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770547.083776] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770547.289865] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770547.495017] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770547.700017] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770547.904907] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770548.109825] 529 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770548.315992] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770548.521353] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770548.727670] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770548.933021] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770549.138439] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770549.343637] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770549.548735] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770549.755069] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421770549.960779] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770550.167524] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770550.372393] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421770550.577664] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770550.786909] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.45 ms +[1421770550.993547] 1492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770551.218840] 1617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.1 ms +[1421770551.424034] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421770551.632359] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.53 ms +[1421770551.837718] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770552.044048] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770552.250320] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770552.455409] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770552.660705] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770552.865682] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770553.070537] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770553.275372] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770553.480576] 283 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770553.686995] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770553.892301] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770554.097624] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770554.303096] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770554.508297] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770554.713583] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770554.920261] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770555.126093] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770555.331583] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770555.537047] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421770555.742909] 1479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770555.948991] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770556.155411] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770556.360571] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770556.565937] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770556.771939] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.87 ms +[1421770556.979096] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.85 ms +[1421770557.184645] 885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770557.389721] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770557.595931] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770557.802512] 1824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770558.009258] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770558.214543] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770558.419529] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770558.624793] 16 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770558.831169] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770559.037672] 1481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421770559.242979] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770559.448830] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770559.654357] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770559.859328] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770560.065005] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770560.270293] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770560.475529] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770560.681337] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770560.887861] 1542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770561.093433] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770561.300261] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770561.505375] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770561.710712] 775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770561.915593] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770562.120707] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770562.325877] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770562.530947] 212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770562.736648] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770562.941555] 767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770563.147651] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421770563.352471] 669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770563.557198] 282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770563.763177] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770563.968008] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770564.172762] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770564.378116] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770564.583405] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770564.788853] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770564.993896] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770565.198817] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770565.405333] 1559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770565.611243] 586 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770565.816528] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770566.021670] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770566.227720] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770566.433506] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770566.639946] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770566.845522] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770567.050763] 813 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770567.256039] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770567.461144] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770567.666195] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770567.871951] 709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770568.077330] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770568.282393] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770568.487826] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770568.694317] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770568.899953] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770569.105643] 1513 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770569.310842] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770569.517278] 1592 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770569.723784] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770569.930083] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770570.134782] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770570.341077] 1867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770570.546128] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770570.751486] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770570.956570] 517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770571.162012] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770571.368410] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770571.574426] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770571.780117] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770571.986864] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421770572.193541] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421770572.402432] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.43 ms +[1421770572.612509] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.40 ms +[1421770572.853501] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.9 ms +[1421770573.109412] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=51.7 ms +[1421770573.331704] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.1 ms +[1421770573.559246] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421770573.778775] 22 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770573.984988] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421770574.191052] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770574.396332] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770574.602047] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770574.808764] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770575.014282] 1431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770575.220050] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770575.424853] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770575.630224] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770575.837273] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.93 ms +[1421770576.055762] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421770576.288957] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=29.7 ms +[1421770576.499172] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.19 ms +[1421770576.718106] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421770576.942421] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms +[1421770577.166008] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms +[1421770577.392428] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.3 ms +[1421770577.597992] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770577.803683] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770578.012888] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.69 ms +[1421770578.222610] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.78 ms +[1421770578.462559] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=36.0 ms +[1421770578.679283] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.5 ms +[1421770578.885635] 1807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770579.091056] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770579.296072] 690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770579.501336] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770579.707037] 1215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770579.913666] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421770580.120234] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770580.325362] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770580.530197] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770580.735218] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770580.940114] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770581.146276] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770581.352240] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770581.557669] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770581.763200] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770581.968715] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770582.175564] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770582.380900] 296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770582.585854] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770582.790829] 1306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770582.996062] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770583.201813] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421770583.407345] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421770583.613661] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770583.818741] 769 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770584.023791] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770584.229088] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770584.434068] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770584.640316] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770584.845925] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770585.051277] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770585.256270] 1466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421770585.461774] 854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770585.667295] 996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770585.873749] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770586.079136] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770586.283942] 1262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770586.488641] 1289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770586.694796] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770586.900257] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770587.106618] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770587.311225] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770587.516499] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770587.721315] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770587.926249] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770588.132388] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770588.337332] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770588.543612] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770588.749702] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770588.955722] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770589.160910] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770589.367073] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421770589.572836] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770589.778409] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770589.984122] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770590.189293] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770590.395035] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770590.600472] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770590.805136] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770591.009958] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770591.215201] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770591.420073] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770591.625190] 649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770591.831485] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770592.037195] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770592.242615] 1044 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770592.448473] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770592.654236] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770592.860560] 1618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770593.067000] 1694 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770593.271946] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770593.477017] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770593.683342] 1956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770593.888838] 562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770594.093447] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770594.298639] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770594.503652] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770594.709942] 1685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770594.915962] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421770595.121565] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770595.327219] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770595.533041] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770595.738735] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770595.945110] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421770596.151614] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770596.356831] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770596.562439] 1116 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770596.767830] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770596.973235] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770597.179010] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770597.385838] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770597.591404] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770597.797174] 1023 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770598.003468] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770598.208748] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770598.414647] 1147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770598.621170] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.06 ms +[1421770598.826242] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770599.031332] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770599.237500] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770599.443952] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770599.651070] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421770599.856947] 397 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770600.061931] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770600.266879] 121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770600.473624] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770600.679202] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770600.884561] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770601.090832] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770601.296110] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770601.502196] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770601.707099] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770601.912083] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770602.117228] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770602.322048] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770602.529995] 1643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.08 ms +[1421770602.735706] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770602.941232] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770603.146697] 1063 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770603.352370] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421770603.558761] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770603.763959] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770603.969401] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770604.175876] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770604.380873] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770604.586013] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770604.790757] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770604.995566] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770605.200676] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770605.406365] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421770605.611786] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770605.817023] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770606.021980] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770606.227646] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770606.433086] 993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770606.639074] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770606.845863] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770607.050368] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770607.255386] 210 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770607.460721] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770607.665795] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770607.870897] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770608.075400] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770608.281847] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421770608.487562] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770608.693013] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770608.898549] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770609.103637] 1001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770609.308661] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770609.514232] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770609.719401] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770609.925771] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770610.131298] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770610.336751] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770610.542400] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770610.748667] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770610.955008] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770611.160880] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421770611.366973] 1885 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770611.572244] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770611.777834] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770611.983811] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770612.190220] 1942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770612.395881] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770612.601740] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770612.807551] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770613.012933] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770613.218226] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770613.423263] 1366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770613.628050] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770613.834201] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770614.039516] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770614.244653] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770614.451130] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770614.657010] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770614.863771] 1731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770615.068734] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770615.273553] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770615.478992] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770615.685488] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770615.890552] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770616.096299] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770616.301010] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770616.505715] 302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770616.710385] 975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770616.915076] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770617.120856] 1635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421770617.326252] 847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421770617.531987] 1256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421770617.737217] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421770617.942545] 1261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770618.147698] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770618.352706] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770618.557802] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770618.762784] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770618.968826] 1847 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421770619.173897] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770619.379272] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770619.584221] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770619.788988] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770619.993875] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770620.198827] 1155 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770620.404195] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770620.609774] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.70 ms +[1421770620.815567] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770621.020686] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770621.226082] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770621.432279] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770621.638618] 1845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770621.845221] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770622.050947] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770622.256350] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770622.462563] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770622.668650] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770622.873833] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770623.079688] 1889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770623.285089] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770623.490553] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770623.695917] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770623.901210] 202 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770624.107073] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770624.313363] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770624.518171] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770624.722766] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770624.927894] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770625.133338] 259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770625.339808] 1888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770625.545221] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770625.750365] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770625.955398] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770626.160610] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770626.365704] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770626.571215] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770626.778203] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421770626.983511] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770627.188634] 617 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770627.393911] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770627.598650] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770627.803802] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770628.009373] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770628.214786] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770628.420477] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770628.625568] 1334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770628.831052] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770629.035560] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770629.240536] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770629.446669] 1913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770629.652970] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770629.858244] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770630.064184] 1669 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770630.268818] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770630.474188] 228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770630.679201] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770630.884190] 37 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770631.088944] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770631.294634] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770631.500912] 1959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770631.706037] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770631.911134] 601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770632.115977] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770632.321120] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770632.526294] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770632.732529] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770632.938816] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770633.143806] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770633.350401] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421770633.556220] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421770633.762784] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770633.968103] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770634.173023] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770634.378613] 724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770634.585083] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421770634.791311] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770634.997210] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421770635.202030] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770635.407480] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770635.613947] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770635.819009] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770636.023753] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770636.228900] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770636.434573] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770636.640930] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770636.846163] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770637.052088] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770637.257210] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770637.463242] 1985 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770637.668526] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770637.873437] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770638.078671] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770638.284502] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770638.496816] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.21 ms +[1421770638.701978] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770638.908199] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770639.114643] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770639.320473] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421770639.525411] 747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770639.750476] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421770639.955726] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770640.164163] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.77 ms +[1421770640.369673] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770640.596479] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms +[1421770640.802195] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770641.007809] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770641.213345] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770641.419126] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770641.624807] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770641.829800] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770642.035468] 1488 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421770642.241567] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770642.447142] 1096 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770642.653195] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770642.861408] 1143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.07 ms +[1421770643.083567] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.2 ms +[1421770643.329712] 1690 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.2 ms +[1421770643.542078] 1455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.20 ms +[1421770643.752354] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770643.958196] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770644.163429] 474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770644.368516] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770644.574675] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770644.779702] 422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770644.984491] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770645.189418] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770645.394983] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770645.601318] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421770645.814049] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.36 ms +[1421770646.027531] 814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.85 ms +[1421770646.240309] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.72 ms +[1421770646.445851] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770646.651020] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770646.863320] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.25 ms +[1421770647.068711] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770647.273353] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770647.479730] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770647.686273] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770647.891976] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770648.097522] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770648.303195] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770648.508964] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770648.713983] 390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770648.919239] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770649.124882] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770649.331184] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770649.537850] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770649.744077] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421770649.950601] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770650.155751] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770650.361039] 354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770650.566449] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770650.771957] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770650.976832] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770651.181743] 655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770651.387066] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770651.591927] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770651.797157] 310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770652.001924] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770652.206843] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770652.412113] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770652.618544] 1916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770652.823963] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770653.029124] 1048 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770653.234324] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770653.439997] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770653.645328] 213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770653.851479] 1724 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770654.057623] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770654.263681] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770654.468989] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770654.675318] 1545 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770654.880213] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770655.084967] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770655.290353] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770655.496879] 1798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770655.702508] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770655.908619] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770656.114345] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.93 ms +[1421770656.319250] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770656.524621] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770656.729824] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770656.934973] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770657.140559] 1233 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770657.345644] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770657.550953] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770657.757461] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770657.962764] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770658.168856] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770658.374028] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770658.578892] 656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770658.785163] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770658.990424] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770659.195557] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770659.401503] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770659.607313] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770659.813214] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770660.019400] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770660.225078] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770660.429822] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770660.636225] 774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.69 ms +[1421770660.841290] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770661.046102] 455 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770661.251260] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770661.457270] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770661.662418] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770661.867472] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770662.073794] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421770662.279112] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421770662.484433] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770662.689671] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770662.894824] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770663.100505] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770663.305892] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770663.511142] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770663.716738] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770663.922906] 1716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770664.130113] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770664.337667] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421770664.544370] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770664.750711] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421770664.956298] 340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770665.161630] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770665.366571] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770665.571840] 859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770665.777487] 1125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770665.984184] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770666.190984] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770666.397709] 1806 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421770666.604412] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770666.809870] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770667.015216] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770667.220698] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770667.425872] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770667.631511] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770667.836859] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770668.043674] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421770668.250134] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770668.455173] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770668.660720] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770668.866179] 837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770669.071285] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770669.276620] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770669.481693] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770669.687091] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770669.893706] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770670.100302] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770670.305308] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770670.510442] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770670.715673] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770670.920954] 916 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770671.126649] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770671.332331] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770671.537912] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770671.743170] 1040 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770671.948706] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770672.155467] 1607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770672.360694] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770672.567475] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770672.774084] 1980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770672.979562] 1386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770673.184975] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770673.390584] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770673.595939] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770673.803696] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.46 ms +[1421770674.009104] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770674.214540] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770674.420389] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770674.624952] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770674.829872] 433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770675.035104] 1084 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770675.240218] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770675.446092] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770675.651588] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770675.856966] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770676.061484] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770676.266504] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770676.471853] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770676.677047] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770676.882512] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770677.089234] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770677.295375] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770677.501227] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770677.706963] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421770677.913316] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421770678.118820] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770678.324729] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421770678.530406] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770678.735829] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770678.942137] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770679.147535] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770679.352799] 1118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770679.583704] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.8 ms +[1421770679.788822] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770679.993899] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421770680.206987] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.83 ms +[1421770680.412350] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770680.670318] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=53.9 ms +[1421770680.916803] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=42.3 ms +[1421770681.125785] 904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.36 ms +[1421770681.331241] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770681.543955] 921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.32 ms +[1421770681.750242] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms +[1421770681.956050] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770682.161102] 585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770682.365815] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770682.572708] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.78 ms +[1421770682.778183] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770682.987062] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.07 ms +[1421770683.192621] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770683.398686] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421770683.604716] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770683.811203] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770684.017790] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770684.222774] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770684.429003] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770684.635223] 611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770684.840919] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770685.046257] 403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770685.252256] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770685.457598] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770685.678682] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.8 ms +[1421770685.884047] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421770686.089767] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770686.295278] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770686.501280] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770686.706791] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770686.920820] 559 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.87 ms +[1421770687.157167] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=32.5 ms +[1421770687.362169] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770687.567681] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770687.773118] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770687.994303] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.2 ms +[1421770688.199697] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770688.417114] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.2 ms +[1421770688.623167] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770688.828484] 289 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770689.033028] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770689.238218] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770689.443472] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770689.649880] 1933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770689.856526] 1775 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770690.061710] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770690.267665] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770690.472843] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770690.678506] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770690.883675] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770691.089320] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770691.294993] 811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770691.501583] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770691.708218] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770691.913658] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770692.119083] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770692.323939] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421770692.529168] 840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770692.734788] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770692.941050] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421770693.149142] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.87 ms +[1421770693.354450] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770693.560421] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770693.767040] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770693.972175] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770694.177559] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770694.383770] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770694.589442] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770694.795407] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770695.002772] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.72 ms +[1421770695.208480] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770695.414027] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770695.619709] 677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770695.825227] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770696.030216] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770696.235692] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770696.440679] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770696.645840] 990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770696.851858] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421770697.056949] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770697.262112] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770697.467608] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770697.673096] 10 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770697.878589] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770698.083590] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770698.289014] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770698.495443] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770698.701808] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770698.908884] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770699.114868] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770699.319915] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770699.525136] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770699.730203] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770699.936559] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770700.141622] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770700.347969] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770700.553646] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770700.759364] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770700.965319] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770701.170821] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770701.380720] 599 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.89 ms +[1421770701.586936] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421770701.791930] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770701.998339] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770702.204030] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770702.409384] 1049 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770702.615264] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770702.820645] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770703.025984] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770703.231367] 935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770703.437083] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770703.642565] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770703.847885] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770704.053092] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770704.258448] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770704.464917] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770704.670696] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770704.876328] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770705.081005] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770705.286385] 874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770705.492259] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770705.698957] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770705.905192] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770706.110666] 258 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770706.315877] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770706.522590] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770706.728206] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770706.933848] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770707.138926] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770707.344220] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770707.549480] 1211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770707.755491] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770707.961296] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770708.167339] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770708.372509] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770708.578867] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770708.786298] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.94 ms +[1421770708.993025] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770709.198800] 1372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770709.408118] 1276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.58 ms +[1421770709.613571] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770709.819759] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770710.026433] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421770710.232713] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770710.437913] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770710.649911] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.02 ms +[1421770710.854881] 293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770711.060783] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770711.266206] 1244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770711.471315] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770711.676787] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770711.882668] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770712.087959] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770712.292955] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770712.498307] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770712.703999] 1274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770712.909813] 837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770713.115448] 623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770713.321604] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421770713.526885] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770713.731905] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770713.937200] 777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770714.142486] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770714.348414] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770714.553452] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770714.758714] 641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770714.964087] 50 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770715.168892] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770715.374538] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770715.580911] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770715.786362] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770715.991934] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770716.197319] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770716.402472] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770716.607928] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770716.814387] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770717.019089] 681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770717.225403] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421770717.431799] 1892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770717.636948] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770717.842727] 930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770718.048084] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770718.253667] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770718.459649] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770718.665344] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770718.871869] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770719.076870] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770719.282087] 900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770719.487178] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770719.692318] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770719.897371] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770720.101964] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770720.307032] 555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770720.513119] 1817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770720.718510] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770720.924581] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770721.129047] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421770721.334470] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770721.539670] 198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770721.745515] 1021 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421770721.950842] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770722.155922] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770722.360852] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770722.565709] 171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770722.770927] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770722.976471] 173 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770723.181811] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770723.386802] 615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770723.591687] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770723.796745] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770724.003296] 1792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770724.208558] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770724.413762] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770724.619897] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770724.826319] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421770725.031398] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770725.236543] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770725.442092] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770725.647444] 1029 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770725.853815] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770726.058990] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770726.264221] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770726.469591] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770726.675471] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770726.880613] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770727.086393] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770727.291617] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770727.497134] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770727.703102] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770727.908899] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770728.114681] 1777 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770728.319975] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770728.525663] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770728.731564] 732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770728.937708] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770729.144154] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770729.350164] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770729.555524] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770729.761047] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770729.967264] 1609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770730.172735] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770730.377769] 90 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770730.583756] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770730.789476] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770730.995367] 380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421770731.200487] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770731.406294] 728 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770731.612058] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770731.817879] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770732.022874] 149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770732.229103] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770732.435281] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770732.640559] 971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770732.845993] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770733.050578] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770733.255769] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770733.461279] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770733.668354] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770733.873856] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770734.079232] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770734.284140] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770734.489692] 274 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770734.695227] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770734.901504] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421770735.107823] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770735.313083] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770735.518183] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770735.723558] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770735.930131] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770736.135620] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770736.340761] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770736.547665] 1887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770736.753718] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770736.960234] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770737.165015] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770737.370169] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770737.575413] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770737.780905] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770737.986337] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770738.191853] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770738.397434] 315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770738.603422] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770738.811128] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.28 ms +[1421770739.017412] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770739.223000] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770739.428588] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770739.634150] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770739.840735] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770740.046644] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421770740.251511] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770740.456752] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770740.663489] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770740.868912] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770741.073686] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770741.278806] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770741.484309] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770741.690755] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770741.914424] 1796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.0 ms +[1421770742.120077] 1820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770742.326095] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770742.530931] 625 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770742.737699] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.95 ms +[1421770742.945360] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.81 ms +[1421770743.150377] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770743.355676] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770743.603844] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.3 ms +[1421770743.819369] 746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421770744.060425] 1808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=37.6 ms +[1421770744.278265] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.7 ms +[1421770744.491041] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.24 ms +[1421770744.696126] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770744.900907] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421770745.107196] 1918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770745.312249] 355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770745.517416] 1088 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770745.722655] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770745.928646] 1064 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770746.141476] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.48 ms +[1421770746.353732] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.16 ms +[1421770746.559354] 630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770746.764791] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770746.970330] 789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770747.175489] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770747.385662] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.36 ms +[1421770747.590866] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770747.796689] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770748.001813] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770748.207080] 1065 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770748.421325] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421770748.626202] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770748.831674] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770749.036150] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770749.241212] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770749.446644] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770749.652593] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770749.857794] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421770750.062514] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770750.267213] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770750.472278] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770750.677756] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770750.883265] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770751.088523] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770751.293878] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770751.499668] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770751.711457] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.30 ms +[1421770751.916845] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770752.122148] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770752.327282] 744 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770752.533696] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770752.738869] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770752.943315] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770753.149468] 1531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770753.355442] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421770753.560814] 1279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770753.766065] 211 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770753.971320] 653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770754.177329] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770754.382631] 342 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770754.587586] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770754.792910] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770754.998067] 688 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770755.204350] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421770755.410072] 687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770755.615262] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770755.822167] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.73 ms +[1421770756.027437] 453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770756.233555] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770756.439126] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770756.644359] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770756.851281] 1968 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770757.056573] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770757.262070] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770757.467075] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770757.672135] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770757.877337] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770758.083634] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770758.288743] 334 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770758.493714] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770758.699816] 1537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770758.905166] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770759.110435] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770759.315658] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770759.521208] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770759.727902] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770759.933287] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770760.139401] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770760.344656] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770760.550137] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770760.755742] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770760.961088] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770761.165938] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770761.371456] 1198 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770761.576301] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770761.781551] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770761.988217] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421770762.194506] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770762.400963] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770762.607091] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770762.813074] 1193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770763.021629] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.35 ms +[1421770763.231744] 410 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.99 ms +[1421770763.446845] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421770763.652603] 438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770763.859079] 1884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770764.065052] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770764.270046] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770764.476803] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770764.682144] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770764.887380] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770765.092253] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770765.297409] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770765.503734] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770765.709426] 748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770765.915158] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770766.121991] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms +[1421770766.327187] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770766.532782] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770766.737932] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770766.943272] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770767.149106] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770767.354143] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770767.560680] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770767.765934] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770767.971399] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770768.176768] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770768.382858] 1491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770768.588160] 1330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770768.793338] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770768.998916] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770769.205463] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770769.410911] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770769.616774] 701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770769.823470] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770770.028666] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770770.234176] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770770.439442] 175 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770770.644394] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421770770.850574] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421770771.055709] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770771.261872] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770771.468388] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770771.674900] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770771.880777] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770772.086017] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770772.291491] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770772.497077] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770772.703466] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770772.908552] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421770773.113407] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770773.318781] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770773.525493] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770773.731263] 337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770773.937865] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770774.143221] 1201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770774.348216] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770774.553505] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770774.758878] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770774.963724] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770775.169884] 1667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770775.375523] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770775.580949] 115 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770775.785630] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421770775.991593] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770776.197571] 1653 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770776.403810] 1657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770776.608975] 495 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770776.815796] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770777.021086] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770777.226148] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770777.431945] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770777.637926] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770777.844735] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770778.050868] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770778.255830] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770778.461174] 580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770778.666814] 331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770778.872058] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770779.076767] 392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770779.282233] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770779.489278] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770779.694700] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770779.900118] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770780.105082] 161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770780.310441] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770780.516800] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770780.722490] 1026 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770780.929034] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770781.134593] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770781.339887] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770781.556532] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.2 ms +[1421770781.761753] 1222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770781.966927] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770782.172161] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770782.377618] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770782.582806] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770782.788237] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770782.993866] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770783.199459] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770783.405036] 1027 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770783.612270] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421770783.817961] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770784.022582] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770784.227697] 1133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770784.432644] 582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770784.637832] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421770784.844419] 1601 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770785.048931] 865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770785.254217] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770785.459939] 622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770785.665029] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770785.870451] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770786.075482] 576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770786.280646] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770786.485828] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770786.691456] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770786.897471] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770787.102215] 214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770787.308308] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770787.514520] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770787.719858] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770787.926004] 1522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421770788.131664] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770788.337490] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770788.542840] 244 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770788.748056] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770788.954394] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421770789.159716] 309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770789.364983] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770789.570534] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770789.775990] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770789.981161] 61 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770790.186467] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770790.393084] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770790.598490] 568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770790.805049] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770791.010407] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770791.216624] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770791.421932] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770791.627091] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770791.832641] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770792.037495] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.02 ms +[1421770792.242895] 1103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770792.448757] 1560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.07 ms +[1421770792.654030] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770792.859451] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770793.065716] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770793.270952] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770793.476750] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms +[1421770793.682326] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770793.887635] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770794.093500] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770794.298955] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770794.504522] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770794.709852] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770794.915646] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770795.121576] 1303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770795.327076] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770795.532108] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770795.737225] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770795.943038] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421770796.148466] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770796.354881] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421770796.561885] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770796.766887] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770796.973493] 1911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770797.178776] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770797.383779] 247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770797.589787] 1638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770797.794912] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770798.000920] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421770798.206467] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770798.411535] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770798.616790] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770798.822154] 618 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770799.027415] 499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770799.233613] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770799.439046] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770799.645835] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421770799.851809] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421770800.056493] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770800.262429] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770800.467648] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770800.672997] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770800.878154] 680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770801.083059] 1261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770801.288069] 459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770801.493940] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770801.699728] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770801.904928] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770802.109731] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770802.316012] 1705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770802.521858] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770802.728360] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770802.934248] 1347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770803.139280] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770803.346347] 1648 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421770803.552069] 98 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770803.757869] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770803.964314] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770804.171020] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770804.377096] 880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770804.583619] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770804.788965] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770804.994659] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770805.200448] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770805.405151] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770805.611031] 1550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770805.817481] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770806.022312] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770806.227346] 180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770806.432482] 35 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770806.637394] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770806.842532] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770807.047478] 755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770807.252740] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770807.458310] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770807.664675] 1621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770807.869986] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770808.074838] 872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770808.280016] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770808.485602] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770808.691060] 768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770808.896920] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770809.101847] 571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770809.307212] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770809.514152] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770809.721073] 1580 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770809.926965] 1237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770810.132657] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770810.339481] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770810.544693] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770810.750423] 1605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770810.955767] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770811.161155] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770811.366646] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770811.571562] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770811.776268] 19 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770811.981462] 165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770812.186843] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421770812.393726] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421770812.599601] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770812.804668] 231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770813.011437] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770813.216734] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770813.422132] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770813.629220] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770813.834967] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770814.040035] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770814.245600] 821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770814.453087] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms +[1421770814.660231] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770814.866615] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770815.071351] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770815.276530] 749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770815.482599] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770815.687944] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770815.893691] 500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770816.098464] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770816.304795] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421770816.510544] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms +[1421770816.727679] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421770816.932644] 988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770817.137833] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770817.343406] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770817.549782] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770817.755306] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770817.961168] 486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770818.166433] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770818.371776] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770818.578067] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770818.784594] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770818.989817] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770819.194729] 1292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770819.400059] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770819.605767] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770819.811687] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770820.016806] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770820.221733] 696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770820.427958] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770820.634258] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770820.839724] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770821.045708] 1615 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421770821.251022] 1238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770821.457311] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770821.663807] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770821.869620] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770822.074956] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421770822.281629] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421770822.488173] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421770822.693649] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770822.899948] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770823.104720] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770823.309818] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770823.515879] 1524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770823.722474] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770823.928065] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770824.133898] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770824.339004] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770824.544101] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770824.749250] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770824.954766] 1432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770825.160623] 1392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770825.366023] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770825.571382] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770825.776234] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770825.981792] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770826.187527] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770826.394190] 1587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.72 ms +[1421770826.600054] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421770826.805782] 1130 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770827.011748] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421770827.217966] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770827.424545] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770827.631219] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770827.836623] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770828.041466] 1206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770828.246525] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770828.452015] 564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770828.657833] 1471 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770828.864530] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770829.070263] 1558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421770829.275682] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770829.482685] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770829.688376] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770829.894172] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770830.098849] 25 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770830.304132] 914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770830.511235] 1814 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421770830.717234] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770830.923829] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770831.128971] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770831.335325] 1736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770831.541099] 1297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770831.747030] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421770831.952700] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770832.158246] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770832.363429] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770832.568828] 102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.02 ms +[1421770832.775185] 1878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770832.981948] 1776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770833.187821] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770833.393347] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770833.598834] 440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770833.804981] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770834.010201] 1025 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770834.215942] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770834.421958] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770834.627163] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770834.832241] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770835.036846] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770835.242454] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770835.448992] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770835.653954] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770835.861997] 567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.09 ms +[1421770836.073373] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.79 ms +[1421770836.279785] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421770836.485538] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770836.690857] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770836.896672] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770837.102284] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770837.307423] 17 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770837.512893] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770837.718651] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770837.925366] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770838.131027] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770838.336440] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770838.541980] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770838.747168] 958 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770838.953367] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770839.158166] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770839.363436] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770839.570089] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770839.775921] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770839.981380] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770840.186225] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770840.392539] 1670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421770840.598548] 1519 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770840.803765] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770841.010485] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421770841.216784] 1992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770841.430877] 1799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.3 ms +[1421770841.636878] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770841.843147] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770842.048302] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770842.253298] 54 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770842.458747] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770842.664494] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770842.870872] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770843.076704] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770843.282189] 1184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421770843.487315] 203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770843.692468] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770843.899217] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421770844.105427] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770844.310171] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421770844.515312] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770844.721834] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770844.928241] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770845.133545] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770845.339008] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770845.547447] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.82 ms +[1421770845.777706] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.9 ms +[1421770846.012072] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=30.1 ms +[1421770846.231493] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421770846.454554] 1323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.7 ms +[1421770846.659995] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770846.866078] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770847.070986] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770847.276328] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770847.481533] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770847.686830] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770847.891683] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770848.096650] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770848.301700] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770848.507994] 1740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770848.713611] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770848.919461] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770849.125895] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770849.331693] 1104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770849.537537] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770849.743604] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770849.949190] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770850.154340] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770850.360699] 1849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770850.566830] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770850.773091] 1089 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770850.979188] 1225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770851.184648] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770851.390238] 674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770851.597263] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770851.803140] 1330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770852.009622] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770852.215974] 1908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770852.421649] 1199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770852.627142] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770852.833133] 1906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770853.037861] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770853.243507] 1031 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770853.448842] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770853.654783] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770853.860199] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770854.067229] 2007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770854.273683] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770854.479008] 804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770854.685499] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770854.891155] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770855.096291] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770855.302577] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770855.509560] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421770855.715379] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770855.921853] 1602 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770856.128051] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770856.334331] 1978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421770856.540138] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770856.749570] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.54 ms +[1421770856.955745] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770857.160916] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770857.366520] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770857.572251] 565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770857.777735] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770857.983843] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770858.189764] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770858.396417] 1709 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.71 ms +[1421770858.601877] 1425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421770858.807250] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770859.012901] 1356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770859.218314] 79 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770859.424602] 1544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770859.630049] 1344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770859.835441] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770860.041014] 1493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770860.245993] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770860.451329] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770860.657635] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421770860.863359] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770861.069525] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770861.274943] 715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770861.481150] 1353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421770861.687247] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770861.893008] 1223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770862.097456] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770862.303727] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770862.509621] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770862.715991] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770862.921247] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770863.127456] 1998 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770863.332779] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770863.538524] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770863.744530] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421770863.951120] 1972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770864.156489] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770864.361667] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770864.566980] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770864.773774] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770864.979914] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770865.185629] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770865.390859] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770865.596887] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770865.802229] 1112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770866.007352] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770866.212585] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770866.418170] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770866.623695] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770866.828882] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770867.033378] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770867.238511] 1357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770867.443712] 643 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770867.649113] 1015 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770867.857479] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.58 ms +[1421770868.068356] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.31 ms +[1421770868.279692] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.49 ms +[1421770868.498115] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.3 ms +[1421770868.717161] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.6 ms +[1421770868.940017] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms +[1421770869.223727] 1753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.6 ms +[1421770869.448705] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.7 ms +[1421770869.673850] 386 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms +[1421770869.895428] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421770870.100290] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770870.305503] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770870.512178] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770870.718836] 1487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770870.926682] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.50 ms +[1421770871.136470] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.95 ms +[1421770871.341642] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770871.547108] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770871.754102] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.98 ms +[1421770871.965412] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.13 ms +[1421770872.170962] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770872.377172] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770872.582502] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770872.789012] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770872.994860] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770873.200320] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770873.407055] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421770873.612852] 1336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770873.817816] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770874.022561] 472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770874.227697] 569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770874.433876] 1490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770874.640261] 1937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770874.846849] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421770875.051942] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770875.256753] 133 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770875.462394] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770875.667800] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770875.873715] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770876.078464] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770876.284022] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770876.489825] 51 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421770876.695536] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770876.901103] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770877.106153] 15 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770877.312118] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770877.517524] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770877.723053] 122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770877.930032] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770878.135904] 1046 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770878.341428] 176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770878.547547] 1062 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770878.753178] 1392 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770878.959083] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770879.164334] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770879.369687] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770879.576187] 1674 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770879.781771] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770879.987138] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770880.193538] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770880.399773] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770880.605167] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770880.811821] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770881.017082] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770881.222400] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770881.428739] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770881.633869] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770881.840372] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770882.045443] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770882.250750] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770882.457576] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.64 ms +[1421770882.664520] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.85 ms +[1421770882.869706] 757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770883.074434] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770883.279905] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770883.485055] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770883.690586] 846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770883.896260] 876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770884.101435] 1508 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421770884.306891] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770884.513586] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770884.719104] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770884.924656] 722 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770885.130253] 577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770885.335901] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770885.541521] 124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770885.747403] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770885.953510] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770886.159887] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770886.364941] 807 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770886.570215] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770886.776562] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.57 ms +[1421770886.982095] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770887.187411] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770887.393281] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770887.599056] 65 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770887.804756] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770888.010209] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770888.216090] 1413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421770888.421724] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770888.627772] 1163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770888.834119] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770889.039760] 1907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770889.244646] 369 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770889.450273] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770889.655851] 346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770889.862247] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770890.067190] 485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770890.273334] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770890.478419] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770890.684095] 1319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770890.889613] 435 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770891.094365] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770891.299722] 1403 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770891.505742] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770891.712338] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770891.917518] 758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770892.122594] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770892.327955] 1012 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770892.533630] 1909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770892.738770] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770892.944280] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770893.150650] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770893.356234] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770893.562340] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770893.768377] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770893.973853] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770894.180389] 1773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770894.385764] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770894.591034] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770894.796452] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770895.002737] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770895.207609] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421770895.412951] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770895.619351] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770895.825362] 1576 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770896.030163] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770896.235494] 738 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770896.442331] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770896.647629] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770896.853444] 184 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770897.058659] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770897.265041] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770897.470229] 221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770897.676017] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770897.881568] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770898.086881] 74 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770898.292019] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770898.497556] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770898.703088] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770898.908557] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770899.116883] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421770899.323079] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770899.528985] 1474 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421770899.734339] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770899.939649] 319 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770900.145140] 1204 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770900.350038] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770900.555588] 1399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770900.762343] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770900.968212] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770901.173308] 229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770901.378379] 594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770901.583515] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770901.789287] 58 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770901.995370] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770902.201129] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770902.407423] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770902.612849] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770902.818547] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770903.023443] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770903.228574] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770903.434044] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770903.639224] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770903.844958] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770904.050796] 1925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421770904.255572] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770904.461286] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770904.666505] 1281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770904.871331] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770905.078076] 1991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms +[1421770905.284470] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770905.490422] 468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770905.695898] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770905.902492] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770906.107698] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770906.312984] 1149 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770906.518570] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770906.724604] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770906.931233] 1746 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770907.137020] 1317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770907.343574] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770907.549235] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770907.754446] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770907.959419] 524 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770908.164573] 614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770908.371282] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770908.577663] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770908.782895] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770908.988898] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770909.193658] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770909.399195] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770909.604629] 1445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421770909.810474] 650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770910.016543] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770910.222679] 1499 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770910.429019] 1811 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770910.635300] 1484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421770910.841028] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770911.045681] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770911.250850] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770911.455597] 515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770911.660670] 654 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770911.866217] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770912.071746] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770912.277101] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770912.482683] 85 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770912.688374] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770912.893623] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770913.099280] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770913.305674] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770913.511137] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770913.717824] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770913.923702] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770914.129630] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770914.335088] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770914.539934] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770914.744540] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770914.949660] 1022 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770915.154200] 26 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770915.360391] 1842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770915.565343] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770915.771095] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770915.977046] 695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770916.182812] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770916.388465] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770916.593575] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770916.798970] 800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770917.004357] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770917.209647] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770917.414995] 206 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770917.621412] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770917.826061] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770918.030654] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770918.235618] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770918.440568] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770918.645709] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421770918.850564] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770919.055186] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770919.260117] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770919.466624] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.91 ms +[1421770919.677152] 322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.55 ms +[1421770919.888161] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.88 ms +[1421770920.105985] 217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.4 ms +[1421770920.321986] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.5 ms +[1421770920.541442] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421770920.766515] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms +[1421770920.996274] 1071 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms +[1421770921.279587] 1816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.2 ms +[1421770921.503130] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421770921.730023] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms +[1421770921.951372] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.0 ms +[1421770922.179149] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421770922.384110] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421770922.589533] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770922.795261] 1047 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770923.000949] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770923.206615] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770923.412507] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770923.617892] 1053 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770923.823607] 1267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms +[1421770924.030209] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770924.235565] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770924.443111] 454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.39 ms +[1421770924.662792] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.4 ms +[1421770924.868684] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770925.074447] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770925.281887] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.88 ms +[1421770925.493348] 294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.81 ms +[1421770925.698432] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770925.903253] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770926.108379] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770926.313181] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770926.518578] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770926.723861] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770926.928976] 563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770927.134697] 684 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770927.341418] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770927.546763] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770927.752426] 626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770927.958862] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770928.165708] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770928.371884] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770928.578069] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770928.783304] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770928.989098] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770929.195394] 1766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770929.401018] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770929.606533] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770929.812980] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421770930.018549] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770930.224051] 829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770930.429545] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770930.635459] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770930.840693] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770931.047112] 1649 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421770931.252500] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770931.458688] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770931.663853] 87 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770931.869628] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770932.074981] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770932.280024] 960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770932.486385] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770932.692580] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770932.899272] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770933.105814] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770933.311695] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770933.517257] 1251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421770933.723354] 1354 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421770933.928973] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770934.134715] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770934.339781] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770934.545144] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770934.750347] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770934.955726] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421770935.161675] 861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770935.366909] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770935.572728] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770935.779796] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421770935.985768] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770936.191190] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770936.397090] 997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770936.602583] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770936.807860] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770937.013053] 516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770937.218489] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421770937.424504] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770937.630126] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770937.836110] 443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770938.041656] 886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770938.246697] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770938.452909] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421770938.657929] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770938.864068] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770939.069264] 243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770939.274755] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770939.479540] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770939.684446] 11 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421770939.890042] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421770940.095918] 1036 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770940.301490] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770940.507395] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421770940.713862] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421770940.919420] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770941.124311] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770941.328915] 667 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770941.533518] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770941.738385] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770941.944070] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421770942.149796] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770942.355765] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770942.561268] 501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770942.766870] 1346 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421770942.972511] 507 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770943.177765] 234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770943.384433] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.80 ms +[1421770943.589234] 239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770943.794000] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770943.999732] 1943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770944.206108] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770944.411843] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770944.616766] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770944.823152] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770945.028791] 1514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421770945.234015] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770945.439702] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770945.645499] 839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770945.851015] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770946.056405] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770946.262278] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770946.467673] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421770946.672644] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770946.878352] 1418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421770947.084019] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770947.289943] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421770947.494970] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770947.700093] 608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770947.905412] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770948.111203] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770948.317473] 1743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421770948.523669] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770948.729265] 1004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770948.934234] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770949.139029] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421770949.344581] 1583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421770949.549083] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770949.753503] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770949.957861] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421770950.163956] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770950.370077] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770950.575943] 1318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770950.781150] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770950.986438] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770951.191582] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770951.397308] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770951.603121] 1614 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770951.808709] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421770952.013599] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770952.219670] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421770952.425240] 1880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770952.630747] 609 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770952.835957] 1033 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770953.040219] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770953.245711] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770953.451270] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421770953.656954] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770953.862234] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770954.067308] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770954.272890] 986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770954.478164] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770954.684574] 1922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421770954.890279] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770955.097022] 1747 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770955.302304] 316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770955.511347] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.46 ms +[1421770955.722800] 1408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.17 ms +[1421770955.935964] 101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.38 ms +[1421770956.154817] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.8 ms +[1421770956.374890] 1174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms +[1421770956.594321] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.6 ms +[1421770956.876217] 1939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.2 ms +[1421770957.161097] 1655 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.7 ms +[1421770957.366854] 278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770957.572508] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770957.778486] 1833 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770957.990842] 477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.66 ms +[1421770958.212662] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.7 ms +[1421770958.433012] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.7 ms +[1421770958.655597] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.3 ms +[1421770958.937635] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.0 ms +[1421770959.168048] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.1 ms +[1421770959.457639] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=86.0 ms +[1421770959.662672] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770959.870209] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770960.076237] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421770960.283646] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.62 ms +[1421770960.509306] 1527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.0 ms +[1421770960.721175] 663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.08 ms +[1421770960.933925] 78 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.24 ms +[1421770961.152816] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.1 ms +[1421770961.377627] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.5 ms +[1421770961.605338] 1034 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421770961.811644] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421770962.025820] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421770962.244422] 1383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421770962.467658] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.3 ms +[1421770962.695261] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms +[1421770962.925679] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.4 ms +[1421770963.208794] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=79.2 ms +[1421770963.489084] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.3 ms +[1421770963.716267] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.5 ms +[1421770963.941578] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.9 ms +[1421770964.169690] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.2 ms +[1421770964.397142] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms +[1421770964.617840] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.9 ms +[1421770964.823043] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770965.028616] 1472 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421770965.233895] 1434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770965.446928] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.40 ms +[1421770965.658389] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.78 ms +[1421770965.898185] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=35.6 ms +[1421770966.104841] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770966.310603] 837 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770966.515780] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770966.720922] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770966.925942] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770967.130609] 700 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770967.335529] 1121 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770967.541297] 1645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770967.747006] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421770967.951597] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770968.156723] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770968.361896] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms +[1421770968.566791] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770968.772346] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421770979.181651] 93 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421770979.387392] 80 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770979.593261] 167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770979.799098] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770980.004720] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421770980.209797] 145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421770980.415827] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770980.621696] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770980.826923] 1144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770981.032380] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770981.238021] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770981.443195] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770981.649096] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421770981.855894] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms +[1421770982.061152] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770982.267716] 1973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421770982.473545] 908 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770982.679389] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421770982.884879] 1340 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421770983.091517] 1983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770983.298118] 1729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421770983.504284] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770983.710246] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421770983.915266] 279 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421770984.119643] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421770984.325728] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421770984.531132] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770984.736551] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770984.941479] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770985.147080] 490 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421770985.353270] 1757 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421770985.557994] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421770985.762968] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770985.967767] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421770986.173716] 1597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421770986.379002] 1187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770986.584280] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770986.789220] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421770986.995756] 1923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770987.201040] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421770987.407463] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421770987.613331] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421770987.818285] 394 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421770988.023014] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770988.229259] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770988.434292] 1136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421770988.639628] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421770988.844939] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770989.050442] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770989.255719] 1320 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421770989.460705] 1315 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421770989.665929] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770989.871524] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770990.077419] 1913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421770990.282541] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770990.487985] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421770990.693331] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770990.899112] 548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770991.105254] 554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770991.311019] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421770991.516463] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770991.723043] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421770991.928484] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421770992.134883] 1831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770992.340637] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421770992.546533] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770992.753237] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421770992.958312] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770993.162834] 510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770993.367741] 551 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421770993.573686] 1874 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421770993.778642] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421770993.984603] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421770994.189257] 142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421770994.394147] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421770994.600211] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770994.806025] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421770995.010516] 168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421770995.215604] 120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421770995.420733] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421770995.625580] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421770995.831125] 661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421770996.037219] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421770996.243495] 1662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421770996.448907] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770996.654942] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421770996.860181] 823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421770997.064895] 891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421770997.270462] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421770997.475666] 583 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421770997.680511] 52 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770997.886276] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.76 ms +[1421770998.092573] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421770998.297692] 521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421770998.502344] 628 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421770998.707146] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421770998.912437] 162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421770999.119399] 1863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421770999.325317] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421770999.531879] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421770999.738278] 1658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421770999.944632] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421771000.150243] 799 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771000.355830] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421771000.561748] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421771000.768628] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421771000.974545] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421771001.179841] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421771001.385437] 923 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771001.591959] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421771001.797962] 1681 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421771002.003530] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421771002.209237] 751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421771002.414787] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421771002.620111] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771002.826769] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421771003.032465] 540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421771003.237744] 994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421771003.443889] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421771003.649507] 1436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421771003.855143] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421771004.060614] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421771004.265989] 668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421771004.471299] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771004.676253] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771004.881128] 793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771005.087022] 1951 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421771005.292056] 976 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771005.497586] 1454 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421771005.702847] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421771005.907682] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771006.112754] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421771006.317861] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771006.523545] 1213 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421771006.728304] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771006.933192] 550 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421771007.139224] 2001 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421771007.344254] 934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421771007.551747] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.14 ms +[1421771007.757767] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421771007.963237] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771008.168980] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771008.374422] 1098 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771008.580079] 984 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421771008.786772] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421771008.993363] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421771009.198332] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771009.403851] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771009.609682] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771009.815253] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421771010.021212] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771010.226556] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421771010.431855] 405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771010.637207] 812 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771010.844912] 672 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.39 ms +[1421771011.050019] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771011.255117] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771011.460896] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421771011.666443] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421771011.871765] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771012.077813] 1977 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421771012.282940] 188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421771012.488864] 1214 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421771012.694768] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771012.900101] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771013.105688] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421771013.311067] 1277 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771013.517659] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421771013.723845] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421771013.929617] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421771014.134417] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771014.339593] 1005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771014.545391] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421771014.750627] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771014.956506] 1160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771015.162608] 852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771015.368036] 502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421771015.573501] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771015.778590] 1152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771015.983306] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771016.188989] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421771016.393802] 261 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771016.599041] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771016.804005] 897 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421771017.009444] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421771017.214532] 107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771017.420831] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421771017.626081] 281 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771017.831444] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421771018.037054] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771018.242287] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771018.446993] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421771018.652758] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421771018.858613] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms +[1421771019.064589] 1919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421771019.269685] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771019.474919] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771019.680502] 351 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771019.886599] 1588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421771020.092982] 1762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421771020.297876] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771020.503565] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421771020.708512] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421771020.914559] 1795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421771021.120555] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421771021.325496] 1300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771021.530534] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421771021.736129] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421771021.942329] 1566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421771022.147316] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421771022.353074] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421771022.558516] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771022.764911] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421771022.971098] 1930 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421771023.177452] 1565 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421771023.382564] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421771023.587801] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771023.793132] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421771023.998087] 452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771024.203397] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771024.409163] 1949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421771024.615070] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421771024.819866] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421771025.025604] 1687 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421771025.231781] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421771025.437542] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms +[1421771025.643249] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421771025.848789] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421771026.054434] 1157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421771026.260198] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421771026.466181] 1019 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771026.672446] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421771026.877877] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771027.083686] 1113 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771027.288914] 402 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421771027.494338] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421771027.699564] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771027.904999] 439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771028.110903] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771028.315961] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421771028.521101] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771028.725958] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771028.931092] 873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771029.136190] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771029.341129] 381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421771029.545949] 132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771029.751621] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421771029.958068] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421771030.162962] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421771030.369070] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421771030.574094] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771030.780420] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421771030.985909] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771031.191124] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421771031.396542] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771031.602888] 1679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421771031.809777] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421771032.016311] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421771032.221865] 552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771032.426851] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421771032.632721] 1440 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771032.838122] 363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421771033.043550] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771033.248742] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771033.454719] 1850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421771033.661195] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421771033.866542] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771034.072309] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421771034.277863] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771034.483013] 368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771034.688754] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421771034.894146] 1324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771035.099791] 1018 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421771035.306427] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421771035.512076] 492 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771035.717767] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771035.923460] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771036.129152] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771036.334692] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421771036.540906] 1981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421771036.745802] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771036.950488] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421771037.155430] 344 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421771037.361087] 1433 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421771037.566397] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421771037.771373] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421771037.976189] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421771038.181275] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771038.387693] 1670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421771038.592838] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771038.798169] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771039.005791] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.04 ms +[1421771039.211107] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421771039.417233] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421771039.622118] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771039.826775] 727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421771040.031699] 1091 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771040.236942] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771040.442744] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms +[1421771040.647867] 55 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771040.853137] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421771041.057949] 441 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421771041.263143] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771041.468192] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771041.677189] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.37 ms +[1421771041.901608] 1788 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.8 ms +[1421771042.116288] 962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms +[1421771042.335165] 560 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms +[1421771042.598246] 1790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=58.9 ms +[1421771042.804294] 2003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421771043.010713] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421771043.215909] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771043.420994] 375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771043.626548] 903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421771043.831561] 520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771044.036876] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771044.242718] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421771044.448093] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771044.653635] 1209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421771044.860232] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421771045.067143] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421771045.272052] 558 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771045.478205] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421771045.683195] 473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421771045.888968] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771046.094241] 14 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421771046.299562] 750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421771046.505446] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421771046.710837] 850 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771046.916390] 1109 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421771047.123231] 1871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421771047.329108] 1032 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421771047.536683] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.12 ms +[1421771047.742295] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421771047.947555] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421771048.152704] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771048.359025] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421771048.564048] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421771048.769395] 904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771048.974929] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771049.181138] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421771049.386163] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771049.591277] 395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771049.796892] 946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771050.002089] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421771050.208069] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421771050.413568] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771050.618791] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771050.823720] 1172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771051.028964] 1129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771051.235138] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421771051.440517] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421771051.645444] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421771051.850711] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421771052.055665] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421771052.260836] 178 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771052.466281] 712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771052.671600] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421771052.876372] 190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421771053.081869] 801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771053.287147] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771053.492489] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771053.697706] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771053.903352] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421771054.108918] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421771054.313289] 160 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421771054.518478] 1189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421771054.723456] 1370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421771054.928361] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771055.134549] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421771055.339405] 1127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771055.544707] 1013 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421771055.750205] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421771055.956568] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421771056.162658] 1692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421771056.367654] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771056.572899] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421771056.778388] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771056.984012] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771057.189216] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421771057.395130] 431 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421771057.601881] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421771057.807312] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771058.012919] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.64 ms +[1421771058.218242] 678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771058.423644] 877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421771058.631685] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.24 ms +[1421771058.838561] 1629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.62 ms +[1421771059.043515] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421771059.248506] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421771059.453237] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421771059.658795] 238 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771059.865031] 632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms +[1421771060.071063] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421771060.277053] 1564 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421771060.482748] 1714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421771060.687954] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771060.893958] 1698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421771061.098886] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771061.303623] 404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421771061.508575] 249 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421771061.714742] 1721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421771061.919794] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421771062.124714] 866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771062.330854] 1953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421771062.536292] 264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771062.743193] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421771062.948146] 174 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421771063.153189] 1212 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771063.358374] 92 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771063.564370] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.80 ms +[1421771063.770134] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771063.975459] 242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771064.182348] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421771064.387431] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771064.592973] 1043 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421771064.798514] 949 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771065.003684] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771065.210103] 1784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421771065.415917] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421771065.620623] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771065.826176] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421771066.032747] 1623 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421771066.239969] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms +[1421771066.445495] 1442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421771066.652244] 1632 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421771066.858079] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771067.063058] 75 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421771067.268976] 1699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421771067.474651] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421771067.681582] 1917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.58 ms +[1421771067.887590] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms +[1421771068.092723] 708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771068.297196] 638 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421771068.502005] 164 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421771068.708268] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421771068.913730] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421771069.119265] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771069.324402] 364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771069.529076] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771069.734428] 1362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421771069.941101] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421771070.146689] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771070.352047] 965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771070.556735] 332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771070.762946] 1567 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421771070.968694] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421771071.173938] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421771071.380215] 1712 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421771071.586915] 1589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms +[1421771071.792760] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421771071.998771] 1642 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421771072.203914] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771072.409090] 207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771072.614228] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421771072.819292] 670 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421771073.025226] 1997 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421771073.230934] 1859 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421771073.435847] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771073.641225] 62 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771073.846929] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421771074.051916] 1332 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.60 ms +[1421771074.256424] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771074.461434] 1035 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771074.666798] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421771074.872919] 1626 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421771075.078443] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421771075.283602] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771075.489053] 182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421771075.695705] 1756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421771075.901159] 447 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771076.106104] 138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421771076.311108] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421771076.518089] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421771076.722922] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771076.928013] 360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421771077.133822] 1532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421771077.338948] 889 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771077.544296] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771077.749841] 1904 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421771077.960259] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771078.166286] 1616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421771078.371301] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771078.576784] 31 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421771078.782421] 1294 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771078.987659] 1326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771079.192105] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421771079.397999] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771079.604004] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771079.810161] 2004 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421771080.018168] 128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.54 ms +[1421771080.227363] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421771080.432656] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421771080.637795] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421771080.844262] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771081.049221] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421771081.254254] 335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771081.459439] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421771081.664610] 1067 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421771081.869784] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771082.075780] 1482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms +[1421771082.280970] 30 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421771082.486203] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771082.691295] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421771082.896317] 544 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771083.102209] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms +[1421771083.307036] 1080 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771083.511724] 963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771083.716374] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771083.922650] 1914 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms +[1421771084.128840] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421771084.334684] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421771084.539838] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421771084.745047] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421771084.950222] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421771085.154945] 280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421771085.360058] 726 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771085.565495] 770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771085.771510] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421771085.976528] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771086.182144] 1701 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421771086.387913] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421771086.592610] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771086.797510] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771087.002228] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771087.208115] 1522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421771087.412674] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421771087.617512] 561 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421771087.822108] 619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421771088.026798] 710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771088.233810] 1815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421771088.439076] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421771088.644183] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771088.849445] 593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771089.054757] 664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771089.259571] 870 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771089.465155] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421771089.671098] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421771089.875817] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421771090.080761] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771090.286325] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms +[1421771090.492244] 1494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421771090.698552] 1624 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421771090.903959] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771091.109735] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421771091.315840] 1827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421771091.521661] 675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771091.728315] 1768 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421771091.934323] 1761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421771092.140274] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421771092.345206] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771092.550498] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771092.755756] 159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421771092.961456] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421771093.167005] 275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771093.373029] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421771093.578673] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms +[1421771093.784193] 721 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms +[1421771093.988803] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771094.193461] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421771094.398718] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771094.604208] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771094.810995] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421771095.017014] 401 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771095.223145] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421771095.429157] 1895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421771095.634448] 84 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421771095.839869] 980 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771096.044662] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421771096.249992] 1191 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771096.455129] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771096.660881] 1322 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421771096.866742] 1131 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771097.071707] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771097.276841] 413 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771097.483393] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421771097.689044] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771097.893701] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771098.098416] 736 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421771098.303186] 91 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421771098.507878] 12 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421771098.713390] 929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771098.918775] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771099.124087] 856 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771099.329011] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771099.533865] 707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771099.739798] 1355 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.68 ms +[1421771099.946382] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms +[1421771100.151423] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771100.356523] 731 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771100.561729] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421771100.767851] 843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.66 ms +[1421771100.973462] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771101.178434] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771101.384199] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421771101.589320] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771101.794968] 782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421771102.000393] 1021 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421771102.205688] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771102.412964] 1778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421771102.619476] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421771102.824444] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771103.029494] 170 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771103.234896] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771103.440388] 1179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421771103.646402] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421771103.851471] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771104.056081] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421771104.261204] 45 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421771104.466011] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms +[1421771104.672379] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421771104.877852] 89 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421771105.083650] 1584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms +[1421771105.289334] 1579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421771105.495339] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421771105.700737] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421771105.906317] 1011 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421771106.111792] 1203 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771106.316858] 972 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421771106.522134] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421771106.727590] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421771106.934521] 1578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421771107.140230] 894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771107.344944] 1229 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771107.550675] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421771107.756004] 287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771107.961085] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771108.167723] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421771108.373116] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421771108.578416] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421771108.784113] 1475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421771108.989700] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421771109.195445] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421771109.400331] 646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771109.605749] 944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771109.811266] 952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771110.015858] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421771110.220985] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771110.426033] 312 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421771110.631581] 1205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421771110.838386] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421771111.044582] 1900 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421771111.250411] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771111.455867] 945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771111.663025] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421771111.868705] 40 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421771112.074744] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771112.280294] 506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421771112.485656] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771112.690974] 1245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771112.897340] 1767 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421771113.103777] 1924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421771113.309109] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771113.515000] 1825 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421771113.720035] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421771113.924706] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771114.131664] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.49 ms +[1421771114.337190] 864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771114.542663] 503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771114.749144] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421771114.954381] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771115.159736] 607 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421771115.364230] 1414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421771115.568968] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421771115.774075] 863 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771115.979257] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771116.184901] 1196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771116.390805] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421771116.596164] 119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms +[1421771116.801953] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421771117.006800] 538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421771117.212562] 1533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421771117.417425] 498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421771117.622555] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771117.827986] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771118.032826] 1463 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421771118.237482] 317 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421771118.443333] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.87 ms +[1421771118.648864] 1061 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421771118.854619] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771119.060454] 1407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms +[1421771119.265902] 575 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771119.472435] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421771119.677663] 432 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771119.883593] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421771120.088305] 222 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771120.294171] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771120.499460] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771120.704820] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771120.909938] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771121.115161] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771121.329974] 1470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms +[1421771121.536666] 1786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms +[1421771121.742103] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771121.947611] 1232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421771122.153755] 970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421771122.359240] 705 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421771122.564648] 36 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421771122.770256] 692 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771122.975202] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421771123.180418] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771123.386741] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421771123.593113] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421771123.798796] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.71 ms +[1421771124.005653] 1748 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms +[1421771124.212490] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421771124.417679] 325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771124.623921] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421771124.829378] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771125.034680] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421771125.239401] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421771125.444842] 1308 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421771125.652116] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.82 ms +[1421771125.862332] 1361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.88 ms +[1421771126.075803] 805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=9.48 ms +[1421771126.323002] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=43.0 ms +[1421771126.542480] 1217 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.0 ms +[1421771126.760529] 424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.8 ms +[1421771126.984453] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.3 ms +[1421771127.203747] 1142 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms +[1421771127.409146] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421771127.615942] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms +[1421771127.831270] 1993 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.1 ms +[1421771128.041440] 1375 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.15 ms +[1421771128.282772] 1552 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=37.4 ms +[1421771128.499156] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.3 ms +[1421771128.722795] 802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.7 ms +[1421771128.941625] 1057 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.7 ms +[1421771129.167937] 1406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms +[1421771129.389690] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms +[1421771129.667243] 1496 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.4 ms +[1421771129.898475] 357 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=27.1 ms +[1421771130.127412] 1337 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.4 ms +[1421771130.334174] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421771130.540406] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421771130.745492] 427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771130.951354] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771131.156804] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421771131.361909] 973 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771131.566761] 791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771131.772033] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421771131.978971] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.75 ms +[1421771132.185233] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421771132.392012] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms +[1421771132.598654] 1486 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421771132.805004] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421771133.010111] 954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771133.215201] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771133.420619] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421771133.625785] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771133.831848] 1420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421771134.039597] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.35 ms +[1421771134.248759] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.16 ms +[1421771134.454295] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.91 ms +[1421771134.659566] 698 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771134.864953] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421771135.070279] 783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771135.276009] 796 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771135.480932] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771135.687077] 1858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421771135.892665] 1855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421771136.097451] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421771136.302338] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421771136.507569] 1073 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771136.713266] 1809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421771136.918078] 8 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421771137.122879] 220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421771137.327745] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771137.532481] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421771137.737103] 56 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421771137.942163] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771138.147586] 1168 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421771138.360417] 1288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.78 ms +[1421771138.568174] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.44 ms +[1421771138.774489] 1571 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421771138.979569] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421771139.184900] 1171 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771139.389787] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421771139.595655] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421771139.801013] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771140.006218] 781 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms +[1421771140.211835] 1081 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421771140.417413] 396 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771140.623390] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421771140.829092] 44 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421771141.034420] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771141.239323] 762 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771141.444939] 1650 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms +[1421771141.649914] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771141.855245] 634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771142.060305] 636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771142.265727] 989 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771142.471511] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421771142.677460] 713 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421771142.883470] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771143.090375] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421771143.296039] 798 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421771143.501805] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771143.708079] 303 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771143.913981] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771144.119325] 1384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771144.324309] 1265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421771144.528888] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421771144.734405] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421771144.940096] 324 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771145.145863] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771145.351991] 1363 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms +[1421771145.558215] 1421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms +[1421771145.764231] 1378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421771145.970131] 714 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421771146.175063] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421771146.380063] 285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421771146.584936] 1330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421771146.791028] 1945 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms +[1421771146.996327] 268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771147.201840] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771147.407836] 1979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421771147.613578] 836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421771147.819471] 703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421771148.025217] 848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771148.231655] 1921 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421771148.436766] 147 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421771148.642242] 573 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771148.847556] 1055 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771149.053299] 1270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771149.258415] 362 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421771149.463760] 327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771149.669126] 1154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms +[1421771149.874993] 372 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771150.082662] 1101 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771150.287884] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771150.494332] 1950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms +[1421771150.700246] 896 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771150.905605] 448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421771151.111176] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771151.317164] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421771151.522172] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771151.727891] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms +[1421771151.933342] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421771152.139009] 1733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms +[1421771152.343772] 817 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771152.548747] 112 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421771152.755230] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms +[1421771152.960745] 660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771153.165773] 883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771153.371192] 841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771153.576264] 1182 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms +[1421771153.782545] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms +[1421771153.987866] 557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421771154.193125] 475 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771154.397974] 924 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771154.603377] 353 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421771154.808529] 194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421771155.013401] 1325 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771155.219143] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms +[1421771155.423967] 482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771155.628469] 108 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms +[1421771155.833297] 845 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771156.038101] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421771156.243975] 1929 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421771156.449815] 1962 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421771156.655770] 1754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms +[1421771156.860672] 917 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771157.065600] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771157.270548] 890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771157.475468] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421771157.680176] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421771157.884762] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771158.089513] 385 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771158.295726] 1704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421771158.501859] 754 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771158.706931] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771158.913396] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421771159.119056] 1424 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771159.325663] 1920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms +[1421771159.530426] 232 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421771159.737096] 1801 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421771159.943781] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.68 ms +[1421771160.150849] 780 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.25 ms +[1421771160.356074] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421771160.561494] 1226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421771160.766910] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771160.972323] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms +[1421771161.178741] 1853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421771161.383873] 979 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms +[1421771161.588703] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771161.795061] 1826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421771162.000527] 797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms +[1421771162.206564] 1702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421771162.411792] 494 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421771162.617055] 436 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771162.822790] 1464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms +[1421771163.028002] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771163.233170] 603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421771163.438230] 1456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms +[1421771163.643958] 437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421771163.849757] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421771164.055146] 532 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms +[1421771164.261380] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms +[1421771164.466995] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms +[1421771164.673207] 1802 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms +[1421771164.878917] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms +[1421771165.084394] 154 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421771165.290351] 1095 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771165.495898] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771165.701180] 253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms +[1421771165.907967] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms +[1421771166.113694] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771166.318683] 469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771166.524801] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421771166.729936] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771166.934928] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421771167.139911] 1243 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms +[1421771167.345095] 1242 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771167.551507] 1787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms +[1421771167.758159] 1534 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421771167.967067] 1611 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.28 ms +[1421771168.172506] 1079 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms +[1421771168.377915] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms +[1421771168.583301] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms +[1421771168.789715] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421771168.995412] 719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771169.200643] 739 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms +[1421771169.406638] 1718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms +[1421771169.612831] 1823 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms +[1421771169.819191] 1893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421771170.025599] 1948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms +[1421771170.231366] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771170.436396] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421771170.642854] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms +[1421771170.848587] 1535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.11 ms +[1421771171.053253] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421771171.258926] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421771171.464672] 1935 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421771171.669684] 28 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421771171.874271] 704 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms +[1421771172.079048] 1181 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771172.283606] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms +[1421771172.490165] 1555 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms +[1421771172.695387] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421771172.901046] 1675 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms +[1421771173.106147] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms +[1421771173.310593] 481 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms +[1421771173.515611] 398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771173.721033] 1452 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.58 ms +[1421771173.926916] 1986 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421771174.131560] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771174.336733] 1024 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms +[1421771174.541401] 336 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms +[1421771174.745591] 526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421771174.950728] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms +[1421771175.155935] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms +[1421771175.361256] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421771175.566991] 1686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms +[1421771175.771771] 23 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 +[1421771175.976511] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421771176.181252] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms +[1421771176.387540] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421771176.592343] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms +[1421771176.797709] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms +[1421771177.002514] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.04 ms +[1421771177.208018] 1830 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms +[1421771177.414160] 1735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms +[1421771177.619528] 267 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421771177.824798] 1169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms +[1421771178.029745] 1165 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771178.234443] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms +[1421771178.440797] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms +[1421771178.647909] 1988 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421771178.853834] 832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771179.059401] 1439 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms +[1421771179.265694] 1952 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms +[1421771179.472487] 1646 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.55 ms +[1421771179.678077] 978 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms +[1421771179.883478] 1097 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms +[1421771180.088778] 855 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms +[1421771180.295587] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms +[1421771180.510603] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms +[1421771180.743715] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.8 ms +[1421771180.949053] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421771181.155685] 1944 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms +[1421771181.362095] 400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.98 ms +[1421771181.569409] 226 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.01 ms +[1421771181.780805] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.45 ms +[1421771181.998869] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms +[1421771182.248969] 1829 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=45.9 ms +[1421771182.512386] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=58.5 ms +[1421771182.717961] 1074 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms +[1421771182.923292] 46 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms +[1421771183.129965] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms +[1421771183.335449] 645 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms +[1421771183.540901] 444 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms +[1421771183.747983] 1940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms +[1421771183.954099] 1411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421771184.159879] 49 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms +[1421771184.365815] 420 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms +[1421771184.571516] 227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms +[1421771184.777325] 947 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms +[1421771184.983905] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms +[1421771185.188976] 531 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms +[1421771185.394275] 374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms +[1421771185.600745] 1503 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms +[1421771185.805877] 572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms +[1421771186.011910] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms +[1421771186.222729] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.02 ms +[1421771186.429007] 1875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms +[1421771186.634747] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms +[1421771186.840222] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms diff --git a/module3/exo3/liglab2.log.gz b/module3/exo3/liglab2.log.gz new file mode 100644 index 0000000000000000000000000000000000000000..67cd38790071d15567564e59af7528c88c8b08ae GIT binary patch literal 498149 zcmV(zK<2+6iwFq7ioR3;18iw$Y++(DE^KdS0JL4ru5Pz&o%bouupM+m;*Urc@RI~a z(G*T#AV$;J9rW!>a(mE2WtR29fbWIjbJx|DL@ttx)E~CcwzH4ZvowE8KYpE~Uw{1H z-+ub_>ra3CuV23Y^7Ehn^{@Z)$Nc5_`IrCr^Yf>_ef{&Mc-)`8AN!Yo`}+AmfBEab z|N7H^|FFM)`|U43ob~nF&%gZi1JR>jzx?`7fB1hGWX4;6{Mu}c0oe~t5M8uXe*B_C zAHy&TQp<(xWf%~Cc!C7W5ibyO2*`e9e+S`bpT&_Y5f9YYiish@OKaOrF(BrTO^{=> z-z|}YS&2T^*Yb#9{_)FQFc|Wz?-=rIqT{s?Aj(gEV8+_Wc$K^_`MQ6hiw1& zl^+d-;SN7b5SOP6*ku*ZJ{_ zF~?OOzaS2+z3aHTfNc81dxAJgNTihlncMwr`Hpd(MX@ax!iupUiLoXI<-I#~u5@EI zou2IzMA)s)l{)HUkxh&vOe?RQFVNL~m?wsdGjXwngE_wY(Q&dYX%EXeACIw z1WB%7WlkK1!E0j3VKVKb1u|LBwh405IQEthY9Vy(h+9I`j>G{u^0c(yLDE;5pOcq8 zy*X+}WMYu>DcTb#KmG_!3~|q2(*2=s$i5&>$WiKpg`uH&uwsHFvGUXG4fe6lI9ZYQ zSfn>3Fd@!;)gv!vsGc%f0we8bg6I~Lv?q2z$}qJuTB2rtyf8r&fZ8>yT4HoH6gncg`3^S%N8GG1Yx~Gdju8u;cT*kDno038JyK)yZPmU6(aM zEY9w`eqhIUFs97fmam~KDO&x!St$=r5knCr?1ka-1)n-jO-tZa}(p7v?EQh zamQCDND@Zw)cXb{oDyU(?32N?b}-EfW7ro4`Qq2Y2MT0F(+MJ;M6N76Zvpu~U$h?8nrGS#)L4T_>H!Sq^{Tt14*JWMv1KS8>yT$pYhb$TZ+^^B&|uUiu>RF-^R5zlD) z7!?RC88kyT&tRIYP5coU!KMik85l~Z1#lVcVYDJcMr~TE8IX!tpGK@?V@qzfeJ$y>D#*h1tx#?DYWcfCHAplt85i9wrBVc?kW_K6`o zmKM736ugMNfK024cNBx zg(1mCDxoUHDM zgNkkmLK8%+g6TTG4l9kw1UbIiGHyqSzaF~w#9eo(7Xwyn9T4*5;U#P43z9t0h!YAV zjh3$tr9o-mS)wcuU7X=ztpub!x~-Nxwk*p2y2Fwi*OugtG}GF!^2Vq~CrG+*?W&}}NVUWSu?#zTcgh;(p01TdkhL`gd8gZ% z=TC&C^{8AK%&M=6A&a(in<<7Pw#yXaIQ5LA{PDCToy1xJOZ1M970;@YNF}jQ z-)i}UAbNchh`v?*aY6_$*%d~?j@7g#@f=o_j-Fv9VxXcl$`eG{UVZNYsSmCsR)UytP*?3i zE14Zg1yXmttgqs`?OEh~)d?m8n!9dk^Vy?w0td!Wc!Ee`tj=V@q;iKQ$PrEFUXcP! z13yw)3F5k}dyqg`@jbLgRxSRT5n^`-IV#Jj7f9|zc%@`vx|2y7J*nz>&lai|@Twss z$jNP~YM#r71T-}e!A=Wk3>GQOb;OenSBP3m0rQ76K`3K|PWu{2=Acjb1kpv@+Hp{s z_*~>Sp4^EyKy;7@p8UDKRyb|xg12F|M8+f%qm^!V^+bftC{OZtKK;0fyoJv9aUO+{0sDSqL{whO=hxcLileRj1NE7fDV!LUIjdMfK)0P}oZrMa z>!jtX^9xdi__{&TY;|5XeLKio@%KqOM%Az>uRZ`JLa;NpojU&@t4m3s>=}KZpj060 z!tE0kl%f;AKUY!|rp{-6Nbs2$5yBhWStDahI3tMIZ*}@JYURR^WOPNh9F)bD$M?iI zJEOx&2ra?5E4y}tAI}5Kof$ys$JaFS=~~1(Gq42}?yh-Bq%?D@8XykJTb*fuCAodr zTMR{&`0V@OtOBu8H+3h+0_lPHUP(yxy%akIQK59@-!U|!lq00AyvBSj-_ro=Bl1oY zK*d(_>lf7vjAHUJL6T*8 ztpwFPP&JW>VO$-QeSSgY^bAVJ>sec+9q$3%#I*7}LDIKViA7|C7{uI>#E?T&UEhQn zurp(7uK7?^RBGFZS%^=+n;?lGZz=^8la%b}J4ls)h<5G>XkrXaBE%(r+S*-Js1A7@ z6q`%fVN!EF6g4|!&l|EIKPzf}C91b^3?w$rGvJ52L_#3V0A1@S2f2Ixc)-TU4uX;x z64qkxtsu^LslpN@A>Qs9Sb=(9I}-csZWBUfAMQ(7;vHXYvOv-^pUH>BC?8T8W=G9M znDJp^=;78cA5iM7iry2$`PIvASoMNO6v`QvE`JAc2B_$2GVh^0%)&((6{SJi^JK|$ zlEinZ9VM{vnKDg~G$e1P5jET_LB^J7I;x~6T^U1N5}uz+t4;Hr`)Hu9i)32YN^GrY z9S5p1M$;c^nXTi%>czg!RxT`mSDKf-QEYB@CM8IXb9U*Q2%9{1fhg0d_9ue{i1$K_ z-F63|xG5-Sf`o{Bhtr_ojiy+HEuG{R?fFnJiO`uCtS_J2hhZb)ZGz|_t?3B3oYRo+ zB!->b_VY=3e1e2kr%Da?h3Sxn-z`S*dtM7wA-Oab3Bt~u{RIwN(TSm@^N&uVz=k); z1hL2+>FGBx8Pc_oniJHO%8e?6Uza@|TEhKS!v+oaxMpG`i0rf}o#228jECwaL28!7 zyYHZoWIrks#50=iR3pK}zhh5iJsDYPgD_03H}q#xsTw-(5C+)5Wt$k1m)&Y11{?G+ zv|$NyL|EVK87vgNzLrZy3dMy4HllCtd&XO7O{z%ExSsY4gU&i{W()Nc)@&${-MT~3 z9`FHsEk`HFG4fYRhbt{ypUcgn_kDe8z>-u}h|<;D5mKeO1-k<~~_aD(! zf+#JPcU}UFaOngwk{+8#3hS|pi4m0hT_dkx6N5$@l*qGLH@{&b%q7|cVUFM)>@T1NSe5fNaK}@Tp-BP7E{URyu9igx_gSN;JQAg*_!&s`=x{&7 z3me2ZFLtE$jXp>L8y7U1%M;_Iz3rL{uD|hKi2v?kVXvTHo=I0m&boVo(*g~Uy#{I} zNWGZb>9_+*$6a0{L8LUx2F+d$ADbX0zCJyu1ZD|sV#G4-r`BP?;7Dd@ao@Bj-qsdY zYqJT$+q-#-LA_hoP1H)u=ItQpR2Q8XM(!P`!DeC%_m>!v5$D@xp|I0CcAYYGjvnQc z3;EDUEv;mxguY=dY9)h*CWva)54z|L%a5)JVtTZ@=|J`9D`S!vC1K>ZE$~A{Z{??` zZXGV1o^7OM5+kqS>W`%;p=2J{38I#KS9)^HXWlR=5OeM+A_3~5yw5K`5$W5zhY~ci zc0Q?SDm7S?drMHQ@;q5eg2*Cm)(ESt&x12;~c78)PcP^ zFsf5}o+Y{}y^ks(T&c3epc+}xmJv2zX>R*TKCJqZEtvK7iE$3~jQbs+rm9jXPY^#< zFsvugV61T*U#rog)-w%pyRH+1d{HOfQ7YVPY;A(nYlrm=kK@MHo{5n$``d}+AcI0z ztZUUl*{{eGP8~1|O8&&+-Rc0`LUd0MUKx;7jtMpdd-_99RDBy~4fI;)&9FTqtG8hU zSDd12A=Nw=(VyYi*5bpO%`Av@jr>QRFzYcfb_f}Et){rseX zMxcqmYw8Sp$Y#i{ z6XZy&SM&#K<(L+pt4tX+nH;9{9Pf@E$$Jy0^W>j;O}s#=*GXQ=2U-zpPw06cgZ)r>`cwyHy$@Lw z8z%wN38G{>-cAlw#p(vJ+s~n z+S5w|Mz-d;ss_p>H9y2qvsUIft;8_b^UmW0P4T(j{yEh^Nz}tjQ8$F9D&a(xDWgUn z87@SOi6I#-^y|_D%QTLb>;yT>t%KcweXV)6qUw~npIYHPo?* zLBvw6jsB^5hE_wve}A=M;WW`PK~Aot-^@Wx5V^Ee3E~`7lW_$%4|yykqb(6{lOnLV zeO(|`s4T&<&zo2$`jtf+j6TfsTW_7n+pBj#sq*U;t^_%0QC2_F46C#A#PE>!{bYv4h-X-o z>YhxaXxMz?o*=x`D-Z<+)N5kst^uqWBEp&uM~*Hr^4MBUSjUCB(;-&#B%Q9kDXf@3 zay2G3NG;B*H-zoFOb}*S?b>m#KH0=jS^ZSUR*<;uN;=grEE~;wM z$9mjMpRF3*5NM!bvbSNZ=E<$?4;^=WX@Y3YMd*QspxQCzjhG;5g5RFmgB!YG6C@I) zriU=><>9&S)j!GHmt8@x|IqA^PY`zR8Bqf3Vje>ztotX|>f{-yd7U0z6U5ir^+F43 zKJ}$(wCbPKwOfe|3wkaLT4CHhDk$ZIg3TkM3F36P zd%j_T)%;rCwaUtr3oKPLnO5~ro|iKcOoBAD#a8{3Z_Ua&Am;0HB=gRlL{_pIuhkp9hDSsg%1Qmv#Hgpr_y>X&1P6VX|l%XaYU8H z4%q9hqtufaZqB=@Cubq^?1xEE3#m0P+IA2`EjPmp?EzFa$SQrqYQ_im|t-#kUR z#7n-DAbHoN9_nCNWOaS4sAA}@C*)8JdxQ!#gqiIfhm0E(G}4(~0d_sL_(^?5f~2*Q zch^7l(rpdKP81DjRd=3W%7{8+t6T}JMR3Rgy@WPm)Q>5^>LY7nR1;#U8V~Amw;3RM z^;0TScSOJp{Nn(UoI;iSAFpTl7s+)4Z?-$|Hb0g$Q5U!TZPNLw3 zA+HH?R)&b>*Kr}wh2hI~$<__lDmF^_Ufq-|JvQ&asw2};X&&fwhE3u@ea%<1jaNTq zI;olp28yOHNqJ%%@>ej6D}nR15Uv^V2K2AjsK(V-;!?0aU5ZED*p)Fbm2uDOwE59hoE+w zosY`5!0NWDjEao45$jkm-&wd^47&=#Z}zX!D6g9}k0Fgx7EE}TMZOImc0*hj6HQ?!Y|7A?d8$+zVACQI1k8O=?QEwL+m zp0sDyRMmVSA~KdP14>%7`}f!ij8NtksL%$d zQ86D38M=U>ylR|vjNF6{b^uS=z8@#+JJSZ5l8Yv;+}C`6pkZDO6k3G1I|dj{r)=a& zJ@rTCDnVq=qWv8jqrdfA62rCzsIiBqc6~a=k#Qge#~RIjpF6eh;m~(**Mla$;+-Z~kH@)O=v>89B+bnCt<#WXFr{eXA|ji@HmnB8sWB_TlPFNKFeJLLO`lD|+$ zkMS(B-v>G0Rt@l><5&9aiJ>;GYXVL7u^)^lGifdTc4B<39V2{fj6NKrt$BM_@qy4S zRpq4_8brs~8KjhI9!+en^;Q!@k9e_wcqOgIy-kqJqyOn0(PD>ZK{AmJxSB4~$=grG zGX@grni$|UbpEyvfPq9B6CA9k@p+7c0H{{oej~DS z#>!mUHcF*JJK)!Yk%{yjMWG$O{li){Eqi@zc}2|CLCmJ1+T^?)GCIaFpyZ9qBi^<{ zYhzgUp9~R+YP4Dx8Xzm*(k;T%BoV|qNS;`i*rKF>@m=;@ zP1~&9h=Ot1l7`wm53JKMcHX*G3Zm`y{sGIUb5wG;Y0TSxYDuQj>Z9^DlDk?j`vN4^ zuo_$E%_K;RwKP-dI~_EY6l`@q2te`yW{qe5*O>9opQ_sq<}v+8(igyRFq4JKU|QNi zBKMtg8F<##z%owRSCx&|?v{?R^^_8|^GYTUhMIWYPlxuw_N&7__YrmA8qErOMh6Mc zFSxXaexoLNhJTrQXoWt9#0}`vCji;U7HFzUE1LAf&_B)fxN`_RLyiXo3LfivVbcoZ z?G8L&CAX+q)7qow&LSqCnMg{d1Q^R z?gu2ku``=OwTvWgkNdAIYK0L|kU9q)W)tmn{5yAL=gZP`1>4)ybn7>F8L@zo|DQA z5Ec6iGNJo6W^Hv+-DG7l+d)=H5oq9h$a#|8Ul(LcU9FykwMR~0_KEO!B192VTW8I8 zNdg`zv&J?^OQL;~ASdyntxlfRVLRd{?)tpbODB)!IV!7z=sAWb5gxaGbPSKJ_<$Fw zE7?0Dz(A{_*o(Z`>-Mg4XO4Z<5pB?t+vp$}G_2a~B#hi5yJOgtm~}SNTn$>=B|*-N zUG1aaXhEI4SH_ZYZl9P|$chfKR$Qws<8ku5g9tP+>+_|JhK!D3|8%H>*6@BYj)F)D9iP>3oXz`Lzw+?cA zTMqL&4zf-LKqx-Y8oB#<5IIpk$wCvIZ?&_;u#kb0veM+z z`tfVuiI}L*nb72>+H?2^%LM3NC@(&-j#2i2L9Hj}pQ>|LM7?N)+aC4!=devgWW}Q$ z%#IN#%T%!NtG-vJ3i-nc5v!ni_4QBbe0%S*xZ?@Vv;tFNWO}|8zJ@&AC+`?8a!R&$ z@S5D(K|-QTy;+rp=UoLm{{qsS`0%s6Mo z?7Ru(*0fEKa5WHzd75~C#~m^h`Ou848}>I+Fo4K2@l;ucr4R9RArnMnNLiTDXnw0h zc*Y4R@+!$q?MZ4^F3^}&ikm_jap^KG09n|CHSS3(CAW}gp&LC^tw4Tr;VxLzW3OWf zjCS;%j*%;`b~UnSF=+dGSEkOlTX=Xg{13+3W1s6L@teUWfJolArAJDe&}#gQ#K_D! zun(O#7h)ab2)f-UGmr*}yOPma`x}Z-mzt;beYi7s_Fdh=Lz_}}?;v9Nbs>kMbtL=u zyEAomsiF*x`tzjmSmubTY-L$XomG$>Pa@O8rNu3=)YtF z8m00^Q`qd+u6`h@LOJJGGcLf06?V0ndFJG8N$i8l+o=-PZ>(d0v1QzBL`nRahq0I- zDq0h=JafjDgeHdLMy$#u?cj3lAfa9>GJ_`f)mRS8^Gx1WtVr4rW6KW{W7{#X<#-wh zt<0Mk`L0B<**7hYKM#l_wL;;HCW+TGEB_)xI`j}0Z*Zd>TKS8U2TIKy{VGJs>nmWF zSrf~w4#J8KVq*>{#2T&O)I;p^ondN&NThhn0`b8UqsIDqCJg<-N(h0r@CEiMtm3u%kjV?<#$Q}QNG?gGR_o_>m)`{*IJAaWVN-PYl zPBu!Ay&&;eLx#VhLnnr=xH8I(5-*c=8dte* zME}-0McbK5GxJgFAbGLZ6kX8#GJ8VepY7x2C$XI--u!?Z`8R3Gvx{#W^?ktd4U_>l ztwPtDR*A9nGO2>5WwsxTOc3>|kJA$BMr}(FGrgu2LObMjc93J?*oi{paP%NMzTs*` z83d?>B;wjKwk!olG_VXYrJAzpRY!_8RxZK)9e#1Xok5H`+%ru_4 zL<50UZoaBANBNDPEHJjo#(YrF`flwC5kzqP z@&+gSg2=b>gs(cy;T^uulL)kL4s&p_-|F(&k~>mvw7&6v9t2WHw*|9)6fufIHAE^t z5t`m=lMP9bd|P7`ZHFe+-YQNBA|iFOFP;OWb_|n$EyTqunXV3!N8`V0JguA5>KkI; zuvwFO(`YuS{ob`)B%e}~rlctTNk*G?A zV!<*_Y(gWr4ov_(cYcizx*6V(b~`WRPM!YW(aNx^DPOB;@D;PF%emsXau2BLsM;P z+_uDs;}xK=6v3X%O7Z&kslu<4XuqquX98qLWN;031&tWLI))87)f^c#yW$qkCCC|h zSJk{ct$NnNIbGkFRx+G<{?g1D9*_m!gfeocCA+(0$g)xiVkx{nWfa9c(l&{8L%rPH%xEIC#(2}(NR9|lr_i0+M>{qP8M-Z4zio~7GF zJAJKV9NVLUc%HLJ8xd5=Y}$9xmw9tZyJM`3Oc7wu_*D@lLBx-MKsR}QNb-Q#*@gp! zXpQq=oXn9oF_qi zTU_q}TFLZ%k`PRIp!Q4akTeVj?^kOh(hS!6h3FaBPp=b&=(;pIh^m!0j??B_dp_cz z{hqk3V_IFnI!IVvR>EcEwnP5FAn=NPINzNq7vrTmq3RAR`!(pu+72AaUIZ3m}f(4M2^ zJBg98wO@&_A4xe|ZW!?>WuhRtNk2VyLyI?~IIjWl-}oZ~MD)655a-1D=Q}?$5!|?& zR(NQ%hr~EOF7rNU)<}(!V5yKHO^}@ja1}TXX$WRLaf(9f zcO!1xq%h^lc@m@K`btcMCds-Ukbs5Fm5`xT%G<|fACxVjzHGF-Dmui@6Xn*hS&z{q zixWdLC@qmjnyPo34or*;e@9gwXl$3p&@=zW*yASCymssAAep?4I^zc|5b9sAe=_&1 zJ`Zo;txdBhh|LhG0GP%I>u0>fE%5eWc*0jL$Ua{#yX{MDqtQPfkhSf)UGgRg8Urao zMDnLqsUfL}Jk5&)F&MLWfw0c_=WQKbqeQ6&@7rpZReVEzV!v;m!TW=;Y~9g+p3+B; zfFr}zv&T)`X$9uzNzCPnBdfCFht?o5{AlVO%;(wh{5|I#K9RN{Wy;eIvJSBV&8iXr z{Y~DU7!p>^P@=>TAu;htoo|-)jN{|?tTGdoDjeg%wEzkD{#fK6ZrET`nF+lq* zz6(upr(Nxif`mzByGnD}YkNIGeBa}DZkoxoKOnKqCw0!e-6M_>OPGr1ityz69*mvG z?~Uka`a~^7OprWu*UjGMkB;~RaSgACPD!ofcO$MZEDtP0(nH&bZIkRgEXTZ+0ookF z=@{Fk%BDukdRm(@G4zZQZaXw<&{k_q3_qE&!^WD{zUbG;{vuO^VjJ=nq?MRmz8R_x z11nlM*B4zrxW>&Zx5Em4ZFLYECWsjituC;i2RU< zCC1A5dISg@w61P+3|W3VBs@zoc^<@e<{^`-P4ukD+2N(jJ?ivBcPEIdX*+}^Y0qdC2o)&%|#}@v1`6{&<@|$Z%vR8+1Tnt z&9=X*en#ffVO3=uywTIsLAJ_9Er@5%;~hftroDUto&`m85I0$?YRk0Z#ak1D)C1wcx3?H9l@)Sf-xv3E+t&v|`i2DCL+n$j)*Z zditPee?I5u=|9_=!w6;Y%wJ=IK6sa4FR`JGjjuz#$X>k(i>~R@77^R$)BeVmhRkRM~DA%nvu@2v!9iF@&{ouys z1#|rt!5C$JRmEweeONsgIbYsXF*j9=wRKt#<|x%>(L-1XPxD?on4=suUgbRJ*5^5F zm|o948U;ljkdqn0mB%Id**tz?G0>p&D*6hoywO6&z%1pu^wL37(Q7m22_nl+QOS7< zHP$gKH)3((eMMXd_-yK6#qXN23 z8|r8mNno0C4s^se?Iw92p@QJ(u$fwV}rG#5Jd8VOKo1HdPXB{JE*v+eGau2OB9T=vR1D5xuxhOY!X=3aJ zTM+2N{m4`yFiI&4)u8pOs%&Cp5Tqb3AD+ni>KK8_Z&_zAnu=3B+3Zz6|3}smk)k zEu>@QIU+UMN{dj&^BkJzd*!-LN)?`BW?+Tz~mNlay!${{--gEkMA9tA-R*XjY4>gQ&zbqY8ZdE&T$-FEsh2w%!wQfEOcq5N%s14HA?65w65Q>(8Cj4Ag$wRq87I~mKEGPEpDY0?{~ zW30JqpkwoVrL<#|VkS~hUIafnhOJzWN=0bIpuX2(OL=O-QE3{#9RseED~?d}_1Q5p zOmw6>LTXz4FAT{)ym*GRLASqCBfu~*L$!%mnj0PCXkLdE_R^-%b_-AJ8>#^iNCytHk5z}ti_9^8r#=n1amc>Y) zy$48MepZ%6v~Ej33D2i9uRr8a|MeXF^QSso1_rax{w_hRrS)%4JHq>Yhbc+-d8bxs z0_V~}_TFBju`KV`PF4hn?o%K}Qv>STIUwe`Fd%Sf`b;lING9YpKTZpC+RK_F@7ZKJNU%X5-fL)7POxrO4UP#z`6I!5HxJ?ogFjm$}VTOcdv z*H!c5zfrRS#y&dAh{H%stZpO&5RG|j;H;h4b^ZY2P=P8^FO6B>p9GVV*Vdg^S(qJS z4V!pbJn7r_F{B);Yuf%d64U^(X$9i6(((HsXXPUpmk8S)WPfAXDd{>VomyR}9Uyt5 zt6V`KnmV*~5ZRf^!quH83a%Z)G7?2SbknA2TIQ4(2bLez?;=Swy(=P_FOLOw#-f=S zw4gCDmfG02($4C0{^c70L~JM+k-QXeM8_~3zV-R?rUaf9$@D`}M^qZ8tiLRU=Fs)i z;~6Bc=pe$X>CL64F*+KF^_Be3YvTPmMr2NFIbz<;lUbCDINOB4U#|&@JtQ zJ&+k%Fhe;%^1%kiR=u*;PLu5DOL9I$3%lw+v_e+jBnLV}Aw^H5DL=hS5*D(HO8=ux z5^xqReIDbLD_6(Zjy`Y=d9pIwo`1xrM^{v_fmUPE*+D!;4Ws*OKUPkzU9Ed4b1jnlc{EgsNrVA^h#EN`q zBH(Q+E^N;5>eK#Lh(CX7#?S{9_e~n&etI4Yb<$BuAWI_sY5p#ZbxRaikfsFOYT;{T z!aSFjk~PUSulsNUBr|5KGi1@ml3U8LK#szUI2fY838E9i%y)GKh4vhO#~A=}eEBu+ zp{c#MI^WuvF`t3M@bH8ptz)dS%h;FL0ckNwg2*`oBWs&y4D~z+!k#+>K$=rry-t!K zC-NvP9|2kku3a4R&5=P#^`vOBRjpo`AbZYL&b~?;7;d?Lg6Q;Fqoaqk6Z=#$KzwC% zRk9Eyz4v$B<%_%m%WaPLy83OU-`twPZk_Tpkl8`DWHef7;g2TD0HUHxt9d{hU()Aw z<$^3w?Rd5~t+JFDp(<4lV9|r$2*NVK8jhN~lZGxIl22l6vkeY~^StIx$52O#4oN?n zC|Yz3_dI{E()5q|+zAqSC)Vd{Jlpg3Bo4mz&|3_k&5tQR4tXBg(ZiJ~6~KuDT|v z_40HR62uOsS*m$UGbw)F);SqMpv6WTlWJ9tjZFg=Ed(jFlF;cG3#IE)W8xJtwSy?C z%G}y@E7v4Qe!d~shn}V)H#$f_H>JWYQcU-pS{p;9cPbK=wImQZ9Rw0Xhf6wnpG3Em zY)O2wx@RDf34~%`GJ{gfELmxNf0VLhQ3E*_|xA&-de% zPft`$lh-e9iB)2F&7{}q`x{4${9wWEz2}LOsN>JPc!I3qqqvJfs{pr}W`g8rD=VmN zz4vul{zVn(>}MaBerK(rATN?m-|l)8+d%Lw&Y#hko^7foG4f(Bmxrk&I`mVUO%U1V z1ed97)Mc95fEj9bcPJ;`Yx{tXqobBjOfjwQyjQ8diS5_EinEyqOc z&8P?Mx@x?j1Th~Qg@2=wR(mAx7>N~JyMAcXs_kW+Zy-tZim_>@ymydwRAJ?_Xl2vB z+s`L46ogWicJ@QLP7DhKTctcgJGP#em051tBN)$8tDV2`&5`F;)fyL#P4j?kxS(J% zoyN3p)!)Rx%y<<|4@r>Vnb=AYUrUxTEm&KHIWb~+QBv}6(JZk4u853p?p;E1#*2eS z$JiNTBiJ&U!DMs@6)o8uCyC2Tztk@M5&oZ8aJWU8U^Xx(z56y z=@C2;w&3nsRr?K+h@AK0Z(`W+>qySB_dtoXgB;C#q(Defkmz5b(2$jP?v5HbWX)@> zFFM8^`3M-QVO9M1cRGe5XD{{{ONJu<`Ft zA7D=g>COc;uVcu8E(P*wnyX8T856{gJG!Aii%yIkhHlV6^ErOD=y`KxEQgvb&pf1WLj7{H%T>XkSp_wz4Y7<^ zj+KJ4@LHkPL11QBA>*cXr+YMKFjsf9tBB&4jlhv0ZsL=h9=29ef`FA^NlsE zbck3K(2U+X#Eso3FHgKvqE-|n8* z&5#uYwd$Pa-x+cJLpJR|Y4jrnfk6IM&VD4%ttdFfE?u2Xla=iIaDBd1@7xg0p1O6b z5+t9)?j!+ixTBx(8^cLj#UNf7-%pf{;iStb-?T1eYg{CV<|$w58%C4(Xwh$iWU5ex zhE8Md=z|fOq3Prf3brK?RQ$^-GarXW(u)qV%>=~XMRW4$`#sYjAF)b6o7NQD4~YA} zUZ|7k#m}I2g2Y+dtDQs>duXjUMMCFV5d_a!;KA6j9OW}Rw5#NF42@HRZ$avhyr;Zo zs+&o!6!Gjgwu!mZzcEMg9w2M~o1$rgEKsqfT2{2N;L$uL~`5Y?VOuZ|povQ2(V-QFez|vZ78cC3%BAyqyFQ9VH$NhQe=};0kX> zucCi02rJ%df<6gyY+t)qo<+5_a|`B-XO%KFZ@jr*?&n*+M@?P~ny*&R+~Ll6M%;{n z7N(32VrNV3_f3KcxX)n6f*F z>WOif&9RnLCq^b$T1SeJ`0>wJM1q8c)ePUFWhLzyPk9SN25ghd;Mpl7TYX%&< z$KGISDXj?9?-7URKn(^uX`uNj{w0RPB)$qwG)0u29eC!@nMH$ON^5`jTJp$BAK*dfz2uO1A~od|(O;~6hK?<(`$T~748 z(!<|_(Q(9FH)P(F!tM|Py*4iIzVWXU#3q!FAhYu$dAr1b0$Di&Oj>%_!fRidOUtNi zgx3IV_qwCY7lH|~O;Q(q;*-RHHscL_N#)D++2|k!;^%|}!*3$rggBYzVuv_wG^NEr zUh|E$=y_lLrqY`j8Dz~WSs$9TXdBB;klcj3nEkS8#=NV8nEjgzQ)Mg4E_2L8QcNQTwW{mlRKN9UrH7Xf@nShFwhr7mBL zJbf#cTeL8%Z4oUmf|Ar)wBCKc)v#&7BI+{r^f7Mkij(a#q{LryW4Crv%?eOYJB zQS5-Axy>|wi^n&H2@Vuqo_jjPnroN#uJRfRql3uwThZc`$h~9OS|#b?q<+}LH-f~= z%DtW##?vML`y6L{W3N%k$f6}9?KVshNFn1AQQDwTi%SzDPj|gSKEINKOAr&kN|~ES z%8L#Hb5K-$H%-;K@zl@EWZEaFY_y)m@D8zTl~fQ*;q1vk4AG$Xto zYZ)y4&P2zUrcu%_63bNDs@QM(BSVwpF!VcvJo?}rB*UQc?_`;Czv-c4X4dNbT{Kcq z-y)8o*^+AGkz{+Y<(Qd0(3jk_I%d;!&R>ioZu}q9^QVUo2Y!B1l3hF%z|k>8&VYP7 zkqKrU!*p3yf;MSn_Pq}eq>vR~7E2-ODQTVfhOL?k6WXMIzj7mAU&bf`juz{D?;+NHYEo3=w*9VkJ-`Mh*u zTBcyLgGi<%uw_x+5QKCLADOi6inC~{G!ICOka^WfSaDWs;s>0DWbE}rifkZaIb|X? z2WbfH34#LTu&a_u)E;{<9OdhpL8Bd7t7F7oYE*r*cCAN#2K!tYZ|AvU?GCaf_sF&7 z{*lv2f@tpc(sEJSq(#d`62vu=c2K-|BTuVigbjm)Wze`_ErySsH)Ospl;?O1+1W8N zl`duVIcSCWmbfKIrqY!sY#L>`Ux@q5h*xlEksNFuDZ_-wWO`Oj)@WSG{$U9c>2dkp zw8~k(*d_mt_-*jeqS6OL^Od3SE4*s|>=sF_kTC~nc zVl2_Amukj&Tl$1RmRGRUXzm=Oq{=#vF+t3R|5LA|MZTkh98-snH8D?UOX452^ii4P zHKlilSgujp!MyXmRUHyU&i|{%()it@V;GLbDl3!p1fI!(fb#v85}FHAUHM@c#=+EV zRr;ML?5iDP4-v3jg5;w5a90yUN0h20PuI6+3FpfUL`y?<&@6=-WjR4&jgq?|9q_pg z+YX6LNs)I^kk#CBnU=fqO@F$Hlg{a245IE@7t1~AG~zOJBY@(?C$@1Wc~S5JwGBh z>L7XF6%$jkfk|AY&5{2(rr;%vDcQKP;51^otPUb`3`FfgYvZlcF>FG!`~Rrk+s}iX zmEi*7X`b|W`(XDsmdRZa9y5J)kOhAfd|D)(_EzpI3=GrY22_?m%HM)XVOV}z=y@*Q zG4)^^F|jf#rzxm+5W$?Rl_4*W@;9}EEH#Nh0hYGv&x43ThmTpp`V;pQ2F7GBQG-^w z)YCzZudU@QOgpsN%hC@efKqbh#XZt7)|m@>e?hah?6-)*k?de@*=a&I(>jL5RXoX? z>L(_L1#)t=F)F~L8TE6~GIb6u2{6`UjME`9a~=>KcUmpuPs_eAaxumNvy4Zve_oZ( z40V+%H>J`+GIKtohJ8tjC+msjJagwf;Gw_BV@r*WvDb~+l{b*NI)-jJNI8Sn@OomH&p7;2-)Qbr4{ zUyQs7kCa{YPX}RV``v z?UoJ#muJ+f4~t__p{x|M9Wppn9@cb|tG{BNN5`v2R01Xl6LtK{AovrPR)I z+-ci=Ld0j!Dm$w{o-)sn~f$z*?lEX{PPVn)){zWTwH zAY#`-oaXj09tg`Du{7CO0!OP~?Fn++c9gUyEgjLnu@^e2)^LB2hWi_Hu|P6YFF74vS4W<=l?l5Db!MkOhvY9t%|~ar#k#Njbda4FRS8=S z8uzQ;?(*qc%dW2)%@@!*h_B;iuVp0R*mu9nm)~vdQj_EnJ=>Eg_`QML%4maat*4L} zTO_>LMkEsE`X3;w84?wFkrvFiv^_yU@5PdA+KTkUQ9Fk8zPreRd};3^SX z!F0`zv3=gzPnHbWyGQIpk~ptn6zh=R&y)CBw@XQq8hi5g#E65Su2iB~vAnbg@ee(F zyDe{;J=_D5S=B_r|L`m(9t;~ASE`gmmwQhX&-7{>%+K)#q-Q%&&X+jz4g%8nE$4KQ zyb;UDB6z&1=opg6t}SW?*Ylq9W&UgXV6$92kOjUc^gVthliN}3s*va)JB z9b{z)gqy@^#J~Aqh^ikv$RP4u2%>$#yMr7v8RacP8}|OY-Pibr&wn~y zJetVtAj>VTG$yIJuzK4nK_u_Q3b!_`U@i}coipXy0@Bi}=pbc|Q`#i73#;XDYob{> zDk~uhs?QFx2ZDK~rc&FA3+H7_3`#4HkNG@@Pq9&y0oJkgJVrpdy{Hd7^^?CR%35ev zuJWv2zYz&4kiGBRz@c^dS|pSh3NIEU?nFby(Lr3M8Q#_*skX0PGEa~YFH;$wY)C6+ zuMMWJqVS}&(chN9CC1h}0l`alTTLi2)Yd6SxG;XuKw*S$xqhIe z6J%qFnnYvR6CJ34H_K; zY^0J};Wd$aEEM?*4P>Icp}jde#$Hq9T9mPNNt;>7A7yG)DfKj7c&Z)5_gbZouy|bm zXGvnag7h?L9Qk%B?(t0!Y>b)j>gpI5jfo7)^$t%+p``OsJs1l7o#YN?HF@7g!&#J|Lp8D}b9c1K8Hw*_fl0e`>xo)0)0Z zjhM_!eJlmSnG34mwlN;#{e7HxuCMnnDO!5l- z&y$?c1-}8_*lEY8NlL3)0Ide!s5g+Pjg1FDQ z%6N(O{q7DCZdW=+c;u$G5hJh2D;0fcJ-z<<=Nz7?l!@~AZ4F=XyC(cC<1oabd(e!q5&I%z#= z?I34ugV4_5&E)?*PXyDHVKo9{GzNA{-vlisIa216KT_Wiu$`ik_WWD4?)vB;d9QCN ztrDK&=xkvUY1pl z3M3aAA9Hk!lYv(Gf&OZ^RWM39y~aj1j}i2Mtdmzd_95#@o_S5FQA)=?Dc=l)O!Ps#4sdgT1DAZ;L(UqAr1Y~%n^5_`8 zd|b8}P2R4JbcmEuO4YS!5q7JcNexo!yh7x(3-NRixS!Ru1GM@)g*Ah+?UZ#6G zhM#$3#vo;(t8-5TgOolI#q&g#`Za<%%B5SGt+#$3dVU5NJIyGF*8CLAP3}cC6zQR^ zf4Qy8vt$N|BDbFK4P%oM>)zu(%5Y8wrg4Q5X-%EJBQQ0o3dYw|lKS66h!sptPQQ9b zG=9;D4sv#0OkR_1v{9`V^l3dI;yAC+sNk7%J`WOb%h=os)8BJTYiM#ptM=%R#I<#m!YiyF7D;~U-H3N)vedc` zsjL1}dKEL1nRmeDh4&!dF+y~BX*vI>DXAElyqY0SBPaJo$H=4_>Z3us*Y&~B@>{Q_ z`j6yjv_>ZHSkU0jWv&hqz7&-P{guR^Vr0@6MweM8bnll{6O;22|7a`nf+#NC62xVN zbI~C@cCkI@pv8cWZ~ zT2H5cSQwa`SMbJ2bKcJcpkiRs4l0+6SKarHkvHuu_bXbzr62GZm(0Chf{#4X-veSI z*O`hoE!pz~tB#~sd5PBbY}*jSl3HrcwrKI9cMPbzLVt*rx4q$_S3`1?Umva6vO0$O zw4(C|P2;GkMkL6=r4Eou8_e?-I$&0Et@1pZGzHF{9iDF;UuBO&)6;2eXvL`HlBzQD zv@zuYv54F3=BX36npT3u*jGB3$69S21dR{YaJY0guY+J6V^8@vuJbGZ55=tH7*!OY z(Qj2dMn=AM{1U^`(=lRSjswy7u7z_pGAXrXHGWN6_J`tYn3aTbKxy*Pyk)e5sHj29 zgLa}cf_g%@jzGUfX$MNX5ECQv4@Y{qdHzoARbgX}J1NPV;b<*lLnY0wA_>c+{0X%Z zB>(JD&2HrhF+Q)$&)h{-o+P#rC=DGXu-(CEB6WE@&yT+tkmx(M%R7v8GUnCZF=UCA zCH7!Zv+}>~ASM~5)buLp`^|svjuCT5+?i!gK4N+Q{RP?I6!jXp-z*)*T=x#LeN;!6 zWv{o!i=i?E{1|x-ZR?r4?!t0|9ni4TN8vT9RR8 zChLoO>9!(Dg4lMuit4`_Oh^!@2BQPMNGy2yq8-1Qxvs}O<4GX?`R*XgZ`8O*DhM!s z=ok|7_7qqH#?KiKW|l48#L>x&dmfPR@bZFXnF>L__b-T{(zu~U;w)~(d@*FZg7(1L zhk3+%$AGu#6~?3;zt3}=BMW)eVaeD%*NA5lx{LG2niJ7}!26d00Gy%4DHu}h4$Ulb$(z3h1AbX!Oa1@r+M8DS)LopTx5-V%C zc)ib2Gr1UQq?PB^g8`oGmC&d4*c(&U(RB|Wby?A$Lm6rIA-?!qeDL)R8|#|akX%e;w`0pO#3gZQ*rdy9v{TDLzSqFF z<*a6s_07IMUrWJ0TCDoUdf!z<9wn9Xkj7EG*B%^$dVBp7T;*(%(?je8(Q%6Xxk;Ra zr-+gmp3!2B`3q~zzh|Kd5>WN1-Ol3UY6lU_Nyla1lWwcL5v7CVo$Dn}vPtqJkb&GGZ3W?#{9fM9&N!85NX(9;{q5{gVlJsw-PfoghQ**ORNePfDPX7Z0<0(>ai<2ru z&v_Cflh0Gye7sCSI>s5(%7vZfQnmY?>)%-WsvfgS52x>R|CabcyDCV7tZVdBG0$Sp zPxy|Mla7;kAH*WRtTHem-G)zq;$J{mr}RWgvph$7?2x~RaX>5P>GCy_Q)1MjTNRf% zpYM4-Ur3z$fu6Rpto5{qz9&P*5hY&fq+1<-=3kKf)@H6dssb!RO>ZeAhK|hGuM8aL zLCzC0LVO$ovQR`I4Is)lI!5e&4MZdPygwzt1M%?{qeQz&Df^= z3=>2|$~JfL#08>bSl;cBr6wIG^BdkFj#|y_<$Xv~pZXhNXQVo8T-gwsLQrcUCdM+` zMQC)A&hq1#n;_zI!)exO57J1JiGkU`Qod%nPrhGoUc(2171R<+TM>n=)5MIq(nec* zq^0@#<}7B#qRm|F=RqW(UReWgv`)TukUVsE`I^$iMEmEfUyM9az;&U~!5Vw{SpH(( zam~S7k#AL=t07+ekW%_WjQ1Ib^L_1?3=Z#3$TM5X&zMHB#j%wU3T*_A33wxoG}Atqc&E z!0n?qIUwDEt2?9w!t7mR147en>dTIBE5j-TS2Q7_zUmlk-ZyTi(LLXHb=0F4WV5CQ zx-Ub3ZzQAot1Kn0)rC+4=U5DJrhRzdBP$PNkrLA4Es047u`?vD9S7^SYCN+9$y;Qv zGTr8>=eH->Uw&Y_NYR^Ck!wL*f~?5YvpOQABL6e>9iTO>QWV%U&)5CDE%b^(YvRQZ zt@@rAF_%HCLV5a??P!GhxXU_JXU@?v_F6j14V$NRJv)f5^Up+xbfi3%uLJK*o=`AWGh-=m8jD+9!3XIwGx~YT8pY*?)v3_ zRCRG4lBB>hz#dQ__l+KvuOFG@hJDkoH3Ref9UWx*DXN)}JV&3_P84~{R%ws@sOy~= z9%Ehl35!kKwJH)M!mh7r2+cgT9gd!7@^F+eh1W{Zjv)gHDR>A!k{L`4%PXV^_rYQ; zKUcedXC9MlwNBG-YA4D8Y0hB8Le!@Aj*;KhF0+?Gt6{zmA{!Iz2q0K(L+ucj2TI9g z^1RRFd09vHF3}CzgEWRfL_XRWMW;BtVgKDhmgc#8Fy%&zen-d1Z2J0R2d|O)ye%^| zsE^UKn|eH#Kk|7^uvq@AokWv?;+N4$k^gx1fPWVR80)}II*$|92Kl=S0U^f*iYQK- zFka7N7&@$=`LYrRo8BgCI0NKNf3UqkIpxH4rQ_xj2 zFDx!*JFx(go6yRgiq*XTUvDdx)Trs<8NJ9~3?z)V`8jEWHP5$&SVHft(>bgd=&#l? zKvYJ3TdX;{&ISU8iw?P-kiUr-0TMcI!O3X;GJnY@b3l(g@7x;orwO%r$JiRz_m`;f zusVpEX!Tfm>%O&vxDUG;+caON{k*Qo47B`A4rxs~M_>+tP4cSn!FeQd=^z`fDWFA@ zFy4<#AlbD?Io{Do0@g7+%&PS8E62t;^cy1sx;#@hubX5Y0}41GN(OBXfA5YVbKaYT z$71Xou_Vc_FAGh{d(Mt=)}_%9c};CWph&I?(uUAX_4*EhBKepb;?%SVd(Dm^Teakt zSyr}h90W!3ak)CY9-{6Ja*%>not)OoZ>tVT@_EPbH_d+FFYy5&OYK@pE2${ET6-EG zlK)X9K-R2(=ZOHs^3Fx0a*@i6J)H)|@pX!oaA^Jm{R2K3NS+;oTZKk zku=`;u1I7~tz{XwcyxH}7{11;Y5z$Jg!BQ4rKPHG`!|GvIU!0us*=Jh%l_>p0V6Z& zQK=P=p4ozw1koK{#dsRyrJcW!+z~0}7JufRH^U%Ya#LxfoZ?HA-J&VKSKxyuZ zx;jR_qcY{qKY+#nwGINi%gaBK~n)?D@7>nQk8#0Y-Q}O3gsfW(TA#I|?hq zqc}CRO!st*Oblz;c}?~f&m{(At}346VT_L9p>pb4|4o2BcjnU2zb^VGtt|V1U>Lth z540o8wPVQ4#0vQ#Ep?L)VKc5%j?gakzZ55cob_)LvSPXJl|83?V-LU8IaYO}wUQ>3 zwDLiWs@pU>h6tK4|HpKgZlPR)m}D+pJ+a?tyaMBBCWlHj)NIcI$#bjrVdAllciSCg z<#M9~6FjP+bqvW3QgZr(CMM9Dtx$%uDDM}d4)W?4$8}UsY|@Ha{qwa|dtFdgN9zst zxj#CzJkR5`u;Mz*&QlMhc@9RZBqpN zyk-$LXr>=|-F1*{Drg)9i69Bn`;MWR)s~y0@TyDCgSew}51PZTvcdS`jE$ON(9Fu) zm$k-+Q2|^Vi)EJ4??31z#?Vnw53LgC9YgbuEuTYPhSM^G1UUm&EmuCEy{$}ohB;i4 zo%gmL3_J!(aZ1}E?dx60LjR2yFIu!9(m_fvq#lHoa-I&6xwAu|-+#6XSEkOHrB{oB zrwSAuWMS^1Dsi;ZPdgVA1g_PnE*Y(R(6Xon<35+t5^x$By0z^Sg-<%$x&**h0Gt zTWk$E(OmGFL!nU*`f>;o=UMJ;gQeZvyEzGxne(%Ur}2Q~9a1XPLMtx47>c+7O;wWU+q=~jiSz(B^3c-Hz6})( zXhSD`)9T3mbT>4hClbTOGhw!lv2zcW!xk%{LJz8gs7xud51xk0^B{SnYiUT1U!98v zMz@skEl=;beZ2lnwR!!VXwCWuV_TkEb@cM+@7_T$K~<84N}De2mxyN;y|hfD7VUNQ z9KpZvGyQ6Z(t_)@+4C1ib`iRbbg@5lzXaLm#Byqhv9HO={l6>U2_Cgs+1R1j!M{%G0rN10L; zy@AF6YKQzD-&mo$gt};I9xX&kkWAQ4v6L5W*;}nYK}5zX4UEZK_vcAW^sc*-bWm5H z*GiDgN36;lho*1dvbPPgK!&E}a!4c3$nGF3kN1*qHrkwCi-k6-Dkn-Aisvx#K8d+% z*;p)+<5K>YtAk_+?<&-3)^>F5{N9dF9FImD8EBQ?jn8eB!$kf8tdPqe5D5>k*px=N zZueDU_{gXZO?8qt>k|VfMhp)Oitt7O`*ZC4MJ`G8Eofye?-=k_EBR&?N#_Y16GWHX zp2FriiCYKp6@rX`WqkHTDTxtVipoC+jS1AREBU6(T6QN5p1}aJV{9?2dzbdI`lltI zD%z~5{L&~0`KNj&pQn6MX{D^y|INeZfTW7jF#1)lAJ{mR7H-7raPkN+xL0F(5c~)$MtL z?Yo0yf?HxCN>hVc&&$gDN-8~I?GnfXcaY=5YUp#4jFI14F*12qEfynD%Xf5;b;d-o zbkUl*tw^32awLF3%h%e_TtZ};ercpMGF#&{CB_Lo)yqA!FRPteGQK(Hs9L~(-GzVt z)IIc$#0qVh+ozNu3W>t{lzueMlo&qkl=b5w@iZQBrUc2fX4Jr+lQP8FZqwK-7MZM3DO|AH@il(r4A#=D;f!SGi#zy_@q-2|W##9hkPd9q9_wX?<(Br@Pt=kitC zlWf?@N-_S7^t#@UYv(F~ZiLu}6qcOk^a>CIfktQ+lhOrS1T&JeOdo`$emcLl>KKu< z0d28hvBt;e9b-k_w|9Dj1ETU-2g#e==GCL+MD7-U-RJ@0k)bG*lUQo@`EveZXr{OM z|7#zT#!$vzpLk&GA=hhAN#qvzYIhLSks)PuScQH2X2)>NbGPJ_NhRL3-UkW4V)m?# zIykU@G3;AIYmRNPbOfcpENF7A%Lrj5xA`EugV^?>G#wgksz;`f04h~EGZ1yy#CD&k4m3I#xV50cXDU7CmFr{N?#AQ(gFT&m(=MnNPLmC74P%`760`hDXk_KqFjiP7idO-Xr#;g@UwA0y z!8oX;@eWcRidS50(uz)vS*XyX9$wsTp0s&CwqT;@W0fEU&*{TDh@EwV6kb6{pC>s7 zF3d%{rcreMCW#6YMX1i>+Wpl{0uMzLIZ6PPCAy%qgXEz&ojMucI-m*<#S_P>!?%~f z7_qS+9U}xrqqXQinypb-D8|)jS6V}<)nyeHikKVtzyEL3?%f`2!9g(u-3wvmq0fy7 z2SvHMIzpQoX!Qq0(P``wa^n4!gQD0qTOyf-J=53<3&qgu!@+aYvkoF#W_g*?POW~Rz(er_ zmgF4TCK(;$hzx}BN=p$NL^&wV5~>W6hSt02a8T6i>8_;gty@V0BtPDP{`BFI=2pkB z|0h4q`m!Dqqy&M7BBq1#oM(a9-}Betq3Bzy4MU@Sw(!AVqPQv!;*FlQc+TLW=vDLo z6=%+1qPV4)548GnKTixUilEKag8axS!617rce>3H(s_+JYWOJ`J{oz*(-by>q%Ik%Q|8z~=oNHvB^m(6Nf4O&06RcfqU z6iX=h&?3_|=x^nsXt>z@SGTUMqPM~PYVqvh+N$sJe5eAm(Y8o*40tG_neVhdPpf5G zSttgovc@ZvKN#+F)D8*Kk@bv>SUD)pJM=_b^mb;!KygG7kT&h>ZE2O2f#Pwas_XRg zq#P6tjUHCW_=qA{IVkR$5aZ1>HY&E2gJP6(P>??0XF|-%La{g;Cumew=@^nnyI0Ci z>%FzQfWbo1ZiF4ArouCZX7Es4$M2*Nt>FJRS1_0;x`Oc{zfu@9m?&ndfO%P(-hAtU z8wgt-w_(Mb)tnu~WQAS|-H#NH42-Q)q;g)$-fGwe#@2FlM`+e4jgf1xP&}8u{4?Er zgM}i-6>$90A}#G0X6K(GHEqUUp9RVEa6{-bj24!*EdmF{sBkW5FRRsp3f3Gw>~95UIBD zgg}mK#RjI)V3$GyY4cT%`*ED&3ee)k)ge5?-jd-YQU#uu6=&KkEihUP)T#mw`$WG% zY0&)o`uB@zz6^OQbE8eKKNuRvAo)l;w3=o?LY%P=CQoU}PE#mx*e6C&KZWM@(gKIX z0FU*`yV5lDTlFtNWNj?Vi67 zyVEH@(nxeTC`Mo(vPQF?3S(mE(qgL{?Sy}y!}nOl+?XWAx%pXikl1-77CnU4P-rb4 z&tJ$`Mf@asJX;6J=z3iZDw-0Gb_~_A!26_0!?!|^!%k5Glfc2Nnmrg{V}c_qBsqyk z*u`O|D2^<5@qE@FjO}C9)bysUc|WpXr>Ifq`=(8%v>sA|_{k^;Z;N&t_Em?SVm?UC zYSN1Ee=ox`J`6h{^yT^En0Aa@?Ay#WnpvDYAU3ualkxEEguR1Q55EZUG&kFJpqxzM zC+5F#F4CAstv`8CY>sQ|HFz$tql3tjC@nbNxMnLp9JsGzehb^3=1|t|ssuS(t%!zs zF|zhzTa)z-fp2`qS~QFn{2pX;M=C}M(oE>XDn8hq`*K}aousF4ksz6bZmU`itt#6t ztOPlhPXZybUv+uT&U8AX-?DunF@xUyzVj^8U2f}#R~XO^B2X77xAh+xp(TbLSW8pg ze!OFxT=Uzw_2TSULTq6*APi+}r}r5Q;|sV&dJ(@K3F#CMbq z&Zcz`TQM^+G7O3;%MM!p)(;fR#B@w>kCy((<0kYGDu^B2ULqjnX|gUe>cahMSFX z3;wK|%0>qXhj16Qiqd8SkAKtE>LN95e%sHp+7Xl9?OVi1X-2t7ELCg35sNyo97<$R1Hm-NiEw^A2K}R8{ON zw3MfjL=q%#^$miak&G^%6^W7Av`uJ#25*Z*$5@IAIaZxUagvT9>SvWR%df1s6U6dH zNA-;7TizBuF^=VPz>1qUU*4W0Q=kkPuc#qyexUL01KMXtH)_BC_2d2Xr^=B!3Q0Nw ztFw&)-K3%AB;-7c|Awp;5efjMC>pLe`$ws+?ASZ%6w6X6}$$b|*#c54SKdIVqRqODtMz z2gyXrOLL6p8+JN|o0bfxla9iNuo0M?gw-=b5}s05dszY*qIDpCP5QLnjVPr;WY-Xh zw(7HkAdiAlEh|@hidcck$vsN5l;_jXGTQ_Ru&!ax$%}j1sfEGGRk0O~u+cJ{gphHD z-Mp4&H{l(`=DtTft#{uST{DgHsP&-HjrtD3)MOr3W&Fa6dJIl_Wx`5xL+UT5bnQ#O zW7FhkVs{MNvG*0zrggl$gB+1!CkJh&w3S@L;i7ji*0gC_5&cW@a?!)wbr>zf)Q*wK z-v(`1Ns;dE6|2CMq?KWU(~SCBp)xQeIR#@OER&)q<&X1?OvkT^4yhG&x*1@CtjKV> zW&}7NuXN^5VhEglDhMS-x^L)qJ|A1O^lg6BfJ}_YB`H=8jWyis3IS&4Ky^9>>t1T? zqQrn9IXt!&jXm1$*C-zu6s&k!vAxcN8OexZSf5`B@FhrW9ov34N4&-Wv9mDpaHNfF zL}Mm3*Ft&g>X@2VOHWBRNa-{>>Ul*Z;ND4o@8K z0oi#lA_jGqG0O9{FeIsKf(J_z{#v7B_!+AP&1m7`->nXeyr-nj6P{VZU)9h|p1wMJ zuVw&k$ai*-9UABQs{Mvn1P~ju{K%9>P5v8{0wXg)Ife0?z;})PSg9yaZZkLFrM=?5xEpzx+@J^I|#$!-&RrGLZtcl$&UCc@PzVb{op|t+8 zFeka}pD!z|^C2BX#CJ{pIqm$lj$yj)FfnOz^^G3nJ8B1sg3@#_`=Ny?$y|`T4{0TV z(Lr*D{4;N(9gSN$h-5ldjS!Y$>i>EYb1%7LUQ2kLj&aT!;G+lc)@?7#GMToUDhSO^ zq;Gc2NluYqMy7LjjEt=J9WoF1j0#Z-6~H+`*aL-neL@W@uNkrDapOLf{6V%sWC|{VN#ZF@v}uH<|Kz!?}ayZ z5*;IRY4Izu@S7uRVoY*It-6wU`@K;Gkj$myYPQhQg!Zy9CAlthl&8hk4wQ)sl$TX{wHR-TRJAQLna;p!k~i(yF)O}wMko94<~Is~ypkc`l~um&)e z>>3H-sYi|uk!zDjDpydM@OBxMR*q-p1g zJQxeg=_UOCn}L2{NFF9N{Ka$DdN9m0bO39AurPFXjB~_MhUXb;wLE%C=Fw5}{F`TW zrX3>>#h4|RPxH5v(?N91Gp>j$Z3c675cuQb>z%Ax>3Tjb%txX_SyJG%Z>zm7{a`;< z3T8ZNWZ&$Vkjxvs8e$~ERM(FLNJdzzMzapd!=N+q0OI>n3VH4VvqR)nYuF{cs+qK% zXkQ-hUg0&32i8M)3`njhgYrX)uh$d9V?y#wxt%>))51H5gLhP{TN;QyuPf}7Kd$o} zi`(16gyby>utr-tMHv|I;H}GwR?%vC?!i}rlKC;awOi1qIi`uhjFDo*a zJ_-q)!z*4}$5=}gP0%2qcKr%V!9yt)1Dj)75xlCs*gT>7uHBS3UwA6D#3D`{y5ad=*V9zv?0Jb_kX z#2Uq$V`r5|K3EB{R%c>GYZLi{Zvxwwf z?hPPrXO?v>$rR;j>?KBkN>f_LGy$j<#IK#Or)aXq>$*J{`>a#85`)$oX{ECS(c`BW z51U5w?jP{R>|Du{vfPBbR{}8d)^)G9MaxH8VQa~k7m1dr(dNlEpAI5(Twhry$x%E+ z!vwJ@eo7nqM@+56IGL-L);w>MwB4>>?u|RTylEpH{n*m{+CnY}&(`Mwk*!{;`K9zp1L#CLV_ohO^$VmiwtWzQ>xNs`QZFL#6QV3lfk@z!`S#B$w> zF2Fm0ACSDJ%9(T1c6$#_?K^qzmJ;Ts4RE!3=JI@hUIk{}cuLEt6C-ckvC0IAriP%a zgTQ#uYd)9867h~*+D$x-ziio)%zr|@&m5GkyJK)SPA(f)Hg7xuxP>#eU}8x2YuYp zJz7Ejc@Pz;n2sf){)X}a^TGI6ET>idPX`H=Q-h8~&idaa+2flweBa?GT1kF)5ZGUp zD(#>tcDJpVAnKV^S95_^Lwi8-PP9=JP}-$x$qvjndt%b26IIyn=i_^-18Xe?}j8qOv<}?k1_H8ZD0Rx&6!sAZvj*)*6i(7JR zsryEYe;EY&okzf59mAGi_SvTOkNc;!Fj-eE{l!!4{#y*(8x!{DyTTQ; zU8tjjteCrIz-cO|{Sr}()s?)!rp-Cd*)e>~T^hcVXKeX^#ITwL<_$mfFUvj@n`)pZ zNX*~WtNsbHr%ScQXyW{Rs~g7ZM$M=Yi%z41`0{f$^=-8Va)QL(%QjOLydUtM>GWB< z9C3a`Tu%%bBwr&Wn(#{hv>bzVHQPb#EXRr+lV`~->PR|tn^RNlHt zJ91;LxY9(l1hl6KaSaG@X7LIS4~C6dM!CH9$T%G%S9{znf%Y7K_qq%u(yL@wX?gVO z5OCD1^fO3R@`tdMAhP!OXK?tVGI@ePmw4T36AR;6kh3vIkY^Tc*rv^>NPcR0;l^Mp zayHtpfQz=hE?g(+Nj$|;!4if16YpZp!R!abROggzf-^tQ!%YX0aAmSNe!Rv#jM%4;)i2+I&decFxIRu2VVf zYTq3sWE@Q8FWOvln^zFUWL>?jO_MO_n_cs;95pbnG|8)$uP2783KE4)W6MtM7;aE!a|XhT(vt|6Y=#EWsyqp4em5R9*b+Cpnm^u6twJDcE)5*~s4 zc~wxj!uhdiUb6jNoy?tmNLiB8q+EK?bG{O2tGR(+@fQCO`-G}G1Edxg( z&qob^>e;boDe?U(?~e~OzpB5n1VmRK_)UwsS?(;kbqqOcV0#Ns*J^YOgLO%b zhx~|@dL(%U(R;H^YOPnY2 zObnm9RC}h7;bPqdWn%!eLVObZXSzXeJ7W$vD{S%Bv_n7`wbn>Op9H$lXB{)J5v8+&hvjUAq!fpv_vGk(C!;_-|6O=20??^As*rA?Q% z=0t*6URQTaizfTm>g@?~R1BqX8Y7?;kk!B3=_4>MNh8+xQ_J)3PX{{^y61oUZ%lX==P z@+Fn~E{pN?OhzkQCr3%(%FnWCxK8T2`ku6HsO@FNmr?0KV0w54gwiqglrxHU`KxUh z84X7TTC|y_ewx5_(sl_}25B6AJyij?PJ-}-9whC<`Ws!__+Z70VT$1C5Jf(D$c-}kF zF?LveTS6P_Zx^DK?_{j%)ziAs{riRSq*q*OwDA*ds}AGIJnDs8mYp30e=)cQu+}kT zts2YA)Q#5sJRQWATXjcxR&>vUWNvspu#~1i-f~crZ^+m+bws3r69BaA1{9lahjztKj*OAtGv*EDR=6eFJ3bxzD0ZsHv&?MAe3#J^}ucvGLFgMinI ze0tLY;GQnnrvrS#l4_z&3TOv$s3>9hnx}caI|gXI)t*+~r_~L>{^=fOC3Hihi99dM(R>5Llc$S0I!128n$nsyepY{u{DnxYV%+{JReaaoc-lD9WlPe!SP5bOQ&ysa>~e9!oi_oT%KrPbS0Ad#S-0q+Fa zp1Tl6%(TjuJs6o7&T{1aRVUQoJ$Xt(bdg4B-YpVe#MXcI+q6pK-_O@!J$bIGD{rR4 zI)*?83T1K{$Ej6=9M+Suu4Ci*5nCWZ&XirVr96IpOAvj2Bd@4CeoZPcKl{)zH>>5| z$C`3^il&Zecx*g~kOHmeh))dLcK+!F)0mmsK~DZ96i<}LZTlO|`O0kCYb4Wo`bo26 zEOcOCJxLoV?t2|?&+5=Jn!#GjMH0ho&N5x%&W@}6A1Ntqx}Z!VGkNi(=??2QD;O#0lS7Kyz4=#RT( zE^S`l7R{cuMU08D2jaNm0n(})-a&Na>08>$w2Y_eW+jN{Uaz*;qzO1TMx(=h(&yoF z68h`XOr|qLK@Q3ryFVRcXS#rq3!~8m`q>EY$=v8<9lq!wzW-_D@n%P)V?>51rBUD{ z;=}62c!&GsnRpPE4)s$wbGT26T%nuIDrz;gc8B|9R8@A-W}o``3-d`?=v*kRCfjc- z`y#L164PPDC{N+cVLoX!5jdTc^gJU&39=z|gDY{71WBGcxx;?aEw1k!jWG}%1m-wa zHwjH_wbdE@d?Wv#U6p=XTTDC18a7Z5+O#F<$?o}NqQ!$qieIL3U(RT5KAcZ0!3ac?<5Es2j9( z@1d`LXNW)=BX~ZuEeNvAq@%tqr_I3hjcDJ>zeXxzBt_RJ6-f;FcjGG0ENpj-j2LVk zDl2GpjFa(6Rr`%LVcw?Qj(=loAGqPv#Pp_V-}a4uGTM$B5}Uc*DIog^7Y{^yW!J<%Y5wKW z9LrzWnWJXvHtl?u=XIUqtAcCR9PmSlKLHtEy9yt)JGY;{k+JZ(VpNlq!W0RY2>2^Bw&|XLmjjpPb&q*fQ)ZVi7|!kt%E?uw|JSGCrI^x z=*siGl+I`-Tdf$BAf8zjL|0Ic|IOu|AR$9b_KFx}|J^2mlAS7Ap~CZKT^%Ds##7Ew zi${Do9V8#)p8z>cWa)WXZnF%y^8==pm#u?@nL%8OH-p%?6@jVRDV31Wx^C;i*p3*Y znv}mOFDHhc{3+(;d6tv2WB4(xe44ZipE^xqM67}5;ITJakP;h=-=QS{5kc<0dG#wb zp9GPy=O{HQ8r4NQhUICpxsvmJhwSe_qaEc^T0+uyhbPQ3^qH57ZymyB%IAB$TO{4cW2do4+dEwSWmqpfgoe&f;^e>6jo z7<7`fg7jKMokb)yF@) zF&pg|8^)}MO9GS*qKQ&H_8&QjCxq`aAXvOV}SCj z^Cnim(JBGR&RZ7;u<%?u9}KK|T+$gW4Ydy9vG*;=(=3wL0}_#sf=Mx6&Le*@a7k_j zw}M6ynb9F+96@uMCwXPoF)UB3V#V`BaCXNy(AKY-EUl*Xw?DE+#`SA&xdZvMrtaw= zAT>t$rv9cZ01Vl3m4sQkF1=6#5XzoBCk_mig` z^EZeG$WkdMMWSfM?igaD^l5&j#R?3wJh3Wd_%BaseR0556Ns=t%6_P zO!JNol6ze-6v}&BeX~nu(|WK+CeIIDcL%YUR_h)-?(ze2(6|`YQ=lF4^Dl^g6AUCs z)cnQ?6c9VVt@8Ljv;?u=y87u{29ndEsdCEd7(V~i$qz}-r#mqNBr;{cqrjx8j$WzR z!!n(YgLZ4sTDm=ow=aW-qt~1DSHZ94*36?3N>My%4CxpyA{bO~`%V8F7?HQG7B!Q^ z3G1wy+=SoM%-v8Jps_^yq2;+mxy`SF0Zoi`bP&yC8Y{AR1v>8-?%S(7;`28i^#I9_ zcY_^dJhP;Rk-vbAM!u{~qs33{82g;shLa}>w>pN#7QKVOKicXibLlg+7>&Qt(8TArK#_;Fbk!~a)^|Gz(VVPN(eYVxKUTV^m(bCQ2L%RCPG=^zqwSJLSuB4+n# z0EmU{>+=1h5@}+@z$KU%w0cJWn06-5c50|xNp-B%c$fg$Xs6@ErA;S{=omWf#No2k zM+fnRAt7Sm^FBwcGv%gHKdSUj`QR%pSHb%?`e^{!`v_z>i8A-AW2o#h;}KfC&=*}Y zc|Kc(*^D0EF+!u{z%uaRY!QFX6aA*=*NZ|K=Q&Q^L>(ftsB(FqG)s&1Js=R(Dc3Dl zc|TuG$2gFw-Mpc#HNLjhtcS`*3myD|HhmKlIkG|0Dk-z&4q4kBvzkYY{Y+WWFHQmAow zVGWjMtk5xH#DU4nCS{rVwYHcCOf0h+*17G&WQ@K#hK|hF47?vw z7`oqg<;xGq08WzTS{a9SjM#fsjZbKHAKE}r_8W6tmLDs_ap@pibm9CJnkhpo@-2)P zj@y=CRoefKAppWvCs>z@=CJiwmkSv1H}u-+G@40E2J?KGP(i>>=at%}V{9-xi)>3P zn8@=W>KYK|Upy(2=Ry1oKU@_v?-+4ZQTSOjnabA0L7otxV%6L=Z8larNai*34&0N3 zTRM*$Ah|^*#J`+pH0mAW47>V{v~l~sA{Z}RSFuoelMW9^{)IpjoagS{*t`ga^M6ON zxJmksPmwo4Y{i(|NwdGBe*l3&XD$1t^`rVG(QoV%^LDps3=r=i8N`oG%y}M4PGX2a zTn=YE&5h^d~qs^CAW!7fY~PALUyqFLDA%xYN%*tYkTRiTZBtPZj~b1M{4cz3&X z3~^uOUBcrWNXN)zB*uMNzmX0A$T_fP{XeQtMq3d~818Z(%s=2q z6JbhlN~W6sOb3D73B}<4jZmbJd0OvUZ=R*ckpBQS%feV!iczdV^Cc z8xsOf%H1IC*D*xQ?lvT)Jm+)oAPFJY$BUFF?C-%inIJ&@%URT9?Yj_sCeSr1t0IB) zW^00E_^?1gaF(u|x6mOmRCkoa7OR0c-_e zr+uVYK&&J;v}5ExUzM&a=~O&@%_TSCDpFyP*i5+|(lJ7Ee{7;Ysh^f4>`b!EXGz9x zmU!K1yowE(_7T;_r|Hi;x4M4jc1n-!kZwbmlys07c4d5p6vHp=uPZOFIm>Q67ltOt z_JCv*SJL^;Q?DBx1MWdl{9c|bgLV*KM-Z0gHS!x}Wq?F3KEk<8N~JS)YZ!U4?0>o~ zJavNT7#Rdrgu>G?>!GiIDo0S06<$=T9m91GOoq_N>8;qbs}LlWicF(5TicrFFKm}p z4U%?NODsCb_ElbbtPe|{MF+!4RuRWZ%(?Ro?HC8#4TSJ4MT+O_#lT$5xJ*ylZ0zYE zYwEppgEW)SrP2U`VW4%B5!&|~9mJN+D%0?W|N1o&VE9@o&MS%6{R|Aq_(tv$tHK%W z^j#ezxB8g3r%Mwu^A3_xAB0zvmVh*(j;zZcuY8Tvm3&(F zvhx?BUN-JDdCCW4&$yj?o)hcn7`kMXHZW~^>c#LCR?qRf6J%#1CDZQh^dp@i!O&c+ zqI=Q=BD6!~|I{Hh7tNujO=AjX=Hg(|mpA^tJA|taSYA0zz^cV>i4ivL&;W0ixZfHm zWT{=1H=6Ru=@>iD#Z8<+dNNzVq=J@#p3<7ce{HpZ;b-WLtZ3m|--PtZ#Qr>g66Z z>c!r_F3+1Kyac~8Y5NU>JV69YQlfY~(~1Wq6Oes}EJ$h2BVv^x8B$;76z!Prr{no@ zx0@N0deZm%$>i#aIm|`#FX-Ra`7n_3&&QosZ?Fzxc>-Grz0t@((J_u?ELRLhnq^ym zTY<^2k`QpapG7RtGsJ4q10b z$2UUDCW!bowUM&~*<)M^#jl1~6*GXQrRX>xzdadvX@uK(@63P@2aB(y4|j-6s=FF9mIETy}@HaKS5k#MDD*) zY;IaM)fQxd87YusXT7U@{n9aZrk)ryU9P$5-XPqpv#^}#^GOBR-vf;<>u z;dl8~ZoSySpl zoHVKF{v`U1Wg*ovq8-5fveMGOjeM4B7K|acf@O( zkTi}SZ85cP=pOSr6#weevJCN}Xhu^=PW0&IbPydGK!9gNvyACMqh*AhyQBt8c@nhN zL1L<5W``%z+@xsKGsK=%X4*7e`Bnf*jJ@p2y=@Xv<8fL^5QRtl9rgZE$u~hTeFTQi zp|x&XGd(dvRvDD={7L$A92m}Rc)^|hBS~w8wpH%-fiV6@MW)2ij2ibHSf^DqMhD6N z2n>@OuY)8VBT$>!7z<+ERBc{eBg2XOq!2t1oqcx)*?vkUW|I#1M^Ps+^q}nx0??1> z!-?UU8Qx+qO^o(*j6B!lTAtI+-oJ}(1K#a7iVvRO#_Aw4ww3}0uYc5tiwR=m+@dwD z+qRy!but{4lDlDjS?%k!3Ga59Tt$cdfIz?HdL{DYZdM18bsT=qN;^+lVLUM)Oi{W$ zydLX=k)idfnFm(?er2HW7i4`ywCVyZ71t+VG>HG_jaw%?O|ZG$xd|dF)oP1h5ef}+ zhO?CN^7NwVjXx`L@-fh%qES_wOt)=Vw_9boLd)D*$Hh>(u^Pap9Vab0Ob9vi_+_Tk zq&KaD*m1#VwDS0!qhp-dvuevUrnR+~B_FtjrP6Jr$oFyeNRUjW%BO;6w0zoBTVm+) zwMveJX9K4l#P?d@nJwCMQ@=zo&A4Ti4Fl)PvJ4ddVrY4I->MnS`nq513ccWkv)5>1 zl5NI2F%VrB-P2iW*L~E*zydop5zo_U(hdP!EIJ#LU{pX;(tXf?AQU3>mW9f2>coYmOlcJjs@2fo)qoBHfW@5w;em)5OL z<0AB3cu=}tWeB!OaqsSBhXnD7=1T?Foa<1YlEC>Q1IA1LB2~>+@9!9dvqaDJPouRc zM+ez^*skFwl05Ch-7rXJX%&`@*4OK&Z+xCB=_2WD?(SdU$fh$&tUbYUUFk`uqlP8BqC}FV(*Jr{2RbKkJK_x$wwHwx)~=|> zcp?#}V`OAidI58j%1djt@GU{a^W;L@LmTdGrJuwwG!OSn10Dh&7QId#rhd#7KPS*@@c;qH>CLxk=><>7r7J;kpmP!b2MvZk^P`$SY$O zHDl30TBFDXY9NNwmKEi^tDa$^LA{<>w0aIg$t!jRRFY!TFiywtOqH=9JWb=qv`vga zw`($=qeY#rU&iQh-7slFOpR6V5a3$Ze^_Y3-)#^iK{RqBVy6CAq>02hV_#8u-Y8zn zHr${Avn~yb#sp{;>IBJ%>U!U@oWS1@(K56ez793CYU<(%Vi_!;f^ld{y)BhZ4AetQ z@ZCxEw`VrT{R2a_oZx6Y*nXsV9>`OXMg`5Dr0;ew8B&z<4@s!^O$YrmjXv6u!paf$&bMdAr9*~6y1cd{t;EPkt6Wxscd^Qi<+=y{;oiZbgVELHjq7KZ<#_DDoOh-T0ZFN|2>_a^Xpg<-hQ}F3qr8 zO1afY+vL4?^~ZhZ9781A=l{V?yj}*(4I!>A2uw0dTvU~iSL&|Q>epQf9j6Fh% zdr5m$qeEy$Sqed5p0e@m7@pVdEC%%NFk+dNEdo)QyPduHi#=_ZXdR7A(F$Ani@oiZ z8aJ)4-V>7ZoF!T(%EF!WiSN?OsW`IaUKlmoEt%HwObW#5@i>s7g7NeaH- z*3OuFm|x%0AC0djh?v#~d}ze87XK!O`IxxcgEtOu9Rt)hDdm5o=?=A*CEtMHR8%>L zRy~^?WaXojX^fFl_NV8XAerZCbryI&K26X*K`f%C+VV+gYx00Z-n?K~2uVQniRnT! zpFRh*#zk{6=pV4=w%LyJm)GFyp^#=mea=naXeUZ50w#zriJOs-I%7{cGeJ;iJhy#8 zQ#x+TZuv!fO-IuvgB}C21lh6_-Q!7PA+>r?VyJ+0NR^Xp6Tb=KDt5*AXkT!n>Lp0n zxV?5-1l*G=hkeDmby-ps`>D$&$o4U`vJ#pIn4S)zn3=qd@E_$14g(9XKFqI%4HE+j z0&*`B+P&M3lmq{Y0j`tK7NoVP6C)pH*Q#$Cty~@u!(3aXiL{dc>KG?e(Q-8OUrhl< zz`eq?C~h?Mte#xOx7JuyH(fOOtX6GIkUZmWPC}yywH|e1SYC-*vOO#}`fh`iASbWH z%1MY$GJn=x#`uQFtjj$}rKjCKE`a2%s};+$^2E$@b_Ws6dS9;eZzgg9Vzw5-6rNJ) z-|;PAoXp|C(G1!^L0=K*?D(t}^{=$q0J6?nU|G;A!2Mle*LW44l$42f`%++7WQd|z z4_awJI>rfC&^SzK;;iK{W4=>$t=EuDnC!$vZ}Q zN7K3&&w51u6^>q(uvOR4qAx;sYRR8m96tXoRI*)h!I z6cd{@8EWIx4swoaJqU~J;$Qo;^2ugyKxk}`NP27cm!%L32{2jbWW}V<=c~E-RdC-r zX%2slzjMvN@UvINy^}F=B;O$&WRhd!8HcKoW6Yh8D~DQTjoZu$FtVPFxm` z=GlrT6WvS)O9P6OphFC=gB%UNjAhnse)^NdH;xUtwv4PpMLWj!{NGZ?Iwv7K^6d_y zAzs#{!kT`u_esFe!pxJ=Dh+@8c>-}kT;^JOO`Pi-#(5oNZx1gb0%_eb{MkV?KP^y8 z7f(U!!SDkI#o~~YZpHEay-OxWwNF&ln#FcFO+ykOdGF@UUZrtTR@fAR03w;!B84V3 z4WBF>|2Uj*glUhlo&||Hc1bD+iKw1ue0x_2Tw+&0k7XvJt@;j-Ob|AT)<%j_yy+eR zLuGr3E3vG#p078<7Cj}~%&Im#-!7O=v&1lIiuq0AS|$eeM5^P$x({dc!*_qO#{m0} zHs_ZAZO1UxiR3m&^XrLW9V54gR&skts}3opzaa8WwNm6W7I`&V-Z?Q!m!H-mHgzE8 z(Lv1SonYrZh<1#V(OjvmkSf->>McG|umeV!O0aBdT>FYZBuW+<-iJjz(f+dZvk4bH zqK~)rEu!DaFRQvOBwyLQ)7!hUj81kb(@YkVZS{}WzU5K+e2aDV_S(b5fScTw4y$|H zDi2tnlktx;Es^6{j)a&_wIjw)f7|giGIA75=bXaFBL%5S5Ir z%RrBWAuYvC3|FtgFq+<6uk$8Gco_U2oh1POTp$O-#ZkTVAWcrX^-T!nrgclOgOq*d zHT67+54VzlXJtCiHFa`h`Y2k~VhQH=$~!_kg;6zc6nj0XdO*x&6&Zx5sq|pz83D$W zlQQ-H^&H1cN)wDVLqEF}zBNOX*hO2@u}iL82-TL;Oo)UF2y zZNQ>6k`~m#qukGT8Vl;+QgWa9wrEpy?QLabH1a(mQ5Yl*we@LqkX(sX1ufIx zj3EIeZxTUu!)T1A#`sGNpAbF5w?%7GigysSbTR2qn@SjegRQ*2=E9YT^pKXjNypf^ z5M!2L0VfdJJqN`-Y#9fYndNV+wSeI+g5&q_{OGM?1SHgOp3tTmTcc`0EnIBg)(h)k zRPP`=MoCC)9?x@ijEoutRWq7c%+wBX##j)Ba@s^qe+;l^?8Xj8n*i-m5TwG|nXhJSCI>uRWYJiU6Z$>j^K`49(j^51^eYB1Nd)(5q z3l_ty4TJ$i1lKu^6WaKOK2Kueayb<=r@j~D=qkshMU%+vpVs+?`kk6Io}lRIAS?gF zDk`PPcw5I1b1C7FNh*=Qx!d_N3Ar_tP1B_5C(8Mb`zRm1MT$zhsD~`@b!N$R&B1ev zpB)4f_?L&tYFqRvk^B)xa%(FNn%G<$eaIhW<~EDjO-$M!kjN)EHQYuEApX9sJu|=ggCt<6xT8g>JoDP;Ib8QZQ9yZRJC~bo7Q{N-9bQW!&cn1 zl4(nJH)vG4Z`S@B?;>C<2WzhO2rKq&=}3ZzLvId3hBRBZ2gA-9m#j`}T=Wyg@<(oE zJWDG-w3(!hS+sRZNR}rt_+YFI8W0BYqThbRV-hXTcDyT|EsJ&xhtUYwb2NdVR?bX} zm|NimL5m$myK?c1Q`Xp%cD}cIe`0JLTXnvZdadips!nFo8C_$5nZ^uim9xa~Ee7Kv zUX}b=kBk}&TwkGyYxnX=d{ZQkLnOIB3aum0mZ;Er4&D}A9VBDwI03IJTKsc5hTGVy zSV6Sf$@8+pG_F%Qt!CCj6B(JBz`n0S6I!wV0om?~L5mqI?p%gc9R$NQHFro0dmE`j zFi96$n$%~r9%MgnD?&#pN-mo1K$~|G+$!S~h|oaVP89U@ZFvwGzrDgJkO`kA#fYc1 zMs~+I`4>g=cG4z!1kD60;mC7AN1%z(?2fUPm1QT-guRtE1i|)NW%R=eNxRtuKy05; zY1<*q9X`2XfR)S=zbH|Z*2B+FFj?b$4E*dSUg>xcMvGaOatkLp^h9b}i-&$nyLn39qdqgs# zI5k5#Nun;#w6s7Xd>1P|Chdrqj&UNxMNn~R{e;z`2PlN^n);?G%rydFLhMXGt7bNN zSMKQ`I`@P&&7v8y%;#M>24?HKqB%6k0}@L|)VKxDO|vZt1j1pomS+~va%**rz2zWP z;IS%N)gdu-$5kYnG*i01BKCRJV{wbn0+ih`5MCF@d()C>Z7bp!$)1(GDM^I98#Dl9 z+dOtRBJ0lW!LNU67B@ruk()6<9G7mc`+q&)|NNoheyZA_q_1gp-k;$^kJ(CTX406F=k7CAsznhVcK6(2|9rXl}sa_p~;3-4T4q|KQP11kVH%g4NKnf`Zt=~9ci4L%QYpiC|>f$ZFN{qE_ z)W{*v+^5xM5=7wS1t*#RdZPUKQ%!7_irFD0Pfxi$L5|L9ryicu+25;GLC-Qr#b>g{ zr=H@gg5W*(oh_vuA}@%T)~!dhQ+qJXN0cHajWN?ggv3Co4zXsVbwK)atZ$rgYC#rn z3~YChb@WbE@C?u!?=nF!h6|di(yB4*c@T>X*K6vNcZ94j^0KqCSfMGOwmPU{I?^`O z>YTRD{q=0CpF7huU*Z&HZ+1nY^RkaR4I6`I*{%ls0=^Li>tM_!$$Y49gVmQc%>j~{%Fu%A?M`KHsqzby@M~ zAFYw9@eS8q0kF}gPJDNeb)cSu+lpj<^OUa=M2=nF{-p8t`@M@1$vKMCK$GcywqpJ$ zY?r6=Bnjp}UzcGpot|l z8gha}p0&4zNaLKKqp4zZdJVq%<~ zSFKY`?An5?Z|oB&zZx%x){e1fVqmI_6qUI3ca_IH%n{M=qIn5Cj}aN}`W5RXMee(4 zX50Rzu7$*tHMq9Fu{y?9pO=lnJ5Hj5WWaMLn1VF`?M?GNLHz7<7K)K7L3zDGWQIr@*>ZZ_<0i9J1W67QqyR6He7-rNW`~gH1^f|AV<{ZRVbtpqgotf z-%u^xcb4C^b$ViAEU<8jxlPIrp8B}K+0L(4sGc9OITIu?j@@Y~n(N%@Am@xzwd+ZW z=%i=r=CISUQk_jxMYY_W^E*eG)TX6 zkdRClYTQaM7a%gg)2~v_BdAkS8k!ZGdZerM&ryQx3G@$cl z)cK>~as~b-tq%Wp*?oLtuIlhOFP4{%k$<6J3mfgzYD|H|kd^1|?*EqG=hm@WF8&%hs9!qRE!EDGJBLP6nl=d`g>GZDmr2 z#=MSt5*|oj_R^T&rOL$8K7ATIzP4zl;E7E;h8%^US7F(5PK z)y@4?_>h^Y94%5hODMv-kV=AJX6j#Yi}U?TH>83!;2I@zvRLwz-dy?;LvpKEE!&Ls z{f^T?Y-f^KAT&vsz9jG)w1cS%T9@_nj&##3x* zHM#^5kMd$*DK5U@Zyqs62BOBFDW@mKIeG7v{|0S5uaRkBV;kF{D<&+1#wSEMh_xIN zBsAht6B|#6%y{l7zmW#i-*E1HKIf>w)JVkT_h5tzmR&n47HQy35hG(Qpw#J0i{l@V zox8op;5RM&Rp}tQ*MSBJ??744gZRz^Wmovix)57$H$n2U4P@;s)$}Jah0`G<1F9uT zQlofUV+pb|Nq}IBkopQ3dhZx&wkp;lno67w;_k)D3{pIo4`Ll7v(PdjbD9KkyQ>ar zUG9kIly)DsQ|qAhv!%SE22bb2JBa2zf+)yoYWeGVkOOt#`m$)#zWqTmuFrdnEuTey;Ayz(^CV|4-CR-Kwjvv4>`|LU zXk#`_g(N{BpN_ZXGzWvGiI^B7x8@YIz_c&O&b&(Ixy1)o6H%X+b@aHF+ZpX>Y@1y^ zjD%LyxM`nnUvb*uf zcIG71{k1f5lv-S3lR^ebMe0;!oan{{|%936M=DM;O<40hXr z;_#3jMReM%B4G3<0h?+J>(7Bv}Ang)p)pZb!-0oGZAu+Pm`!SzCQoB~`Mk;M#IOPvW z49q!>F_=X#{h^@;&bgVx<@hCR(al$A|;UKow1C zQ^DyYK&^;CZY19o1jc5{$263~Gp>co(Po-6uEq%3syFUyKE05TxWpM3Q%%RbzOz%Uj) zzUPMlP4ImXXC0F6`1`K>ON3K5?qEp<>-!*jqIwsLHqz5ic>f&D{L0vAVo^P0bg(l8 zyO2kqYvi^#-x{(|I}4s8U~~)_QDZ~S6RUlm!)9*u$+U}aNGfF2~Xw>*tIE(l) zV%XJzIi$|pQ=LnYOh7NAoEMbNjv*ok-96(qr=w$-X7E!v6-^Yrhd@;c+LxrqYF)JM zo{oV8H123KuZ6ff$TGh*Y-b(u?PLUq_=*~PTeNY7zf>xKn4hZB1SwJI-h;q^+Q+p8 zq=~8jEz{&j`;E*+Fu%t$;a%P_R;ZOu{~?vIyUGAS@{NTQ@0ZjJ?X`G-_%JIegWw4p zMh6K9yi`$^Hr-+4F9-}SToFGQPlQZ6#$NF3L$JlVc87HgT^2Y}w*JOn1Q@>8ab_vL zSIz*Ena)8Rq&${%Taf)t**-2glUCmt9R#YfCR!?-wjip6c!1sc*t&YVV@1Mi=fY2UAvlvlkjq4~e)>L8Gj2B&<}4&31MS7r8&T_2oVjnvE8*;p6B6z~JvtumHeSQ_=e`6~Q5YfEU%NmfE_UsN~ zCL7-`uNC?{$FV4d7v*WhwXgSlBk%Qnqj*|EeLBeUSWs)+B#pQ?`aLLNPlPCoXMnak zhMlNk8>dY~tOw(ih*u?uG-`bNvf>*7S4DV&(8htaW9%VXDh88R&Xf+4|5FBEJQ1%R zVF%=-#Y&EWW(BjYgTxw!Gs}5XLx1=B9Qi@3XxT~8n$zuEOppzhsqu#1p1qzJnrU>6 zI?~RQ7W*cKXV6&E+d>lI=-Mj)LA}2k;ENQ+cPn&7$vKae3QUP5C+{Fzp_0r!wpIs$ zClf@HS@h2*SHM4Rs_TYxzfnN~NcdQ{zxNyc{)~Dvo{)nme$%vr+GPbT%`>z(lVLP- zdhH;3RKWgJnib629mCNIEteLWWJwEtLAD6jB5Mgvm#XDeb7zRR_7xhXb@*EIB0*&M z7}r;mrtA|P#O5^IyDWj(_e$KEPunT_@}R}>EuWr}`Shy!)6Cs}<01}_wf;4&Ht7p~ z0(sEgHcpjHdPv*-JyQhvbj|e8bgAa-5Sc3MGRfXNiGjB2n(4HaR3lO0=Bwf{j?5o&Rli;@?17sgL)cdu}9T@dFRRL7%PUs z7M3St(DISQ$joqILOW zp;cPwyvdH}7&~J6N`op9eV@>A-e(QZwmYk@<~zM~0L(*4)ZL zkONp_Z?q|CdXudMzEJ4W0aZ2DIK&eNC5G+!Pvx1EjdY`yie1&u@6TWAUER5xkQ*(8+ zZ>!b(*M*$ajQWjP3)%$v!EDtXHPe22=QGIm~?qmTa3nIjSdm{ zON?FYpB*Qfzlc@Fp+XX?emEitvX@l3ls387xfO|_>jZW>G0=LR!?$R?EY^ekua^}& zhTk^NkM4EL&pFeoT^*R;I4b~TL%40iT9>s$yhEt!wmWW2>*PlVaT`}Np4ZZSLBiDP z4pEZ->FSi4<@rUA(jp_ej9bS5WxW`BP9jpt^Zj~}ey<-Q&lzNP5I^VI-VRzl=mm+` z0w$Hvyt4Yyn7_b;V09^f#baHVr<77M&HIE#Has1~MikjQ{}wHrdqB?AJ4S1p)w<|8 zJ4PyJF&Zb!TcMj30%R@NE><4;qkt~ZrQ9VPzkZ~N4G_yy9`$%0bEjYKfj;G`Rwym! zX;rD}PTbqC79_WTFe! zFR{M-cVs@##Ee_=yPdF~rhUD;V=VW7KH9XY<96+CoRxc>MJ+kaj$!8*PG8ns=yPTz z#>p7FX8&od$-hVMUYX5hIx-=aN^4Df$AGd6=5%?6b$vO|_qlQplcfvyepl;r5aKJs z=8b3X4iamWtr%}b+C8;*eg`} zLz63M4a5Y=uUEk}RN8b^Ywc};NR91cgVDGZEkR6>tx;ZFbJOM_`W}%_O>TEuc%%gD zAf88jRZ+J5D4$M{Ky?|{2#p!vdV3pM>zP;8y7Rgtql0XyMLCs7)wiNTov4I4{b$=< zKMx&6XQai9t(v**8`F!ovsuOp@$HVW*51{CA(jPJ2a%PLX^j!^ST)u`Z0EU!x5XQ) zdoa!plS@Tm-H45nurW-TTcjBNw9bX@4gyyB;HC;aAHg)G?b_{=SKxSFS7ug*QaP*S z|1h>T#wlH|);cNad1NK_DIx!&VJlCUYITt1|0Z>X*Km~%A}52P`hsbtntmsq&teR@ zeiy7brEe3ARBBmu&p`_z8ux6+H}gRd)ot2HPrpkrQfb!-C}?HCesaZ^XNpuInd z?$TaYbP#vhe!X02U+@Ex0asvjGiVIWc5n$wsZvEvUh>|zJ5I7ua*aZJSM4ehIKXKc ze=XW(Z$;+BIAgdSYR1qPeSc$^+)-N6o%l3KpjJQUo!4D7mCiw;$2ck_pviM-Z^eIsDO4N~2aF~IM^u8>NRqkC;Hp|TQ;bRNt zDl=O^7lYIjeQztwRc;3{mpD&wI!0s|kLp0s0{K?@hojjPQ|bxdV=atTM!Ed4w0+)N z1Y?y_LI#u89eba{cLqR}wbL$jF12E$QlylroK}%< zdtGa$GOi6KP1e2jloT_STH*Cnn)Y@(P!vOztK9cy&>U&|nqa8X>jPd!+lSsU)>;GO zbwMJQKVhjNzcxhyEfXCykdlMMrDIWY9qXF2P2dgmDf(% zutlTNC}t>UzA)-w)q^4Kr?eTBlzlv%T*V0GGW0_hEi>qw0wa`OBy#1wtafYE2xUn} z&qE^sz91`(lZ95DCc$lKD-B69VGu}!o5>y(jN19S#VB4#_6;YR==q*Lut!u4xc7j z+qa09b4saI9Fn5I`uqXG9DdE`9$JLbT40JH%G@e9A*5BYP6x>ckqU!&nu()hMEo0b zb5a%S;UFkHDKnC*z?7DLoQ?rf$SBert)8(SklgDELBn}|C6KC^p**W-pUTrJZXYma zC}o$O0*mDR2skNbDA99)2m>uL)sB(Z?Jhy&O*5ac=peQu_SI|qkx*ZPT7P ze)$Vx18qsK{k~YK)%a@_3Xo-DcN~;gLo-091=O}5$Q`1MeFl03j?jL zl^E`)22)r@NxP34Cq^7ONT`J*8IB_CUks@R6}GyQI``HEgAzjqO#Se#IBOo6;B<^k zLamfgCQG-1m>~SZFLY4cW8zaEma>3 z(-o!1Nt@j2HrY_G=p?Mu7$kwH$hH^;!@kihz zK~&vK;a6y)MEy+3ATQrm6=o-`iqdbA_`=+=Nt`F%|Mx+BWcIL&voQ~Es5LqWBp~Nx zl1j&ep+|Q43n@wO^_kyE5Qq0q&A72ntus1Cgc>FSoi@kOzAQ(}WSnC84q7k2)y^D4 zt{Qdk4xYf0cMzMnr>fOMi%qSA9L$E*ND3>GZ`4&^WmD&ugG3`mdk0y|9fP1wOMC2j z5ZOCwf}J=}B^|^B(~VTU*Ornb2znP)Gvz5Sw{a)m-%!kQAcG^>Qm#&UNf6`=S9FCY zF4_;r{lRgsPI;xp*{vg*AQ;jt%gErh_^g8*-?k2hs%R~~zX6xaH~e_bn~KorfZ9RU zf!{&J@-*}8-9aRV?-GHe(M4Lol_01Nl%yIf7Y32t>_Hq$}bAF`Km>BA3Kn^8yhadIy9TNL{VkU`}F*I&XLd1y@0L_e- z7CN?LD}Rv~*Z7n)k(B?Xb&wrVWPh5t;d97CU|$?*HI2Q~k9bhS#^rGgnsSV_cNO25 z5(rM6X3wLiW2}4(gmg|*s_s`+e6mCkKKT4qN)n%~u#&_OS}nUN$0W$vYOCxaNLJ$y z0pdVjKf~;D`&zU*$Lb&%pO^h_?nlle2Q!b$prPly;@0RG;$Boe=kckeW7t8hIj?nE2ku>vbN=N# zJYD40r9KeYUkmXG(XPWf#tI+Er-gQlv>M%kzl zL1ONq#a^eqt+paNe{l>oI$9B>f4w_T{Jqg4aaz997k$I5ZlSS|f9E$9r^LuT7_-E2 zNyBwdtLH#oe{3|yXz^mJ&K<#+)t%NoizY{OItVBO|3rRit@h_h62ZVOrd5I(&-6fB ze^v#MCBN_t`zJ=22~J+81zG)?g0%k1G`$v`Ms)HHvNQd>fiH=jxxTYHh>dAg+F;pZ z#it$P47-5?>EnHa6G-dNQ+ji};KVw{nr2tWef~%V`#@TMZftcP+gm$?EmI7=(df(1 zE`+fDR5-L8S{Bj<>yCe8+d#K9e)b%mdw(3CRbHf}>d%8f`R3e-Ay$2HJWpae56s=1 z))(pbt$#<+87Yz}O$x4kz9$nZR57t6{}JNPpIWTw(ww4Qf6@QV#n+x(GG>zy&0m;% z%{J1Cul-Xx`6Dzckebu#7;TjUGLH+oRzhPr^vxZZr@FD*<_X}Q4kB@`zMPU;Ee|O= zL454$P|z&n8l@>AVw_c(Ag{pNgy#ba`oqi2*hu$A^lg|R8*Dl35L$ZErbQAX7kgFJ zXOc_}p5e&^@oiNOXIVfz+{&NL^pVA(wfi-5)oDtJVr`!9@bRsjO0ZTQ?r;F?~$_eYKaA= zhS0`ET7sS!Hg#5R;55pKX$Lv;4&l=h^k+fj8)$}<3JR&``P8ri`uUgTtEAZXsk$eI zpFhtv!=fF)`vE!Pqn2H0t<@Hq1_boihStia$+h+I^R&Pg-JX%bNhBIl@H8J{1?NF+$+>f@AEHftmH+seKJszzSBMpIhp@vnb*TzRR& z8)*XgVN4}RzN%7%XPHnwjl9IrDaH8X^}2f=>Yryejj+*ZM|}UV{EH=5CrD|QbUoM2 zU+gi*9s8!ynY4rK%&n~WWjwCY>L4nav~L{0w5H_l7%oskLBEie?2e8R5@p!Ad6VVs zIpV`eZp}*b3@9Iro!>CFi1N%1PshNZNb#-njj@QgtAn^_Yyv7NPde|x$R)4oGon@8 zp9QfoGOnMc6T}KkXBKK*VlA-gz;~=@{k`H`V270PYTQ zup*}dh+pkR`Np{(fs4jCnzLi9Oh3uXzE=m4&~y9KwEZs6+wzfrc`p-IOsAuR#PCyR z@TB$lw0&HV)nA5ncV0!)I>yewfa=EPVLZ>Fc`H_lZqX`RJ*dOzWb9=22+V4-bZ``Y!QvQk>nJ zd;kfX8@gS*ajMl8q$Ve?BHX4CYfL)G_H|pL!ILCf9Yo!?T#w(Q*+Tr+;Nj1ox^e-mQgzaJcIKyZ?z0*M~H~6~KO|-4&9psoU zzhZW*@T!IG6IGk3HGpk2GFX3I;DTC>Jt(dE_qV?T49TDxAD8oVJRXdEh(+Fe^I4G- zOE4TQJjKVqhseadP&? zZA5E?Uw}kLx?o4s!mIh$#w3IGZ|c-4`VLa9Kbl@YK(>XWb`qpmbjtT&Xl_KLAd5x( z+~4RJXYOiL9TEX>&Hfw$jRGwx(ZOQU?9V&M%3P`fchbqY*0(x_puJx57bJ}NMaS^W z4sHvSgz+r8l-w?o1D2=z^!^^`jRRrhmLVBb|#-!R#QKH*Gc7X?hO+ zKFL{YUeXb(R<`@8b-tl<*F4hr&(ntgK%Qgk9E@>&sz@J}M~_Kisd$I`H>oVXp13zYfuIBUKrG!@eK8DWnNl(% z^;c*At{@7(uas|)MnO+M7uU$}1VZO|9r7qHt7B}}SrX2?(q*fPFQ~#p;}NV<&dajQ z(K^N%Yn3`U%U>jKs=p^zeg`8n>2gI1*1&pCsTO!hsM7G{!B3lj0EUFFy4RJ|)sgc) zh(i<}9+xa)-v7YJWL>U>35$f#gNFq{+(g;cRj27RX$L9w&}!YY8pYDGssz#S%e`i4 zXFcg*f}BjI%h%x0RH9oq4+-PStPRa0)>P~4Z)<;RgS0^`F7NMX2NBB~e%GK7=}EMI z!TZZaA9kndI3RAV^nkBzuaYj9hg8&hFGcw^x~LK0Xx^L<(2D?p7tJTZy3>d=HbGvs$pDZt3%*GslLNDs0*YdJyk!&)U2Lz)wk z|M9X;?va`}Wr<06uaYlA&+wEa{2`S%w)R6lcfaaEa2lj5F?wHpl~LfT%UxJ~i=HAb z%(;cs?CfM2W;`1a@v6*HtRP96?b(lCFm*&L0-h|(IP39Ner+dCDcO-~56`>u&!D1o zKmj8y`ss`AUp~XCju=aM!?j-{`HN+WOE*Y9m$~TPF}B*Iin`+b=pgx79dwO_H9@)F z2RWvtyfF`{3h0^l`~?Z9(|UOslf-HAirpO}6U4GFVR?Q$J3T&?ygopVWd-q1sv8+G zo+)U4)ASemZ5Usu%p$iaY5up*G20$+Ew`w8DQ(Eu9*}Kkp(tylnk<;y9Ya0jS}Jl@ z#GA4bFg!O13XMkEg!vsc3`~c4U^aneu{L`<7ndW{d=LUHmc)a!LgPjbKWcJIewBi5 zcqo`xbV9Rb=s8t_goIr68p1lnOw5oIPX(?&W4H0|CkTEutF=?iw-aoB8DTh{g zl79egNGLkU$@Ru1vVztL{d-aEOnax^A!8by|HW8qj|xv%CT_cF&H)6Lqe$G06u@f} zhysSmm~j6+q%0TWLmeZNw(^DCq#feDS+xbmXEE+L3g^($)k2^I+3q#SoR7m<5$h$b z1j(TEiZ3jl3Crmqe!O~Oi$$So&O5+}xKqYX8%K$Tp&xX0YJQ!kIkz4V8G9A0c=L=+ zX9uxyiV(fVV9istQc!{%h|N`Tj+N(j{`k%`D`S(AAP!g4p(54sMGlLjF9-kzM{i#C31o(Cy!l*nZ8Df7EhK5R84J$m^~nQ$Q$@`Q%T(AHxE7EaGRKH6q+*pTpeSbjDNux zplQxE0^LS4*_PMk&YSjs9>n7MI%SATo5&s=38IqMcxj^2;;VM5Cy0yBDmd_B_trg1kjQija~z8%=F#+31iGId zWlkTobE*{s1fz%Rio-9Saoh7GYQ7P?D~&1H1Va)dKP)ZQk^IP11Rw#2+@h}X=1bd? zAkf~c#)^4Gpr%G6(C|M0JXl!etY_W92+HvN5~ygA;`6#3JytmH(CiJHP=V}k3=!W{ zEzt*K!8Wtxlt^dFlSU_q%u}QH89A_OW__3JOs6t41c;J)dijrd2gyiLp^8d#3+oMO zk#B?u@nf(zio1A8enNqQ6sR zAf8OEcZfCDImFJ({Lbtc83zRpMklc;p6TDjumvsL+#tM~#hHlA(0-fMn;ayTZFXGIhvXyYm#ks=hRV0H{Ni|ax( zT9eftkciCN%EW}W5&wQ#ig>~g@r-!SUqLb@x%Hrj93rc`k zzAUMB6^n2GKVDZ}hG&%n8qF!Ct$T(OV~m=ypt(S-4zY&>DE%y!!(*9|7&L-bjfA-ms z(W0pfzVFH_Zn$MR^~Px zMDu@P%2Y`+18@H6u&63q>AVtI{kB%3Nsw@l;;1|A3hC>9&@euw2&N<(x5w=zLH0RU z51!V;Z&kCz(8%~2E`+q!OW%kGCRKs51I?D9hw$-@v1g4N{@17Y^QW$H2I`iJrfA-i z+Q{=a^R!EiqxGOy2eBE~KW6dnaqA!;@K+C-*T!oyc{ZRE5+Fb;X#nNP)e>WEvCC_r zt$Vv=6C`uy8l@3ZUhvSF62nBM!5Ep=ZCTHP9EpwOS$Jfo_O5cjt9Vu7h>WS|AaGu} zWDuTbymXM<8oLzvMSnyzN)Yq0t2sqV&}UawPK@Ka%IcR^!)kYvt<0UnG5)t`R;lgc zFqD@6jsG2*u}fc&{5vuCzRYA=wBQ{iS7K?2l+q+!#X3lyy(Kt*XpHohp4-mU`3$Y` zRhDvLZ-6Dpo*7kZ%?SL+Xdpp!p19hcyaMU!AYQUorGWdRi)3f|9OsS%k#5ANEMxLv zMJ@AW!b`XK$s&iN5d0Dn%VtmSe)iX?tvt^fa$@x``eZEny zZB>4tRm-e{tW0vNo5vdz>6L+#VRx*eX3bxD+$D&qUUzS$Me>c@V$jaQtN=D5tvKEu zB)*Z+{3wd=k9^}3BV!=Lsb#czmmUViC$1YMWtI%hLzYX73?8H!Z9JDP>lo+gIVE~R zYf$}t4j-At=Xz-AFVcz+tAnh(Y%z21q>+Tj;5jiA=85IGP5OEt(TD``fhJW&TCA>1 zI~fxs<~n|70cj1r_9U>g&19imKUm7$&zj)xz}uTiwcp+`be&m8ywKXXFGxmnt0cOD zWrx&rU5Cy&ti5qG(%7Eu+bWrJmzt`f4JJGoTaJ2-QjwZ%PpLdX^3K&ttdv9~ege7# zaT`^~o-Eg;{{;d=Bou^*NzdQt!S@Hf%3YN$9wT~n5J*CuL+y+`7icvx9 zdiUd3zB7H)JQdHXx?$)y))LfZ4{zWwI!4~PwGF3`gaw~cd4kB^6BUk4qY}3;J~3>2 zwOkiZ+5W*ea^(tyr6Kx+TF`3G@Bs?_EP2o8%z{+=smb;IGXv|Y>Y)~9 zCx?wIN=zHxu?}K+A6ChfHW#*@2Z^z2jDwgWHgdNgsBcP*94=aj-H#LuPv(5Nt zd>%yMRaB}W_N&SOW+#`8vY4PT3?GbGXBAbFNd9ZzFNPIYcyq& zgWP%^T!um7I4x_E+VDZ!xiL0RM)I+zKj@4OL;Y`&I1k==@CUYixzU{{y5P@)>^xnr zk9e>oD!NN&V#ry7>(*HFhO6(7e6TrZ)iFtZz4h$#ooC{f(ti_D0A$Zbmk&r%1udT0 zopg}Qq<8uL(ysJI&`XRA84YS<8Dsw@6G@D70D|XW*%`E+#mRds&b3S+x%)smyJKt+ zOX~(9b&)b!pB+T^D394GEP?axf0ZB}Q!X8s)Y;SLgolQfo#M^~>BjYEkJz`4YaQ_{ z%CGes*B}(UK*v2SkMGs|+Y-Yw?uFuUu*zoLEbMq*RUr7|^d*HS`6WFdI|HCALd0@* z_x}BQZW8t4Zm_24o;b@tw^_6CwE6pPESwmn*Ikw$tl9X{@2b4KFs}|BMkOUX&lUmo zNCLwUndg!~o(SdSUA0w<`N=8>NDsBncQE?9Ar(U_HnkOr4B_`EKT}@wu+d8sWW`v; z^QPsWVI4yv1OnchL=@0Y#XXQvhjv;C9dR~dZoAzK3HIgH8h4gqI!bVpgER=HE}WeDK9l>j?w8Lsn0)*^-v6&@6t&i`TjmNr^J90 z(mxeLnh1(?5XmI>Eb4=3$H+{#MhJ{lX@s7A$2fWZLM8l=bUx2>#2ci#Hb|MINuKB< zNeQv%iQ0slRp5|TM2XUE8YO4PGD?vi&sjd2)kO1VP1N=BTw>&@XwY)unJtCqu3M#` zK3PK?pnv@RH}|~$wD^&ewgl0a03u3z7Mq_XSBZjt2Pws#n!zVk_}@b+x1#M;x$PlM zY@xZ`LFD)>!5G#E^K&(wOwz|F_7`isExzYv#dZh7L0O&8-LLTg!$C3f;w&+<(<)4f zA>vY3tdWk8v-_e))yj$@xkz?6PdhL0qfrtld6Cn+EdMM?UVYydGm zTgE-oLH1Gs)r2%do>9*Oq5D+(W0AXJeHS4FDC&*&n^-0DWtcxTNVY7Gs27Ubx1bCd2h63Hw?2?_QBHD z$b9C(So_SHU}Vi_&3-l2SW|Irg~hLq9$49DXIK4##W+Ze(J?Y7m=&=Li=_GlBpLjM z#1*t+bs_%;h^$e%(}&fTn0-Y&kIKBSsu@M2Flom)zDtc?STiBJhtsE~%s{Z7JVhY! z4zdv=mhJ_~^rAfKIoCSI$~wr&9e5ctG(LL60GTC9+LIMezu5=cQ{quA z98w6h`hgM^pRA&QkQO8#WOoo$exNWWv?;T7I!5N@Q8T5JCsF!$k7SrSRTWniOIUgJ z>o76$RjnGuRF)1&t6>2|^UT_pg2%b6q74ZE7W85lbr>ET=0Zx{|0n(e~>=~tC!{V z`W*6!A!C-uhtrrpdv**P?!Kv7mGgO7dB)#Vm*&ITG2|Qb+%W!-qQ*Y13=sG$fiSaZ z53*0kNQ9bl*))y3xjTmK4CA3Es5J9k?-&QhE+u}xhSy~VNU8-r=ljV(%Qi}9#&gDP$#i@p50es5 zr`gqLhsaa?$~e#_KAQ*$KxF5FfEhp|kFL=%ay7=fW*@AV6&>TqERUB%TafmypdKMs z5>Py=uvS08OrtKj#waw;lJ@bU>ZmS7G#WJdba~!Z?!E~Ukn$uwXUE7WYoZGptRb*| znyd*|=Tjpzi#I139V9cuQB!$5ZRi$eEety4t*#Zp)3iySC$Vz`szyX-+~+|~z)_DX z_|}(X>Rfg#G;e-dK0>RdzHK+PZhCMHxdKZ&edY4834R5E8}bN+eu>W zk$!ApJ}dwKHTk94x3wpc>hhEnagY?>p29tn#TN* zBMvaa-A-vL(=ghBq9ET|UAwfay=6R!vCq+(0i&_`p9N7^JKxp_(KYn}@w^bBpyV`h zM{RG*zA^4}q0#QcezRLzB65Q* zQX2YRi2jW|S5Xa#u2HLlteyW_6Q8UmWv@9Uh-5|`*O832-J^r#irm|Z2eNku$z#h` zO(yU>I@`jZZ&>D6bpq22mwMuk;WHI0CtF$}<#`Z+c);M1gZ>kSImQNR*=gMo?;z*o zzp0apb_6#@?gEv{mZ1U8icxy}3ss=`&m)=E-s?vSWPwadI-f^h?g4Oo`DHm?)|{;I zo&WG8k^8Wc#6>fZZ|UwH`HO!_?Ys=Gg((TLr=606V$s{4>Q;j2TBUhBX*|3Jkx~TF~X)?_XnEMR-0GYU=i3Th6T?mf97xDrGiAs6(O zegq18v^nasAL zQ)1|V=q7eMZJJ%ZgTSkNPioOgX9vk$XnRw0U27otMP4VRuS{$9NXOUY31wI z4@(R@M(sk@tj&{EC5Vo*%ITTM&TRCc1o64Yx!qP;erO#e@^31<9*foyYsasBnL`Ue z7EAEq2^lSOX)iZL76a+&g9^04*Mg`7shx`nhz{Y~0>raJtDp39(K3_HzY}V0xxFf{ zM7pTOn?^+G=ZPbcUKfPMZFB1&(5OL2Ap>AqkLPp{w|o{WmLBW#)#r7E#i}w*uvEOC zC&^!AwxE}#_oFlZWb74E@ilLgc*oEq>r`Kw#;dT7;pZ9}Y+C)~eGWJz-xejypsJVq zC6G#c&HWQ+>!gE7#*9)@PNe&AJtH%LnzgXJRrEPMWF`qgu$@xj_Q)B&l<8t9oU zO^N4TPmsLNW8A3=+R^A81OgmoqQF~{*4u-w_l`5F;KWj(Yc?zZfh$?<5@MUDy{-%? zBu*)o@JQvYaiORWNf|r&uX1*sB{EvXb>mTTPX{sc%WM-;S$2JD9pv~Dh^hsx^xHBL zT`)fjuqHQcHmRLkir2R;+vTvd^q%d$GNC^4Ps`~?IyDN12%Xmtf;URAI!Fw7eRF$B z?cmzq92nHb>mn6@SMMt%NXEZbvfDhu%jg(7eV>vyqz!X5o=AfDS{vsUjoQ}69TOtZ zqDG&GRw(bsuY6$C6p@N{BQ~;DV(je#LfEDWysQU91@>gc!e#})jpLsnnfXYKcJR1C z{lk(kbPc4`=U0+|s=4{iknJv78L(wmiLq^JS*HqZpr?(fB#7pvt7Hb!^Ca$DFTCydG-gFpC`yPm6GNE2={Cld7&28M|H-mdc$dR5M{9TvR(SoN zFwU|KLZj2lvOOw2HATBFvw}99vO7qAxLQtrlP2ubRAdqa9&!=%!u(u zS~R+Vb&%u7aKIm0qT5!)U>CT{$tY+q>%~~-I8H5^hf1gX8r%YPRR=L>)>}=FAwfK^ zL$G!>O}nBUzljmph*F6HP0Z=-1boPk2IdWN7Q<^yS9rZQ z=^(yL%iEpTIBwja1c|(EYl1cgtxogzL^0SB=G#J8O6&BrIwL#~^4h&a7o;TgphO|yb`rnhnKw?5OnbCglRU2M>KK9fs=7#M3R^8mvHeZcGDYXHE83WOVr-wQ+6u}m z#-9$7F{2hGOn=1mP7FWOYbby42rtiy#Bo1YAdXgFZcic~cHjyw6)-x;jvzE`cweicz^|?Y`1)Ofl3RHjhIm9b@IXV?}r|cAM)+49V5TZs*m` z8m}fXEH6Z8uQ;z1uN~v;T`icy#75l887oKZ;e%zamA9@j zt6Dw&wa-+~?Yz;-L9=5VShYZTaQ%pRW?p7S<0_*3$W9|cAhETtxhiW=tfyA~2?ksP z(E}@JjORh@Y_D48uVj`I#gpYaLv*-I-tq4}FUZwsc5 zvzo@a>_5`PPLSN_g5rbx$~nhi>NusCtTfG_)>QBT-tVbT%V~*j3$zks>$=(WcG{;k zI*3BbzZ95x1rF^X`4_>3cxVLX^}H=O$<_C3EStg}Upu1Vy{{@Ot>)CKXO1xP{39Td z8YEAFBSAE8T?|eyT7#tR#Kg$w81ud@noY#>Ad&mMl;L7 z0;=&mQ@q_VY@C~p@B-}BG0wzoh0zWc#lKx6zTr|hAscVBu(aKWiLuu5b3IOe^saUW zs;4wxGj{lq9&3WwURGRh+RK{Hg5+Uxt}+p=I@d~>E}2a4E4J>WYvd`MCCHL<2{n^8 zaooBJ2_m{{QtZ&$BmG>IOs0?4sNh?ime^x7r zXLVs6WRH1egMud;6dgo|3Hnt^OAz}R4|B?OkWRA#l&2Py7%`8OS_yBiqgDIe^N!rR z9C~O8;y4{+XUq%HK_2Dzc?``gp_~GEc|uR!Jd^3D9wm_*)UOfGY+4*AJa0a*UAg%S zK_@gJNIcp1%sQE6>0C9N{W}b`dDnwAFZ5=hCsS!Rxg7MzI{-x!#(!NB~F zEHD#e4K30RPk*D89TFo$>m8Sl@S6#O#IQWHYW{^MM)f?$S>w`zls2u|Dw!v*$K2?< z(p=iAxAx1y1v$&ML22sejURmwOIWqOl{f#Q9m8Zv5gvGry}s=8J90;o4zI-6Ue@}C z?$Y0whms#iKRwG8g=_m z4-yM*w}^ayq}X;8bl+RY43em!^}b$$?7Vc#VLnL9{){*#NIpj82~%k*sf~i2Ag-9q z1_;fot_P+H!tba8Ag%1%?-7GzjvQ{0yj30&WMje{lpS8r_;d`-Td|g%R=y7D7v5{vychtDmmJ{Sa zSs$!68bPG3`uWE6Sref=Ex^+;at~hbz(bRx>LKIFWG+V4;SX&#rQf>evz>SPWL}6p zQ#jw*7_&k7`bUR=^Ez)k0 z#Hb2NdDzq1FWNC;UYS&$rffTV14@cM>Jk~WYkhW%y_Sqy(qe(w=pYJBi84i_8UM7* zEkS(m@>tA&Pisp*PZB$>hds^pa z&iePeGnEcO5X9;ozUSi3Oj<7wmzVJLLrcC4;jgEk(FToM1u#LjUr)42BUQApG%@sy zlDp!O5$5x<{OC2!=5^Rxc9D>2UY@S7>nV&8V6IOx89>rFq~hYq^$xxvN0-#R=AlE-_E&LV>N4W}(Z zbl6pJ3fjnNUy=aX*HLd`X(2z&@5G3Ff@`8dlaBuTw$2#eTr!~)uRPhr2V<`&j7hTt z{>#__hHfb_|2vKZh!9(M1eoSD{Wm^21BIKlOV1@p*~ota z*?RQqZqQOUjSiwF<$suYBCY?jI*3~wFv*qYL0}yt^7O56&S{;!zva0zFoHVb2vzOM zP6ye?48x#E7=F?|1W1NjHOI4PT$gDbBctqUQ65_Ew%Yf*Kaden7Es=VMZdg5M!l@TYl%e%Ik5SHyBn?U+uoIZ!_R^7n$S85JwCDg z)OJZGDy^jTV#tYEm7q-<0T%5b7CWqprN5D;0Y;u!OOdei#*x~Q<=-56ML~aoc8T-@ z-t(Z0SsKE$k9VJrp%^c&ktf=**pn*%e2uGHz|x`W+){wVvW!r$(`hMads_!yIfgAl zRFc@%LH2e-;Y?}jl06qWABabzVuzn4Rp)aF)#|=1TEg=zNvNDlr=isucRRHr^Q@@Z zltUA&?cY}9haiIMP-vdROFD+a*R33Rc*?ua%X0s>BEsVZJs@$$K%Tp41*euv&jGKT zS?=GP#&uEYAUlQ?z0_!PJS~b(5Dn8(ToziPrp0p!lDX9?kHw&o``h7||M6V)Wd~J( z-!$@pk%6@XV;Zfz(Nf)s1mzrPWeUxdXFU&MOMH}gDXE;<2Ppw^c7{TOsPo`|ulBjV zksGi!B2SgvR|m;xaaDQQNIB2D>KV3(`KXumo8fO@U8#-wIA_G#SBfO#0mg*+RhUPAkH(rA19YdFvuoBUPRCWjPym3nzZ1A)Tq=UrP zQ`T<0af|l0EI;U>F{z@Wqho9g*+83yH$R{qLv_q+bov|ZM_^#i811m&`C9CbfyvpT z)5xaf((R)1yt<^QxX$Y%jgA4Uobm$ZsciRc=wC)aW%sU=^RncL7rpqt|GdR%iJNqg z$fF%qfkPX&Xw{9GzX+=Ww$Suy`*Ctg+qbgZLsDB_&t5+e_pMutLBk$d1rT6(8 z563g(8z5iuW0wyugAi+hsce&MoncKPY*6Sh;1Jre(H||$$@cX@3;x* zZ{~Q;8sCs3|J=}iGdBW|41z{gf@t5?UwKJjNQNh+lSwNwuID*G4nZaJ@I(bx$2fM% zkXvbWpvHJu7%0%ODu$;Gbjax-;IV>^AUrFy)iLtpmD`r4ZNuF$ay`Uqx}4`MK08Qa zTz5sG-MQ_EUl>&xm!_q(@vT;OSU6&A+_7xlXv*mzI;Y}7bRM@qI)+bM=wNNw@W!Vy8mV}1t58n)TQgR zP^$$GiILIIh!Xc8WeV?u$T#&Kjqq$>fp`bmHoQEb&1hav+Cg%s8%Thg)(D-mW8^1Q zKGQIA{86kWU$_~FK|FKNzDX24N`cm(k=ifPbf|!lLC^qmE=Z(@rz(&bn)zW_$C1|K z39u96X}T0<=T1we|8x5_?xnN*u(G z4q|ai-;8%E_L4x9wlCKF(54&P4YCKceZ3eJhc>3!icJZ!=Pv7K9@*@D5S`HWC_$Is z$X^2_H~Rc1y73#4SAgW2R~ddz+VDW56mL+&@?b0`Bdw6x4)~4M>s2^2UOy~4hKkoz zD{m-pJul03{i78B=+sJ#(EJ-5@U%>%KL@_Gd=BGkQ=bm9G5bT>{mB`aueqYuZNUMq?OLK{A-x_Mwrl6({%#!h0a8UN(RXiDCVypbTXL{SNH z-h)`j$ooS}R^X6~Kvokk1<2Vd7{(WxKx*IY`VASYh7>l9EAWEkf-D?c#w#*L#}FOm zKe~T*Tj^)2<;)_7COW4b52H9i z#82saI8FGxpIQb3(p|R6G;x~wysUHLtdhIu^GM z8E8ZY(c$ZIqiH0-=Rq7!m$*l0M!>Dtni!cN+7_zLLp!w&{73&y*wC2$tul}xThy*W z9jj}6zUN6)M>*6vPv{{!hUXSpWn}ZCvQ}b*W%#QZ!u- zkJ_LKqJCr-MTC}5H+pG;c>c>0=JaP`=t&h4SqaRZJICEh>o#z z%L=BBS{u(z45ZSPu`gPIu0=r!0)MZ6y}cg|@(A20=d31-(Q0R{DJJ_H?sw+jNt#4Y zrAFXJxyk{0ZklLCi?9+TdPaZ1eNLd7qMXS}co|Tj#rIb(*N;>HTD&cy9b}t$f$*rZ4~F^}7zAEFGMWa4y9!)%7s>DaJ+oj(IZu_fh-qj$ zv;2dCNX@%BiG}?%+7o04T;(wb{HxCwc9dF))gdVwdNUyfMy75V(jjW3QP!m;J@BK{ zvKLpHG~QMh~yyM!BNwL3zAP>lmi_uf<%Zl`^$sz(Av>50%toe<}|O zH_Dh5FOo(&o(EC5QR)pHlqb>`9YoG3t|6}`>m9;QuDZi*>!j?2olB&*;h8&;JAwe8--_9HZp3j5C`sWTX zX-QRoTlr{vc$q02p6uu9AbV^0<(;vP6txbLSyi=?CTr~f8R|$7=s#A%K6o-B&+9^7 zg_~sY8dmM#+Ib|OvKQy&hy7*k%&PWUB{E5~kBg3>b{3A5jOl*%uH3iOXshttSxyHD zP%E5Cdl-Kc1(m$(S9NqJO>3~Fposw$wVHP0DLY5U(Aec|k(t$xSUU;g5hIK`iPpD> zeq)GLzsgCfweMx6nZrjQ8Mtu-;4JvXg#)^eT%$vsm3 z0J#x=r0k;h4fK+r8N}ny&5p5l_$@Be2F2zBA{nDxAqG+!`ZQb<#B`q8@1)dfbw!E9 zIGD{wd5$Jl(t|C}%qqVuv?+P?d+!*_+%9{W#!2Xxm4D)^3LJ~XaeDg3iDB+m3ctL< zK%4(g5C|2cbe8wYkMg$z)z6wX=8e_0;zMGr*ix6(oIj$^C5S|5sa8zd0C;O0Cx{Q- zU=|0>_HsWDk_Y_sE0MrD;;lVM5vJl_6tXvtpo0yG7c>o8hKErRy9trfi!WNsK(*Yba^c zdLu0vNes{15aqexjSy(Zh|CY`HWZ%oPXhtJ5e!pmDX2dQynsZDm$_*UTlmV;*TS54iD(Bg zyTR1hLEzA}TGb?MI>Kl{jsd&>XD+wjYoU+3N)!5bL=0-7)go zP|W1ouP8c+;qs3ksXV#I=Vb*3UeGP%X;ieAmA|l2oo{o2dWIpxJc$7wF>rb*k_^jrU(@sa-9b>uF!R55J zjy}&J9%f~e{Ufc<#IR%6|Ksp@4iCtQwQm=JC+gAO*8WDg-^vN83HENponQ2xr-sH&F+AZz~jiBl3J*4TGVNWsv1^U9YO)r^vUB-LV9PoooL z@8#gk(Fj_7*(DE|xNM+9QjLBx^#pP8t7ga&5Y9!m4iX9*V@QwvXePz=13_mLt%;}b za5_kSyrN9Tee)Sf2sO8g8wamApdBP{LXA=>rrjj7V}zesb96z{@Oh&x%O%SA;W~)X z%8R3e>~p+$Av7P#xjKf1jFMH_q-Mf1pO7G+e1eV1()D<{BJN)TM3w$%6IHuIEZm3C zJf{g3wAq@(kg2CWEGHEL-{{vfwL&IZ%^lixI6KH$Ry?yqb3N?m$;maEB~q+Bf8NzG zRvx~nKkyVq`+^*JC`k2>l+-GIs6Yu~a@KV{Bnb$=H`RfQf+J>Jw6EAdnwF~+yAF?nJ37XOm}rTsvvzxv^*AW3$e37kp5D>v7`}%@k-KRFlr9}4whfS{ zc!k;4t2_{;niHp%@azX>$JnBAB@2GTIZ6n{garoVc^q}^7!Co60E3ZMCm$Un@;cl# z{Xin+J$3T4zv)A&7=L&|MBYKRXQGafk(TeYTqH5{4B3}F^&37#V))4m%Bbw|)_Y5k zh*ipF!3%=gJtg3Kiq@)=DAA8(L4pXB46iUXt()&1#75@1l~&Q*0{aOsAbegSS^HIj zcod9Juktc)?4>`6X2{}Nr3c=ZnVg?hCJw`wVriyyWU2M{r+Jdv9%< zSXsSS@JovxTK1M0OGW=_g3)qa?;!c6<}6huT8MHwMh1+&57RoX-y{akXI#B5)^m)u zMI2V|N6V^=*9-Lyvd#!J6<997kHbM?K#rQ?L5ZmBZ%yN21Gij4V`=6~CK+Q)ex)zVuKRSq_UV6CueRYsCMj*g8 z(t|uVNi2B1A5g+rZR3YH84zFI*K;C_Rz`V1WS(6q4^Q)`pIb0i*jkfryo9>tRS9xd zLfZ<6BRlP>qCPnjU5GxXLPf5Zq& zkfYEA`yZ;Uar?9+bFB=2iyK7K({I9H36iI;BGn}x^4>ATWg*o)v;nbx#>p@1x z@SV|OS#Jf6;{Uv@*yo=qH|=e;NyPAP!XOEwp~k_`ZYGr&+m@B^?jrGVXXa5I1T5CL zf*2Hx)A@6Wk*j@5qJ$;io-6Vf19JMSn(R|pDi3*pbda^pt7Rpu5tZ>iiD(p|ak5g~ z_-4n*&_R$+E6WRQe%3K!m==?YrX=CbQ!`N4%A~sL0;D587rA5X4VP&qp|O#*0)?#% zQ%VP!WkC9*RVZvp9lxx(r1k0P7|>dVqyUMNAfNwvjEu29XjfL^MziS6v$lim$ZH+* zRirXG-b}}^ktrw&4>ace-)IgP`4Gi*p&g4YOUN`T&)$EW$-|3JqJyj%)kvC)RNd$? zJV0b+qCTn*$^sGTAhw5B2j*(#JAXX!MPKk7Up?fJlc7p8DC4e zdpS?fd3TJxLW_evNLf{neF35ndL8gWXepMku56vs8=gt)zBq*DHw;7;oKo zAcB;&uSTE)$O3T(1Ueq2W_Jw9b%$WzrY-yX9G3avD*hZTe2~>aj^=`tloM$hc=b$o zj&EpwVOVx24L@~*8GtO?cBPzX+|1`e1TO4##?#z}Th5*!=J|2q)}@W^wM;iLj-RN3 zd7iJ(U$$0ExE|~?N@kmeAsquFBym+fenU3|h{QH@j{R4+ZvMwDG87urUg*>gl5w{B z6{(?7gWB7|)*QC)y-Q1bRtJIdYXvE!n$!FJLg*RNgQbMSTK4BTd|kHy9YNy02B=&9 zqy-L;*s^h==+A9x~qz_tPHL-loCWt?zp+orqccr+yG)e zHZq?>bEMSOF;1XjQ{OLXNzT{4ty8kBw-HWLu;`lv1CRe}1Wik-cgN6ibZzR`v3Cqd zbegA@(wZdCdVmWU`51>sVQ!BBR+y}!anN3s%#N}5kSmf)YxeZ54qBMTovov-h-wFM z$#WOBfwcVXeUK3IA{^3e*IKc0VcK!-+JrO*k``evSVf+3SDi+y`OESLh}zago~Vot z;+8uRE5hqvoQ{#VVCbgugQP7x`f*_h8I`6O)uOqD=A|6y*B)L}>K!9@`a;n(csl;p zG0?NBh|x)0)+Y;Hm~~vMw8)&Mw%%gj1=U>FnoOcio3|r=Vb*au#;0kPt>bhEgZfcX z1`e&A^t`LH^pwOiFLSf@`R?jjp)kt}O8XYUq@&B?YR0$gaADSQmBs+8D)8_P6T>9G z+oC@3Bv~Jj4Bbl;aPz1S?LZMovU*vB(uPl4?|5O*QKX_d-W*q}I39*$z8$kqKdSdH3_6Z#ywTjtTO%|fB*TUxR|w7a zyGL1=bKGlHL4YJ1w3-10K+rYz^8Nk|wQXU{QLZV|rg_@*=fIrfxT>-=q13rLhAvw* zXv5+a|ECA>y-uljDQT;BmjHmoKI>|>(G+BQaE&>~UB}`K(k1c~eKC9^@$YrfqzzvX zRlQ@)ym@(jUYA?`^qR2IY?-Wsgjtju`=&8>T5WFSFQ6z~2N$XG(8U-4l97o>c{I}! zU5O5&$lb~pgeJzY9}th3hgX#{X=*sLgXF4LKH@(TL5lp*8t@`O?SZCP(i5xrB$KyN z*kb9+K1AvK5w_yK!yUA`*6AQ;W^%QPDE*^Rm_5F+_PIqTrICME2U+kMUlC>NKytkLM$E$`Wo;hCdAHgDqbbdXiW#*7_* zMLydo2QMkj9i9wbqcJCl*(rjB(@J#ha7>KjG7&rqP1mxu+4uT}N6BLIn9?m4+Gvi7 zY~zVOJbj+TkjzT{#lS2wRU6<-5DP2ic%{+XTCFBAVoWPpOZ^c~dhdLFW?C-rv=q)d z#zs4#NaeHzX%St5==9P?p1e=1O$jE5uXP0g7LS#?I!M6Gsu;7hc}HzeA|C=@m8Mpb^%QXV0r$Oq1~%9R%t@cTj~!JnO-hett$ws@3s+9wg6`2^lY=X}t94*YX~o z8~Uy15TsTTn|J$h9MupKs(JuuwT0Noji4G@M6)5%&i{39l9kooiv@+ zh3R>f=RXZW9aZvFN=5MM#soIFhDPzMw07$zTN~06yZyKnFi8& zR)VIVj4J$+^4y2FBZ$0W*4v^bhmGPSXfNrhxg=+)H1-B{g1F3bX3x8wbu#`{G6hJ8 zYsnT5QVRO8oCE}zRb)e&t7D6<1y#orrLb?LVTeavD?!xuwU^?Nu)Slr9YZE9G&7_5 zysU7jhu48Z3w+yN-$nlP@`(M7Kshk>kwE8Icv?=()W ziqL|fMh_DBMj~OagYie#p?>uksQ%GvUUr- zRV7B60!M35ihV=xP{-uC9QTmXG8$fMmgY9CM&3h4`viHyrk1p%W0=E|w1y#Qt&!*; z$1%-bjp^Umn`9`L;jq*Qct#PwX(%KHwC>_caL{ay9}vk45rTc2*Zh7ke9S0;{lT-b zw+@m~so`c19t)*?zxajBsZ@2t9zLAR;o}}D%9Ehm9YoQ7sUziAV@V0(`+rYhnwV4L zfF?+6KjnI0JU64Z@Bt2J`5`XeT-}4Q<(wLvc3yLOb`Z^Fzs?}E)XE-^+=y1yhoF7I z@_;~kP)Z#6N0e_JA4GkkL?viBqIZn#X6Q`^ZN#cwiHV`PLr`F5^svvGY0fF-E=y|4QQ|Fibu=E>A}$5?7&)foGYeHk#s)~rxoXoGM1Jc!xxxu|XS z{eT=-vuhqnOG?_oC7E5#jWdO&kI_co5@H<-3=#;f8``R-i6J1+UEwR*O=2Cy;_Pa} z@M6=JiY7?pd9v#JrF9Y8(WoD6z(J()U$H9^BNLLX<%dYC1fJDFbPZos8=!q!r(^iC z0}2PrpZ#IGBu4BtQDR;sYS5z=rIt6Om++wRnis2MY*_~_aGpu5b_f+%E@FSs<`ndK zjy!pnU9mn^3$X{LmTA?x6BmO<(QAbP^>3QjwXQTJ-X5QLUR~F=V>)f@xCtdBNG4XZ z>;i)Hwsto@NDx2yx|DgIv}`&t0!lcw?6lLjO$ciKB94@5oAERny@O;jQmQDEb+bRx zD+--`RGoMeD*6OLCljmKh#rh~ueZjSM&?y=uDCZX(vps`_FVgxv1tvZ=Ru$Y`A?aX zCbzyjh{?WhOG&rxe*%F>IhsA^SK6`$mHmHeI7+jLXmu2W%Kn_CElZmNZ{L@=FCrW2d3xC_iZY8m=UaBRuf>Yxg zT50Sb7*sk>XGuCn=52Ep6_BTLryT@&)fJNAfwZ>;jeWn70?#omEv0r zpBRc(elUHR`g%xaRr8i)d1V3X7!iBcCbZz}bni8CQ)E@gFFS}f`LsHS3|-e3gha1+ z`c(#b{jpJr4_d~vpSN}PxMcxl^+NS)_o03H7;0A-nROqw+$}+t%#FNCcpvcT7$T-< zDJ))1c6E$IFsNo8+UMJEL;H?e$W_;8%|o<9%fDe@?o|7QW}UM-$g;D`a)uTJH3Cv% zh;PTq7_t|ktb`_0C)glxh-;`6N2PKW8 z{U?mAaEiq}GHIcfb`aILrsgyn;C>#&O`?cYJiqbTG4lUz1BMnnw2a45Q?XrJW(*n9y%1n$59cBe|gY>p`4^15c`*|T& zS%7BXx;w_wP)zSBt;*Q<2=w)J?D~9Z<^KJEm#?H6@e^VQDqm+>7o(a92)zp z^zV7Sk=-FyCZU+(Iy9llRylKM?8~Ui87Gg}%Bv!5T3)Zf=y@sLQXPx&W7RASu`d0K2G9m7?;x>GdYi5DYm zY{=mnZ49*W7d?Mrc7?(REh1_50}eg?^>2EI=GM?-#FN3+zp%$?_5BybkCxK%JVtYb z9UUYhBe&xH(MTcv+=_38)o57ISZ1vv=g`x~nNn|ym83VNpad~E@?Z>!#y097aQ+D7 z*ct<+RjnJ{^OT&v7jKFs&-YM?59IWt+_H@(jnH&t59IWvbYzv5+qT;(F*1>wC3$p6 zSK`zAJdo3Oz4o~zzR@%NdmyKeCCL?`8UM5*)0yS}yzhh1YQ3X_!2h{yk|s|PBRWW? zQc{9MK`X?zeCVcyEvB)H3^PB;+W8}fRE}?={ zIC)&s6U0ZRo*P4lw0LWEj2LER=*JS-envFU&R?v#%QcYJ3UlosdwTJjgr~9nVCc&4 zH_xp@)28Wr1d95xs--tcJ*sDM(3|qEg%H7#T5EMee^v`16N`O~s7if8GE1KYuC&^UdL+=;ueho5aYNuqtkI z(6&IU9UkcA`;kjbrHRUo4&rCeYDe$}%)Dd7L4t;LrWGjL2@bt{8F3x^SP#-Njs(f` zV$MU=E9|Ed6!W#z65e~(Czs~e54#3l%KTynHyVPQ7qKK_^ zeju2C2Dp7fTai|SI}pqluN5&KyX1M0gA1=z`Dv~5c4|Q~Uj;d!(K-b^fIc4@=V;v= z+JemIIYjg0ttvi^FY!EwVXs$rlV_CsJjgLEMS{iSOSCg9zTvZ!b>|_SzK`77fn>g& zTY;mMFj^DpKr(-?sxGh;_||u{gJdFm)$tYy#QHFFf}A|)?Nkw&Hb(Jx;bVMr$Q@ne z86=;Mk*Aei2QOX^RXT`Ht*d>LTnC?HD=~acxfOTXz;)}LCrB*6y>p?t6SXumaFnfs zGll4FC>>+(bH(O)V?Zs&P7uwvWHn(%s$4x`V}iJZR)39X9=|$Bs94S3(ugwcz6ywI zgI^84I}1WPM25bn8uYYu+eEyb?+b6%EW355-a=F3})=S zhsUakRh|n+tL-Mp4h%2ih^MjpnwCm}SYGL+*L_H~gO9vIf*f=S_b>HrLNc@3Qq>rq zug~rn8Jd(5CarDI=q3pvOV>YXU0R#lJ4haiB`tJUk)M?DS(=p_X0d6X5!1ozhO^nPBZ4K(p-uJq}jLfdsJk6lI zZ+3?nnN{Cl(_8_2^5$?O6Er)8rd8NKElgpXS}-+3`+?$cBfE3mhcpHMa5NGmps7*9 zb)@RU!)=KCMc#BqeV|sceBo1?eAG+}>z#t#Alo6)HIf0`GGkvYnUa>V|x%d&s|)HO4^#poKXNc!izEeu)XpzFPOj)uEq zKvWf1;GyYgEbAC2?~774p+%w%Vtr%#tgZ{M)+@7vtUP2v6JNB_%!?u7aaJAZKhd8k z5L0;5pdd$^DSK8VbIyZOuh9zpf5P^}*qKM^xF)PTkEqc>GC{YZBoCg-;_4vcHW4f+ z?el#f#LiSmj4v83WIfLT79>JM`bC&O^?#r6b}Z(tcrii3?`F@GkXFTNr^VY0sl%w527NVeqJ~1sqnH@vsx)K+YHi#+F zK`i$m23wSub6UqZD^K9kl_Gt>t7qslGUpju((=TbpLdY8eO2!>Bki9(i6F76eh5w2 zPahBy7ld0*E6ltPaulv`8Djs&v1^Y7`T8TU4CjfyuiY`0$p+8NXyI17trA20PHIeA zh}|x$1@U?fa1eyoRG%H=oM~a0P56oOT4F%F-n?Ry4HfL1(oqA_svb4 zUup;8f?U0>Rdd`V8psohCWz;!B$ud46GD>?68ltv6oU`HXy3uo6%NZ~Kfh_T-oEvq zSARukH;r`AYVC=ks-txLXoCWKbqt4C2UOl^f>=X3Mwnfl>_ZE!TCHpe{FNO+V(^mN z=os4}XAEtmUtO}2iPS!2E9f-;i`J)D5Uh_IBJu_WT0MC|v0lCC^@pVRy?P?GGbUriJa+G1i_n zlo_k?DaN$Sl_>ryVFg zCp=ICDTyp1LF04`iB$sAP8*Kyd;P#(+2$Q)q}9fwgT#-E!NtQte*?Xg8oLlsxVyhkjKOW%~pFy$H*vt6$$##%n;h8 zyAgeb)){X!UhjTDw(A5NNO@{D(lPW5hm{gh{8>AOA3HUtHE6f4J|GcSn3APW_~g19 z)8%g9Z2Z@p-amgTq!ml~ckqV4cK@$#`R>cMnWjV8GO5JKh(uQnld>>ITY~+K85&jI zrO^pn0-Ydh$*GpqqD?A`b`aVB)KrAVWNI;Wg4lMuZ9erVWEo$q zJc0j$9CQs=>Ek)chYup(9c07gCa4m6f>yE7<`Mc1*%|w;SvCbEqV>}=6v$=$^V#6} zb&rm5@|PIJUA)%)-|$)>mX!f^O+4_t>qZAz#eIjA%1>mp3q#g1Fi(tEID1}J9=xT8 zNQ>Y5w+pSTxI#d*`gMO*(8`iMua)4BM(zb#Sy4`4&THyu$B@i+F1e6Y0DMng{cv9G zvbg?H!$qK#WtB-2DNSt?+BbZa{j`uGxhFFeNM*%kUGp?tTa8hWWQpS{6yCT)bPQyl zH&>_icv?R}pp~VLBa6r2Z@ntj?!sXK@7D!{ss&d9AeN0Vayg=0A z)aWg5_-k|wcOBL5-ZZ_vo({&BkFn|lHj+K*Gv}$$#>&@)K84c8Dq8ZKAUjVg)RKi% zF?mR&3URD+2L+7AVruz^LL4hoLL|>TXOF*8iIzB4g^5Nx)m!6U@%p5EL-Tr~845@T zku}CBKNlLy!8-;FeAk^p`H9$Gft)?ZC3DkG`Np%>lFN!~<3rNWS$`F+3uMXO2uqCB z`RoycLM{t(d;jzQ9hxyhI~o;gS#k$s7cG}+C2NITRv3~(qQhBx5Xfca+Zs&Gy2f(Q zQp+kKD^>~i>9Q%rvb4+!o#v$7(lsryEGu~%C$+m*&({=cSw10_&TD)2gHgUb;A@g* zlI+bMCXhmr>n!wJSnjk-KTe>@m9bn|8S>hN(m{O34X}e0puEu>G`S?I-!gdf zQw_v2v4ZGH6UW?Zax#ZiOJ1+*x(rh}P&B3J&~r=cDzyX9w{Nv(Py*nx<|K;i1R1 z$}VwEUUzDBkd;YDk-rXU>S*OJSJ1*O2VwB|Q(w z$$SJLB(cqhY-Et+!c|gpVYI7VI>?HD&ZRtNmURrtRQ)KktDp~t=fBit#o}S2D$_v% z6>NwP(NsKIE#4r|<<+@Ro_3aYjJ-f#EQ%y;&}nxNUC=80AFA#7=^(ygy-QWt=-(Em z*GK8N@&@(VrEAdVGA|RVMe8M<*+I6hQW~QDkXly;{dk zE&jH*Wso|)QcbLJ!1vsOLYI|TY`!fT$mt*=OTkv=`JT4|ok5|?wRGTVH)4+(4NAv~ z9!&789~%Y)y1eF0iIeNzF;*QcIDcu*r7a6J2z14{?tCPI*6LF827#{sr&;+Em$m}Q z#A+1ZMQEihYp)9uUB`?4=RAAr(?K$|3W(jXlJ=*GXpra%yHlV%VSec#KE$N%T^iGO zcZ?WuYOax{xY0`f28Ay1BLA&liQO0^xZ6yN>_! zVEs)c#W%E%M->8NupXoZzzMSUEGN@xv@zy(?>Z#A&aQfm(P$iP+B896j8exIPlvqG zGkur(F}O}bt2VYuwhPpcXDtb@ULz04(oijXYSLK5696ZOSUw7bBxuvp{o4|#AKNIq zj~_K+5+nDz-99*twbfsi=D|NoPn|eg{$Q+=p=qfZ(gqfqqGW<(L?`uWDM_vLsm?ky zyIf1Ni}tqWgArrZ$mt{nTWDD4FmRJIxB8xm4KeS^MIZ(N|A3)l3dd> zgmxhI;8H_RLL(Wj=XIGuZzK0NPtbRFjAK!9^O+pbs2hI+-m|{U*~;2SX|1sSvVfWy z$YvU0zt542y{}gzk5N22h-KJbMLCv9#?ur@kdyHOCLw4;BaQZXc4kt0LQzt9ar@~Q zIJvOsEPdrCZchxIH(oeAAJ)+^e8!y~@LxIIB}jf(QpA2*uGZE=GLOpTaOx1x>==97 zl|EUt6uk{WB#6q|MPr=*wMWMP1JMrRnXO@(?y%%gpD#-?k;*42TOV3Sq`xiAL~8iF z?N3^X|8$UT8hBf@PpkDq5<+wP?aFL_Wb2a{?ph3&Me6H3_0hzL{H{9r=KjTy`HATBeYYqxnGfzmNT+@&;KXg!xk z28z7EbXUvJel21)+sPfmuX3Wr@w3rfYX%g1FrXc<~AxyJLjw@+(|G zs|);%w_;~*HSFqf@@yMt2iZp}sM|a?=I9t2qwIcph6DZ7+MkCW)0(sRk#2BECRg*+ zco;8D>^o8N{pEcH>jYLxGM?uUc+xMX9^85`EW@ChK$|?_80jDfx-l5Dpq0-0gXlLh z{waF~TK%Efz$V7p+tH(3n$9`+6Wr*%%0B+?GDY(>ot9G+(410tFB!2V2VmEYD8OAK?VW|h%26I(+pF^)$~ zn=YEMLEj^uM-H^v9+2CL323xn@P`si#{fvWb-PS4~7hJgbqeKQ2v%SfMN5W;AfEB2UgpM z06EiYv-6ajX2V#SQ{_$snT97wK03x)W>OYwv~74ghGeu@)5Y;4ZApNbju~Y<$tpI< zUvpuA9Lvn8sv~}pCg|4a3nF=Yo$E3yq~JH7Bsz%59`$K$R{v%6O(LJ~ zY2{)Qq#1m$zdA_h5rD92TKTpb2AEn>=}6Ej%l)zfQ7cOMQAp#4y?PA{bsOc2#XEmx zbPzw{QXO5=fQ2;MyE*L3k9S?cPnHAs`ep}NYadK;1gY72p0{ORzN>W!93+G>(Ng}hmWRJuj-KI2mHKG;wU&( z&Q99xn9J)RaiR>LH>*%{`m*OQ%FnM_?6jfW*+FDv!W-zn(DXJQj0}4f;V;jYa7M>C z88_T4bp57&JxA`$>49m$L#z8P>lk@3PEZA$e68h&)6$}j&ONW$8AzthM)lK}M z5=$!fdg~nl;@Gt67jDurM`KcC5c&;QtG>=)5m$RAH9_0)QG=5-uUUUV6hu!nk665u z9wsKn!Bt+TIw_`x)Wu&A_z)hg5oRMz+Q^rvG$H?y99~dop<2sAd*palp!sU_wBCVaf@BbDl{>H_Oc9tV%!mY8rMN~2U(Hd76gt+p*vhHJ4T+3H35-vFDXA* zec277JyPo3N?MXV`$mL^-z>?rOc6=dap~U{x(l%3A*v!gSE7R_dBAoE7AN`%ARM9| zcI~Tqt%T=60v3T~2S6hApC_Aw!5*eLkWG;S$0PmQ%2R)1bf7x;q_#*e!B4PU#+-L6 zl3v&9cjCbuzF#|7nyyDHD^Ji|@^q}*ohN_1ItcRH>R8ZbAX@7%F;tevZF#Dc4KOQZ=%u*@rpww| z=Oal}ppRMrBp2jpP5jeDKA#84<(7H94QM((f8$eRTqpC;^4+3QUHZobSlM2ZE;OQ{ zcMQ!GZe9bi-%xf|F@9Zm+?SPtH_N2Kde3cPh%Y8Ej5ITH+B7IIBx8u$ zhpb>oPP=#)M2}p`+)GHedl!oaNDMGupttfHON+dsz6^b*)bRIjMoxjT=jF*7O<5_T zW9ZsjpzlFS7cxt?j^PUOQORj>_Il$m-fLR&Eez z3LIAB<=NBV!a1fheHg4qp3)$Uz7nG}#!DjnQTHM~Y`$i2bL)}u$qkX|`zi&9Tq9p`*{vqnG2RC32Pg+ASE#lTx7V;Z7q!7 zJ5#Aqq3IMF6}t6x5@dQ>Xo=@~9>nsHFK(WZC@x(k5g^BwRXdNS zZr>^zTc9cFCDKI{MO__a`LZjHNlSZ1$H;qqcxemLim)vbN{|c}73K_!*8A*%kmQe! zf{|%7p^bj$>Nf&pGf4WVO{fFMB5lH{hYp_ENsM_t4QK*H4~XOI#d*Rr zn|v_Bhv0l)JRkJ7Ao&ZoRmPk&?fF<8W1nTkGBcXP==&gga@C8Q#hW>MKsjd96r+?m1gITk?P(Rk^Xyn>$B+$@Z(bs_B%$>b62oMj>jA+Fe4m$fvGR z-w>V_`Zkb-(S$W?yp)uHJ_T%nK5E{%NEB$g$897~iu<)tq}jBl`unmhOlqi@*U()Z zBgU$-8SOIcXD^6fsBADZkv115Abzb?>Mb;B+WlZ?CWY7Rg;s=@2gKLDL8+6Tr0c;0 zBvxF$wUdOvx@p1`INoV>cs4Jm(vGoZ-c}WBh~uH12psQxfcwScOttz+V!$f5tQ1KR z{KI(=s3_$L4}mUTP}&w9DoVS&Ml%&*RpI+)*Nlb7D61D%W$x)A33QaSLU`p-)1SBH z=U?rb*O-ewr4q_Ri)RAH|CuVs- z&fL2M$a$8$EqZWJJqNB`p6N$lb_dln$~7!VVf=er!S^m?mYy$d6r~mW1v7_wdsUlO z)zSy#$WRO=Oq$<759rP}#H3n0L5dn5{kH^JP;o9s4bSyMI*6!y9rJ^>Bt70bnOVsV z>JII~YNeV4fq%RRQ_1c*9RngIay2D+UYgNC))_T3aA@U+UK)rmbDkO$nXKmCGoYCu zc^P`~k0$BDdMf1!aw3-8Mi1>t{(|WEAWBmT$eT1y)s61}g7Kg#r8r5!`w1cvBv0V$ z@6NMXdoXNQRq&+Lz}VJUuU zV3x);Yz!}#G7pa#?;Yd7oDA=ZH$Cz<)KVy2#kGAtB!QAA##U&Ai-K!t>o*pc zz>vHRYZC^~oa}j9uoSNY{#Ukl069DFbqGY!T%TvV*7Y0PDx)SAIT~9lK~}EG9k!tv zg7yy>a#|KJ1RxrMJ`Z9#y;RhMMq}-p1jcthp$jHFALDi%+Bfn8E&+*2vy1D;7JTn~ zqc|(P3H;|l#Ft(6C(YTk)lC(?cV{Zu{#QE4IlHnq7OUpHtYCbX*Lvy2uuL<01z2Hy zw*~cb_a9Y+5(7-{B3KNPOvUL#Zwcb_juA|r)7rBl8KLAAf>o!DDzqChf3fzuq6ojb zb<1(AqAKT_MKXbS1T1ZQ zm}V|QsbepxeNnuiMH9q4cOWL8IA2zLLp#KY3>h;%QC3oA zO|;bVx#qQ%o^z8A2mk*Y(MjWH*`Wi+Y#{nfFNG4TlH^s5UFwa11F$?{zL}Qq6oN@&c zc%0w%@oMI{E@cc!H0$&Zvfv+8p#v#R*k5xPP7sB+>FrsNo@Dn!OEclQmR_uGLiZjp zu(hO8k*TDSi^qS*3?ncbWnUH}44U&DLzW266S!$|K(rr>_W6(~)(%VC%)7H*g2a*q zM%ZG_j&x&F!vLZWs7cV=C%aLDVE{4n9dI{T3(~uKh55Tuk*A}+BVEzK$xiFMUrUV(_S}BAdae^I4uL+4~8D|E1^fKFg~0~!vNws z*R;`S)Z*wM5g|~Z-!x);&vG$+h48+8(7^ zN^7>Z@?3%(%gEQLh4{absn2hK{i)P8(&-qGb-7eon%zWyS+jIqiXy#f-UdzREI};y zB9eteQ@q;GgW%T1xfL|&x&E>ibX^KVdCFbdF;>LD*Q>NstG}zfS%$8vJkUlE+s&RB z=&rBQVfZg0{`{!{iMb+r{)oipJO9a86~PT!xZ7XP&X`WiB$vi;XjA10p?i3pgS1+M zKNy+UUWSg)+R%17Nc@}CTO?(jXAIQk!-z=L-D$Jftz4ZLnMSQTYyaEN>d&8=iIZ2~ znRX~OvP@#+U!sWhELVX?X(2(v;7N``3`ytaVeh+U=A>6@fj5RA9U~Jby)vjgwxV^A z%$#O9UeWID)+kDhOq{OMne*hPb_a<#+iwU>qocR&jk?v=Dpw8~x2RFY9aDx!L0}46 zTdk#;iGkP_<(@;Drg)m@jv2$47|CR*xxN9kejms;~+j5k6Fl4-0T%A{^{Cl7r(0el?E&mEy z>!Xnx;P`72RcLoomasZ!?O?KScm`#00sBH%Za=I%W&Siv+uA!=9%tNevgeRpFAh?5AU_ zsn-XICdt;iM5ks81Epgp`DEt*(>jJNyHfL{MC4HnIG8M4*MODhFwoBvj28N?E%M*4 z`JX>^$&#AI8oa*d?ElpzBkJW;$@EstI2a}ro7JhK#c!iy9LswH>~q?g-gqSkvxHW? zr#uRO#6C}uWjP2g8JWTv{I~^m%AFr=|(3K}a*e>0j2t zFrng9Uo=QT>`rNwkes#5Qvh*`pO2WEma(fbwwFif~d#i76II|pV7 zV^$H%X$RH|ve99yrYG$Rk&aPT5;zn|LUqqI6*Wq@OOP~3HSs4MjDMqqCACOXMQa7? zz|Pdbbe!{s-cQGnx#Wu7(wg@B0kMpKO}JFf2jnc7IDKiA%XVtT`o;<=6X8X>4f}II z>RN0R@9Ia*+dzXo6f-lld4L|BB!-EWIMxjLkv(669G&wFDvP3JZn3|i|FUP+NWepE zNswjhl)>br5y~2kB0)WSO#dVn4Rzll*QmnX_o?(HgjkVG$E1*iMrZljk`yk+w<>CrzxQ z)tf>;SSw*_X3@A`^TB{M#y@>y7RKlpn#UtXrMA-U!__hJs}g9#()1KszLOBK=cw7A zLz9ATF?`rJw;Afy%2UUZjYAfP-7-!525!p#DcL$NNj$a}vO}T1x5X$My$~IW&QIF zI7ukRHI&z7^Nz7ru8CATftDvo2a!FNlGEJiAhy*|oD*sbjpJ59{Qi?_(&{(^)%)>b?z1CtbR$UF-mH8>5N> zL2HTa=Sec-@zQOjeOiBOvTMXQ^BTD(eZSF~2F7-um*_%cdd}z|dX_}JELs>eI))z) zjA|*ZOw;#zeCQb0m!-6Q_&1wgkebR%WL;?p+NTvAM20$4pEm6l`J1u>!{(IW7UJ~* zInxI|Eg^}t^qgnqe|)SN<>hi{dDZ9`Yx$+pES`DZ>L9Y0jw;WwYAF6-*gjE0Foz}V zmkD|YIilD3X3}n5ZF^*WnIZT;i8mJC>~Bi}AWPN2%3Qp$gxN8~h9P+~o}Hm|3^N<$ zP{NbamFGc_SE10j2kq2q53-R~ZTQmgw7#ZyjCJz5MTea>xYG}mjrqA64w^sztSzY%oYSEN^5-gkkmef z?j^J}l~yW^j^X}~CBPGv?~86=@;ABs?7i?HC$1 zZXEX;fem1sG3(}=oL3!R9RuA-6iLd^mheR6de$s(CQkk zyS{LHzixd_Bt<-?rVavW4nEk zIe$al0ElkLB;rb>`MbWa%Xci0GLbE8p$?NvHuC_mSko%0{py9<6n={ zG4`>IRu#>RsCQZuLt(03lNPjlw;#ardH6&iq_jy3X&e6IF>%p*jqR0q~Wa0B(h>Bslv5YF&+*jQ)vl?S8>g-_;x9nTnmR%(< zn*728BC>YLjTuR*yOa9?l7IFU_i!FTWOa~C+E>x@h+KiT@SeF22>ypul?;E!=VON9bK9XLv)N7VNm~Hv;~?=I#Z;o|w^e+RaWCeXjdr)UceO`8*{Y)d z;WZW>3{XEIK`uYibOAfPxAqlAT?_fnd$c{^+M8YSTR zqqSUGFr66d%sK{0o~5B=q+9BZavdyB zKNYUeA63W_Wbcd@YF?c;=lwiM-XM1rchkC_`haABwXR6?qR~#YgM^B3!`$|5KGe+!t#cuc|G(+k59u-_0ktl_1`-PXtzbwP!f6O$;@SxMZzhf zCutV!p&BJfrUn(h2aPt~uByb41wJ zW|<@$rCuT}#T86$ty7kUgSQoT2a!A(Yv7kRUfMcF31WG(BTEPxowR>jU`)mdu53@M z_R0DnIbXIbJQ93Mas@4mvCt?yJUYni7_e!F$dQxso!!N562mg#u`+)k)q%WUB?%J4 zXB{bcfQr{gyx6NW|{I}okpFh=QieCE-)_-&D z|II@)cB`69a8@9Cm?)rnT`$oYEa{H?JUhq^J;haAq~XHoazhDX^BNw_#flWi=N$yj ze4yV2%d<591Aj5}8>$uY8moho0dB`w9)b{#=7$n})%8LB?Xqv%VE zMT1@aZ5i4JzDt&$L@bgQV@XJ{pM^C0mk(kcL~=zgZH+{gS^JX?g1^)iD5TwfR$q7f zA~IYcj^M86c5;X!T9sy4mG|}RcF#~K;-&|@`^lk#IB|Ki%3}}7N8oimiX6k6f^IxZ zIo}X(H_{GSJyhiba#!>4l5}yRje8COp93Ziat# z1niiawiZ%L3gec4K``&P9oi<&8vmIsTu>aA>X+?N51&SxJ=?nCu;C!tAK z`|A5p^B1yVu@kJoR9a0#q5R}!IcG)+AEIw{)J;^NF2&N#esXk0*<=WWhBnI*e)I?h zxx;iAwK+@I<~e&&HJPO`E-VMjUIs`EU8WT~2+1`1%zhifH3oYBC4EUMXvq7v!uNp` zSFkkRq;GZqkd2)3hoXJG)-hz|H3C_Xpw+Bb$1pJiBQi({d%i2_7@4s})Ez>iS6g3m z%#=ackLlO79*mXA2vX2P>q0iJiDINI&#lXB_)WT=7`YnzRC$zVi2H!VFvEi=X%j*U z;x7hf%9dBU&XUc3Oe7LyPp?s|pfQYEgIh6Dwxtv!S@&(H^C}7`vC1QJlD1(U@2i8v z&fuh!jD9q?X5*WQfNdzO=2Yib8)nKR5cUeG-SUX@7-q^w&6Hte@iz-%7%H=c#^>g7 zm`2A4%j;%6PN zW+BgI-6~}%?87S z*_hQAnLI9Gdy<{mPA1Ytd#6nj_7fg6W^2Ok$Vi#UyY87QE-&$)X_FQ^JRnf|s;(#L zK{5z>Fpj80*l&`0pql@YzZgZ+kyq44LIMRRdtOQO|ZEV#qAYtZVb0Lpnz0RHMiTx@m0N)j=fYK#7K^ zY5hD%-h&7AMV7q9lO`laj5%a86#`n4YZx=rN_R4Npq0n1gKTi>ub&+&g!hi2(@Hm6 zNi2akK(WlJ{9qp4Ni$#|{B(?rfhKk#vC99q>R^~N!+1K?%}zQ-rc~mke@L2CUY)Fy zAemELYn}Bgy}bm1Q zFVYGB=F%87JC#?_4#xRFcm`T{S98z~EqN9sPNpMJ0RNSwszqj1S|Uk{ri9yN9GuUopAwJ-JE#*N^vxaK-VPdSc6-m{9&2{+m zr^l{MnBo-+iaWv4#i zvuR|~=RqVdr_1l9&E2+wMuOx^l3BBnw0WtPf%qz4wkpK3M26mvYeTZ*4)^k8L8D{r zaV}*w|ILr?rwz@HYvVF#{g4*%CWu3JA1z#3oVcC`i6y6o&4>@umP9^y_aJmyczikWjgkc}|+qT0Oya&6Hux z;Hw1QSU3=9YlTHOL6jMMMej47-N>`?2ptz5+lysm}r}WMyF`Hoob`7$UJM+YOQ=!J}e@IR(vo1aHe&0~SyGdosD2Wk1DI z<9>6i_%e{YgL;$au)I1*W(=#!%0aqE9=)Lik-QO4-)`O8@qE19vO1nlL43qq+QY(P( z%R1uaj<9KUvsNZQ_Kmy`y|P1EQMT_x`&LGZ=X%VslB&KWmhVqoYwCrzNqRVEAbdJ9 zc9wzR)38d6jOEml>yD#wE?S+YFUiRlxD~7;p51xh?B~-NvswzI zm-VI!=kq1E@wS5XZS`e8U+i(|Q=3+l?JE*rF36eXw)>;#Au=3ZWm7U)TD0#G4~ua46t3ILKK>xq;(9< zv?{oEC=Z4oC_~j~4UJ&v9V9YAtiA<{^ZAtf1AI3bwMU%iz9}693_67Ihevlg9m9sq z8at%j>@C7hj5Eh=z!-^uw7Q;MEDX|Zzoj!)m#3*h2S#D0;)vh0RJZX;157lRn=6op z2i{L>efU?DYJz7fF+0ZDr>sPXo~!NC+TW0EP-8qiyOQV_kl3x@!AK0y)m6I_L{wL) z#VBb-Ru3N%#BA(hgz;vKSI0P(*;^GjSh|wESrzhus9wBDUKORWwGsqc7*L<$4QV#x zmBf(TB&AqNvkhuw!^E%?+v97!J8~!9U~KkgLH(b z>U%myhKl7QqP+5)cMQ+)$7{5aM)7~1Bi34Fe!OTId+W4@ec<6%!D;h)Nzy?!hK2IW z5}GeVzjE!ANM!j&Vt>L@}b-K{Rw>d|i2&!s!@iOs%6)Nu%XYH7Md6BV+5@B`l|m&hSr=HIGbU z7-XGKlNhq(+RqtnyY~Y``-{{kCA!RusbuvV}q>@ zvP2DgWbs@Yv||WHZGb_W=J|WG1H(YPzZ2Q4z|=+uIr(W_^Ep~%`ZpcPFE>+0cT|Id z=ghe}My|vFb?(qg@qf1=FvK(aydFZV{P1W8u}~?xfU#^K=U)c}fW(pw7T|Q2XsP@a zM%@F2t{BJ=4{MW*PdmnzYb`T_q-xihQ~=5Au!OEyMU-Bj1BNTq$50laos7F!!+CJRhG}BosgS4i?=@_tqxDHsqA*=&K-HMU0N%f|ljsU~YnkByaBjG$?#PM}0 zPBbElv<)KPj8zLV7makL(Lr`*3PNSd_Ae{XunbJfzDAT5X^jqYMwpi{4K1zW^jtLmjuw$l8XsJ4j+o^bc8c z?0xz>QysJ|hTXz1jSi+AB+splW|h(868ixUI@pNPLFPGnZ|fjFt(?~8plRpzYviDF z5jA42q%i2+?eR@m(wBt-iw|}>#NOg1zi~EAJy<%3=4MCXY|~08(>jKWN+~4J>`d{e z<^fV6HOmL-Id3!3ovPK8WXT@?CybpLr$MrkSH!Z8kpLxZue2z1KF^UilN9?_XeHQI zUrLaG31|tRkg9P{pja1A8*QEI>{S8PB!g`QKK_Hf zOuYi+wCJI|E6woN90lv3l`i{c*F0ioO@#?9nrjV&3H5xpD!kJgdFy!&AJ7w^4mCc{ z5&7w&gvAn5dXFr$@#VINX`R(pcu$PIGCIM#A`O&3$I zjg1!|VoMF3@uJ?20qy*#N}SSORbP(M&Oaz%EgDUuf4U`|UrNr-tNJ_`o>|+tiVMG~ z@Xiv>_nOoak|`h@&;NqtFYG83jt)(fq!oQ;3FjM}!|nX)OoVQJ2r~7}E9=jW;YW2A z|K~Rbiol3i1vZ7RucsW};Q5J;skBqBN`=hso($hY>hT>_imij!1Xe?|*^WO}`1H()< zt`VLY;b*&DhAL5S4RiYe1sa944Ub7 z|9(qC->$kRiORJ8!6iuSc= zw6E5%Uy#tZn(`K&JEwPy4Bm%S!t)zn`n~jnmjQ~4c7D{aSkTXxI<$mTXxeS+9vEtI zt`Pu_StcFCU2B+;*kgS#;*82bH_d6iW0ZRStcn?p|I^ARtHkpKxzu7Z{@Orh=F@?Pcwb zf%z#MS##1>L{|qnCS}Gk4{645^|D$1Cb^p;q`dhx}$Ove%s!p%J1s^$qiVYR&*U2eX2D_ zHr!z6yp#9yH(DM5aWp|Igdk}>K81k<3Ed0Sy!a7;YD2#1oEk_F(s=1JsU9o8{y>A?|iwCRmj!%mFag*bd^3)0_}ey}vC&~y%3`QZUs zID7|nzVro=OnX+%my+tTU4aN7ru!6Y*?)DQ=yx;*MqP*m@Ae$_4U>V<<;`P8d&gK7 z3x}`%$kYHB;&O)|2JK|*!GnF~Q3R*S+v~eyC5|mwPX19Jg^Wl{)k+f7$G2lB4sB@V7!@bd{d6q z@yoMVla8@A$3AbAgtVuS_Fxw=It31W$YyNab3@)Ttg<49D!X%3zZVcYHd z8yP!Po|bxajN?bFS}>#%_7j(i zeB@4PinN&2$u z7dtm#?L(TKZNCuhL!SyQu|pd!Z+TT>Cpif7V6@=6SNv=RlDTbn&W1Pb&~$pXz~?RgU0C(6%4jYUf6 znP~n-k$c7jZnirF{N%jMxAQo5N^DEWs z1c4IntOhmDc=UOa$k-GWA)aDT%c&LPN_!NmhIBGMIdx*}j7-lZx3S`fHY1oIDpKOa zEH28Ek|c)f*jRNM%c&pn`-|L$rOYU_IrA3BtK4UM*s#-skdq@n)&(>=qjaEDJj$xS| z{@aGMTirTH?!sF1sU&Z*H*|1#lZ`3|1*zo!P*D3pH+X4=4{Y21&2G?M$2{4On7>vb-rPl^DOKVT7Y65W4RRXjCjWPZ|lIFEKtT) z8ug(E@#i!6a1W|7{C-yC#J&!ytcKFV0M*F*>x|Nn;dw7v$Jiscc?}ZK{AL?ab8PFBGnAI42Q})QTY6O=3@TSfGe!n*IlC*LJotrmx@qmERh(L&Efz~#A zV&tD4r~w`l;pN%viIJaGj4OdeyLO|4gbrD^EI>O^{?^V6`J6@#ZPF&J+NotY^~W7; z<}pAY47ChQt3ge2OI|&DOAz-ZXtl2&`N#t!Jf8rc7SC|2f4`Xq9k~)-ybz^tM0{*f z($42sb@If}+$4~4VzJxa17*QX!SEcLr}NuZeZx$_(XjfNEO}zAIrq9&ZZvk#=^&DS zv+g)Mt(zYm#MUm4VWl~vw2;Ggd^iyUOMnrX|X6C^}@Tw`>aDOy|j`~`G< zs`fw{AbI!u$ros+WaxMjBW>43NT9YJe|D z9q@fV=^#t=+$k&4ir6XQ(e^f)p^+8FKn{@#ba zkn}{k6KS~&s%Ba1VYjWNF4I_8E%!fH;eF+Z>NLA&~YW` zNHL1{xY73qo;MOWR@NR}sL?^!k^|zpvHE-K^NyjahWR~~f?{4()-fDrMnd!ykMD1Y z?ealj;Ht)xGHSPWuP4ZsVMR7%iAlTni(NjoHA+t8zg>_&f2yCQ&_3U!GzWfn{l9qz z3zwl4H0AzQ8qZ*BhHPBr@~inq2YD*A&caEnTeoVjgFU4KWSvdxu(tYpV&v&0|H{@s zD$ih>OuMrBo8-p*G}{tnt?f|`y_~ZUCwRw@y%r3m<{)(@TNeT<>#)=(v$6%{sR=E4<1-`p+<#cEX z%RC_^oz~^F5+u&CS*aQ+L>&FgibS2ogb$L!!}-qc7_xTe2I#qv*8IHBVd9y7Kp={= z=%eQz`6C}CAI##mDJ^el+CkY2u2{HjNej}emWd&Gs3RanU?CkeREE8u)2^{~CePd!A z1COl+MOgQ3YZvB|4Tr{Z2`{kvU#)dyY9Fgf4EbMaJ`xB1eD+}YIELt* zR+5>mHhSPksEQI9O{n%cPvk=#{L<5Dot6hfmfaE4Lkb)+Mbi#q`Km5Il2vkuexOK3 zC;1>Cf3e7H0d~&0z8S>P_~;-q{<#IRT;r_sViUyXznL0Zo2oUs1N5Bm zd6kZ6rg497t4P=-GE2^m)}ACG74P zxj~{Lx=9A-^N-7@6Q&T9ZwB-sq)oWjr6L)iKOYabhc*N%}_?W|F6Qv3d)6eflR zgdIu-gGNq&79_^hqUX?568m`~-yEh}P;dIxO(mIEt#gZvw9&TyvLsX8s1nLNqzR;F zCLuvGuhJ{rPTGfW7$liktzBv8f+~ zR0V$8Tu3WfCx~mN2Q~3Y8)sV`Bl0o+75HhnK|65mLt!6EtD7cr(=w^V*gmCZ`r~K& z+rHu@S0=^k5@&MOLHw*51LF~s=YxSH2OV{%h3)-%0P%_>t!2Q_&@%MIEdIT&==-AHtx{kN(wVXvH%rFIWNKf5jTN**#X88!j7>{Ii6(y= z9Yb=Lpy0q`Nd6_{0mDv|X#&q0XFbnx;wrl4zo*d`=U{UQ&8mIx zB;kM_m;z+SSfGaFgU}ke+CenaxB7Zx(nLH~2RUQ8*H9R(hA9n1zcJ2&^hK~lDOynu z7;El>1}KfRF|9+$j1taTJj2G_F%0rBgPI|Fbda;B{9|pf&P8jBZXf6rAVoV(^tgY$ zplD4+m7i#nY#k%t)Kx$*n%~mW4q}-hfQ`9mv+(`XvJdX@RR#QSkF5Xmr($Bx#|_&_ zY8t)b4v+<7*@}B;7x|73f^~+z32TV(m@M(4rX@=qiD>AZ5_kM(ei5>G}b}SqRy8g!YEfFBc14P ztPq(+W!70$EYeg(H`)QnUbag^kj6UbCt-ZLm)0n;lVp3>Q3&{caxc&>)+ zIr7Oek1C4~p33p*7z+-=ry3}WQ?WtBNOAzz?J2WL(%9OnZ zixD(Gqm(I)rA*m0@nmX#((6E!g6C@3V+V!&%mGC%XeJ{47EuiQ1_UE$)r@}Q>SvJ~ zv7DWG>X+U@V#qEIG|%j{wb>woI>)Wc5J$YdgKSt?f=WTF{p24Ck^j0l{@WG!^QZc< zo0QXLi~7PEX5&uvPlZ;&Xi53>{AiI1)Q}0SOAsAoXGS9xrPJQl=op%z8XCd0t9w50 z%5#Sy&=DHxu9e21aiVeK9G045SMrm2z~@{@`{h?PzQouTv8ypp(~y_vK`<&_a)C|? zbe@vZgp~LixbPOQGh`hDBwm!Q7Hy=V6?hpDb^=HUH|&0A%GASe3-VI^xIQv3Gz-_}a{M zm-$!i03aDc5ApLbj>CCdv0Nkme?HuA(g`2|7srsM0Q3~H8I0; zyS5Hu+vc^QA+=DS6F5Om-n=yf!t%P=@>hXEpz9d6Ylw*zq}YqG*9b3eHHmMA zc3Hw7o)VsP498Zi!An+NE*)flL*1_hBWaQX@?jk$PkF_dD$R;|^>YhS-#%^?gVZOq z=w}KvDMX6E!kTE>?}|i>Re3qB-`RSR`5DYm!)OaD(|j&>d}?D>yNDGw{-@`#VO0sA zgJ$#C8aWAa;I0eHDUx?qe!Ojm=r`6nnEqnvN@*wJB*qdr5)&Iz+IPBsqObm3+^dPwji%p*(w5YLtz6Lt-E>&Yv*LF1z4`5_!s5Oy3S(6&pBU1=# zWZX+tJN*wJC)4&-_aO;nNq=1q%fA8AGb`8C{{4F9TB1XkhQzI|wIE)VO99&<5@Ubu zp7Z$UqN~`0w0#&o(DKaZ&Z@?jkVpp^X|;WLkhPBzHenHL$BQBJD7u8KJmE<~^SLBn z5~359i|_2w$;nMP<|u&+-YiIq<)YeNr6I?obMB6Tu2&5%DzDmpI*8b@Q<)pdysk+Y z0mJ+pl*xm1oLH|o)sJ-6D1VT+6RTI3_rTFxW%A&S6rPT;LjUPK(Z-Zp8!|z1iL8i7 zd5PiiSY`78LE)k3akLAu(U=m$ZP^tQBUOIiV+*Bo_mX^~>2|cP!ru8IWF(Jz>0ya9 z_flqp>@x&5>hq9x;_B0p38F|xt_>0G1Ku6PA&^zOgyskKf&?V;%bAup4BcLrd~0MF zU$ie8H%GOD$hcbOo2N$lU|9aL=9DvsW5tcTgPaVs>TMkw-=xPvs5xm|X*8Zd?C2nQ zyiZi)c>;ycbI5inos&cB!SoYYGq-|<118L9?a=5LATs@PYo~dfw@=G5w^AE}%8k_1 zK{C18CCkn_wT5*Ff$K(zLG!M}=pcEV$hupEwd%8D96zh%nSv(au-k&5thHxJI1G|& z>>Fjn(C+LC<%M?s_Pob)kyp*eV*g& zW8fq#nsP^DYsrF;;KDZCG;y02#0#t?&Z-K>rYT{*Afi@|iKwBGx)=U{*ikK8Mv_R{ z((l1Ifvzs-M>J~u-i&^9EI{@avnu+LI(qt?gaQS*Yq>gT zW$RXdPY@T&L!@38t?d#WBy^AJu{z72?O7B3ATQ*_r}#}7DC^5`j|7p8%b_j-_JIMK`8_04SdlV@JRjjEn3|S=M19>hd6tPUIzE3Lx%m+hf zW@-acy`&SX)8GZpf|+a94*8MnjG%^0Leamc(%U71NWn6RXv$1!Hvc$So!RNGwYN?LsXb73EnU?+zlvtKLWA zTt9`MgfR3wCzTVjI>v#6x}h~iOE~|Y?mA#EH%eK-X{X|Ykq1`IXEGH8R|m-#X6Fj2 zke)=^g_|IzCN;UkGeu~ZVS*f6bKeFS>(FYW>x#acSv3%7-&PBJ6&kMFR{0f>yqb1r z=_usP?0}(eq>Tu+ZO5=!iVs+65&V2!*1_>xs$#UR=ihTtQDn^Uqzr>O7q0dIUhzFI zm+BDz#?k{Aa2nHHBVoUBzy*lsMFozT(fleKF(5H8B?9g^Eum`l63rd6!MU!Y1Fggx z9b`+?EkbgiiqD_tP}OTApd=&IhdGlVp4U1&f)h{tYd7C?WIk*ScUy&?2sUOY!r3o@I)$32XV-Tl(#aio8Ho$1c^AS$|tPBv!^hp ziqgg^vpE_;y+>LK|7KfPD2vvzpB==|Bs6Nd+B(L87Gh}x{m3|06e{Vv1pXFj8s&60 zNMfvgO7=8(iQDrWk}s*0vV@lAw&}J6F*yg5B8S(G93A7ROw48qt)bKJ5oo4oe2rwp zNH_aK&q#Oz<9+K(9F!93k&}y~o#4xv2K@jcC>WdE1^m+aX1OLeBNKd{# zkCN{R+N$?!1ghzK;n3pEIrXsgow<-o>jtjE)f_vnp$$2Rnm#9V9cZ#7&zBXSE;IB%jb~ZrH3*`KIyM2!1j(>eQJb5S z)I@qBEgN434I|2^mc~8U9b?PU(z9DUuLtiSn)e~z7I79(JBHgBcTA6VSLyS%!Y)m2 z9@^k<`?d_6;#DU~UL-##!O>2BT7*WL-H6da{KP10j73V?p9nia za9Kr(&Cv!;`?^CmeMB`!l(bD&=S&$sHycueraw~FF$ky6s%7$=U0Q~i7#VD7CGD&S zd4>TE%IUHz+Tv~ZMp;dewZf}}&0|A1{|$q3dInrIr$;kA-w%ih$T~HH#ER+Ke1(BM zkokJOF502es@MkYbZDB@T+MHKx{0yW&rRSKZN9=gNWQVPuW=CVbbLU};`*)x$^Y-E z))=(Yb(ZZFjg!!q1k&ka%v)}xMO?FktfSMpfl5EQAf7&FbrCnsinCb&8syW>q_!f@ zIY>H4ep4kk7qrG$6D=^ytnLh}(~-q(>#4gzJw5*ySvAj#OgaXREi1Kf+AgsN1YN6r zJJdANq<4_m<3L+-@dO3h&0E^)r+C+cHptPh5@@T>OWpa=giu1LW)@mzI4l7`_m1I~ zK|JyWlJ>%RqHO;nbGUn1k!D`5!GK10uyAniX-ppsSNWa$P<_xS; zm1PX(%3q>xE%y$XBf_es59pSmKVfqmiVf$ z;>9k9n;7Sye3l!L6esg5K4t`fK-UE}b{Dm8YgE*X_mw4i1vt z0`nw!szJ2-FG$(X-SJ{4G4)P28cC2nv?Pj!B>>p<`V&LvtPV-=I(*N|^67qG7O!#^ z9VAv3BL^2Z(h%gT#o z;z6pqOiDqmUx@x?wln26VMt8u)i*oj$hV=f>#REY>Cr>Ukw>KpBr+8&EINkkC?O0Z z*?Yn6qhsWf*KpussaLLkRprYYGN6MYBuk6;raIteikHg$k2H4^!!oU^NgE^OxgPz) zg07a9v&=lC@?ZX$ZPhW1HcqioHjBE`$EFiRmh6&&V+}+^KTqQGp*MIqq>(p&lDEjK zO3S;}ScI(}{GRd6{jW75G&V{b%}$WLVSHaoi9e!yCy0vF#3s=|Y(1|l4=uav&g#F| z^R_}y32toX99tRcHVl-_&z%%=mb;?0`|yC&p&J}fVLAErGd?k3Y>OA#B>!Ncd68ez0kLSM4lVXMC?cB#2s`C8gOtDf%)EQZwIGG?ABtSCFk^@`Mm$g6h3{kvzD5UeG zHxv@&oQM)=8>B(5*}Zs94RYDl>LOhu-o1DdBsYj%c04I;v}cpZXP|3cVWJ=LHxlHO ziY&b8X!2=oNfahFWf4j2OgFk#f-D==(w!{v)rVDnFukkQcKekJ$bqNZRK!|DhxBJb z0+~o@$dVpJdKiCT=?0~HtU9S<^{6o<$X-6Knlnv~$~#5|L8~@9(OZ0U5Z}4(m;xuY zN1h?8#E8t;tG*nhI0y~(zaS3DT`gnKUwIcL#Yke`0r&EZUMZa(sfo^t*JaC(9(g`v511W|&pf zAYs{E_Cc!z!SNfnv_&hVj1CeIs)4Z(Pg>&dgT#Q+{qdrI(oCz`g9HYxeE%aq&{V0c zgJjk-K=W6cMsXXoiW;<<>pCQ{dRF$ltuVE6QTWy69yl)N^|hcCAfC5{IV(T6lFjP1 z_mm`R(5gnLgLiK2j^P;sRYg;OWi=9*v$}oVpv`i%V=L~M74F2K$x<~IN8BkZ3=;g; zzO#S+RD&H-`9H8aFOAR^HCMH-{~67(ymh1lb5$6f=C#6}S&pc&sxgZlOPk?oV^x8% zDz)pi#hXHV-j>O%%Y5@J6`uz=nWqaHxwPS$zp-f4OqJ9OCCyB{2i0+hs!C>u)ze$u z>@aGmYM=sStfE|3lL*XIoqcC#Sww_BxD}YGx)M%8()NA7Ed7R`QowNT@>5GA?Toe?0dEeIR7<(T@ zM^8!IsW;YjG}dR;m=;amw{cveI7eEJcZW2hxq7uXK{B2`n4a7;qr?8T@)wx*KXp~n zs=eAlwwXFLA$&2^cg7Eu;;>dkt%GDfST5X~7CiLK7Bbs%s?l4N-KAZ{#n_XoTdA)8+Gk z0WxL{{{~4MY_+!q5LtNuL(q`6+5g5Uz{nW>YNWDGl+}VQfSj#fin2oTm+48Uj`R`g($OQ81BPj+>^>b-MAVcdF<9O63aurckeT9 z_=X(?FK^QZ1@*E3FeEp~Es)Y!2!Ht$0KvNg$f8Y9j%Ptm%!AW+ zDlMK{?LlA_XK|<^ef=7NRop65(@Eo=^i_vd+}WktB|pj#0pgjDoFW*~Tn_%~I{+l| zLM$afW%0mTtfd3qaUdNL+n+rU0?1wwkZ~tgYP@48-dW9-(@w_cWw}6P8%I2;)7H7y z015FuZb0{=mj&avT<)me(T|RJ&AimDm<}}Mn-?R~se`frt%lMMU;P}4_eGSXl^*() zi;1*de0yFAWi|}UqcW=T$yAt}9b})(s!G;bY4$I>gJ|A|a(4*pV(%fNfekcKL{Xk| zTss&28)GRb2rP|<-joE!8h*Drjkr3zV+hhi-0Q6Aus0d;FQ3A$ZwjeS-m6*wIm_&7 z_|TG2ZJ*Zp@}3$+`4p0s>TI$~09o5b%PxmjpPL;+WI5)453S47V@4Pnxg&K8niAZL z0ag7f_#25H+euA2qGa`}J>tC5+3FxGv(T%*Kx-!TLq0OGni~%Ci>CP5Bb4~ePnq)M zt;Gtp*6ASUV9u?SBxn)#-$Q0p)dP>L8b*?3MkfigT zd>a38n48SH+kZ1K0+5g~Q7I2vrrXLvGvi3nUHfp;OkhMi2=1(!pT^Y zvo~}y7tJ4_0-2sb6^^ z_UstB(TiMh{%ca{|6-icF~I&TWtv6vFgoqdRj@zfj!V<_x}=ARAJ} zRY&1@&}s+CjD6lUp`})h@sc1AleqO?T8#ZZN$fp}1L{0i)wb~Q=UimAKTMMRPpuwHkO(n-<6+fjsrI1PS}!Whd>D=TL!QjU7iQGVh$IvsXl06SgB(*OIq*;&EoZGLi#0AyxHBsYW>Gr?x3KI+&0V!2VtsN)} z^@w#R()RjMNC!P>h=zkr#T%{Dj&bs6T-RQncDesOw${qzYIqIG2dUcF=S=~!mR?x_ znhzEpR)RsKrd9VR1jfmTt}^OFdRwbgES7x3-Jnb^ zJWsUf7z-TcD*E%JBpwhsu}Wu0NO@16P69~2s+zoD+Lb*Z7&^Xoq_mL*ZHK&muowqP zNNGAzt+tgIJ6}^(>3A+*E#F+<*s?}7lnyDzUQH+pAepz-l_)e`dB3eJQ>(qeW?jD`PbNm#7o>5LK|~!S$ksmzt-41q=B2&Yg-8t zC+6NvO`=vTU-=6VjLQdx)*I_t52W0O*mazy^%iCau@bX{N5GFLnu&4H;p&Ix#$H zly0A$Ea{XJ@zQL!w+c0Pc}q+ks}3w~S7xbt%!<3P@7(X!AMp=^}wwCrqn`n&ze%8(_qPb|97>g0|3n;1U* zSoKGE8mZDjV(sv2qd^-EZ7Z_B{Nbq2cav_zheMYj`DZUohbqm+yk!a-wtldmsN9Wq z_G$-lF|X;+AQgWfK2?H*u7RS{uf&#g3;Z=l$*Qq@G@4iqFt)9jRo9}?GuxmF6nX9J zS+e0IyMuST%jdogBkf8Hu=_@oFSmLr#L*Ike){T{L7e-YZKieitb^=;q<+Qltj&IQ z2hqrzy~0wGY0gvfPmnXj%V9`JN(L{8WnPsD)vhd*rY*5M$eK1$d|+j|@5g1CR>6*x zD>{0y-NdL6%F+zS*zHD2X8+ zB{Oh%35j$JJ34B-nRl~4&v9Z@_`u^i_2exeTXHqSl{OXJk6$S3&rEo5{LVVjS{e6`Ed2BY+__sTGxmetuFBQ&K2nDuYK*9NFpy!Ei*y(^2-?D z9r5iNNsx?AM_iwATGA68BqObXp-TT1yDc$rQ|%&3{|W;6@FXjn;1uzRlRi5#@*_0|a0Omj$ztK)#Z?7vLSRyr_ zO_UUt4g!Zd)ZvBpwt5g0P%OC)i-RXU_<&@1a`{cXX^00SLbODlX`>^pc&!5lbyoEg zp@pSwbRSC#=lP@xgb?-BK9a}2gw*~)>yNXigSUKy58`7iFoTR&{_~CzLu7@_;yKXN$|;kPZR`aR`{HDbQYGGd(&{@@()e!l1+?s;xuNm$Ai^Iehv#T1nR zR%W%nb|Ib&zIL&X_99`7{;tj^c{0|>1#19Y`lmd`t%yUxFj^R)&E`~oTjL&oMd5~NVgW4G>_RWyz z?}1|AC+vC0PDuv}=E6EiULlt}cSymnNIOvs4Zoqg%=buLF=_iSF^;16fRK?C#Lsq~ z7=~SkU#B-x>Fo62!N7RZtG}@(?Lu4~#AGbHCYYS?*XR2r$L6?$j;sOjjCTKm>`a5= zU&)CS$h-C@*|4KEW$OK&ep@Ao$*v*V#Yz#Mow##JGG}*Qe|q&8#UwAQ&=S{TwXC$i zD>xONfqR5?9ZHLR6C%ScuTfyqjQJC48D{EWkw&y|)xJUUV;*~7v2_-KBl_v9U;tJL z5QcB0szB39O%R#7p!(`GiG)VrNDN!ENFqEU%FvE+M677ChgCU?eq=#wJ^u#EhQZnC z2_YS0xs>-FuZ7t2L$j)2YzN5|aj)2y6waNVjG(#!(W@dkkshSyZg%o$gy?I{29jDy(VwL18?!Xq zSd8D(zu%K-m99&CIGiQ%{{RBDhZ_Wu0+d{mcBDXJDZ__yfTtae)-jgkx|es^A>|6v zcYAzdnT4XMz`79E`yei{tIMvW2?CG4?D1tVS9Nlx4%y#jcZi3NgYgunb>3QYIx%); z>=_At&u;X zL+p@wE5Gt1^BjlyMQlXBJg1Ak=&)+CU4sS$H$*P6bazG3rmaFp7#;!8iG2hvYY?kzu}tehXpPBY8F3v zwFEFRa5h1viREG3D`N?vXPK7D0*PfZUyL)NIO&_@kG*<-#WA84QY1eoiHza(caS}` z3Q9&2L50Cb$56@e1Bn?+2Wr31k@?IlzRaMd0sT+{&16cMAsK5$PT%Pcr;I9EE!LfS zTK0$B*)tt4X*t&SJ6eeZHIt!n;N3?`HQ?*gF*47HnxvVm2iYwj&n23+#HvqEy71tP z(Lpkjy0Tfq3ex`rh{D&j7^F09uAXk3JR9?bN7gTk79X^Qk8h0s)h#4Bo4z4iAm6ac zX@oR7C%qEx(9`yTN+L@E!Mc<~Vwl-g*DzA}0OiOIa(teO3xzhf+?em^dApleZGlwf zdqf2jWS#x5XG@BNo^6sKd6WDb%cSvH9t?vPNtJtej!3J61cXA0+Q2%4`=H^0kz-zq z5L{)&zt7u(rt{QM>a?ulZr_RrgKlS+C3Em>b7u$fwTn==d0eU8F=AzWdbc}m(51aC zXmLtZO5!w2j`e_SSXq=D6mOSE2T{=pYNXN3(fcM@pC?2qHSt=|?~+8`@zo~`nox9e zNjVz?wpC1~O{=)~yCjo{%zWURaA*dU@;pc;i~meoX_~>UM3x|a=3d3;rj_Al$B1KP z*C{l`ss8;6=)>+P&(K6&+X!G{fNG6m`1;jUTVfcDH0#=>)e~DXnjmNRIky8%lZk1o zuHVQ@y#}Ngi)QpZiGI1$1N8xtN8mHomJqUR7qNHKEIFE*M}p*;b(ekde7K*Nb@EQH z4m2;yZUg?uGD}%yS3iX&*z|%dafQH&(UeMC2A3Ean?#MA4PKBkJBaD=%BnZ*Z8a5_ z1j*y~3S$PV%KQYUp4k-`m_#zu8=Qh@q}8xLKZ~|JFZ;}UFpxkyQ`$IgV%YI{MXff{hdjjSr#BN~#wQ1G!z4&hhMx%ms9 z7XPIBX~F60AOW9jr@EWASSUW&HWt74&@B9VP!}IO6;YyPVZ0}Bm#9E~x)skZCb;)!FnQSSg@YF^FYL6f6t`CEeI{xIb2 ztcLniXATgiAZ=EY#k5d9I!K&x&tE5*xjlD#6k}=%*^2N1*?Ezah3ZcWb_-x`bK7O6L}A*kn*JMfrw()&^k{JtS|b?^Z0BiJ_bz{>U|Eh z;D9j?Yi7M4@d z-J2(nxjTj(upp}bKvOk)Kn^IxpuW)B)cvZ`%&eBxybI5ed320Cw9dG*vNXdY=^#3G zS=SitjPJW$Kcv%M^xoesNI+1hYK^qQK-(eqp$SuS#WHBYuXK>Tbk(ZcqE#QFgJ>r0 zB@{!u5c}tAAG{&)ws@nN{XDTRGDJZ=lXqsdN=^6&F4dh#pzRRr7+cqrJ1fh=SRF&v z^=i2Ax-il~+*Y7Ir!>=nCKwV>-WXR%RB5HNrZN}#i~Q@YnDS`$r-SUXyjtz7PUTaU zO%Oe2$)%f;mgGDb8JEbu8YpH6A(JesPTGB z(@JO0li18KzRI${s?R0JS!)-$k=5(z35kvIjg`q8WL#)n@V^%#F!C{~3m!bVtI*^X0HqJS3jpyFv2I_fyu8tTeY14s9$bEbDbeqNxV=1wnP_)R9H> z>eP-Qu_p@Hw2s2C4q=g*jurptH!U83#E=bftN&W7>Hqwx`Y*cZdbrALl5g@VGtT|$%DJuW93d?8s=C&AKg)-K~WF2FJ z-hzQ7UR7pw43%@~S-ehk4|(Ks)v>OB1*=ZhuW|Vz|D{%hr7G9k-8M8ANv{Mdt%EzF zW8@hXv;4?t)ax}nh`KwbL6w$$?B_xJ$XyX<4J17uux1*SKds$PtHDaUWi7w9gc&@q zb!o08z>v(<;7zq?ap=^JVKYHcx}+t~%R0uHHo?|ld4+Y+d>fuQ)Tkl#MH6zJr(>*T zXH^k^SGjyZWba#p4bqeJx(q;UN0lyv<}9(jW8_wM@PL%o!0i|N$t>!chtI()Snm$9 zR0XoPbI`tDdq5;NVpYmm+R&Y@0T45*dxXW-=>0-q97sb8bJv;wnqRq1t_3r9b+ zqDJY88|$=+Utf^Oe==m2u^P=hTpth%ExBXk4V*qJ5@Ss(BIb{#MRI#&US(w?EhK-f z=RQn~J-5_2K98>PK8UU{y#%OP`v3iGOb}nb%k%8;h625VV2r)Eu|`t*TfN#a;rbE_ z<>cTU@}pyH(TUQG`EO`{z{qWQFfh&9BfSX*3|ElUs|HIW%XtS0Tj$ic9_@^8iw?yx zKj5+P%2W+pCfFB5KFKs1FH2~n<$beD#`U^Tl@%Jzp&we3dDYyIm19Xf zycwo(&56+7)$SO%;v;UF%UX4PKyvrVD%q~z%!vTQPMmTH;~BDg$2g$^ zQwgVOBDP}b^vtR9%&n`C7R$*40*hxn$TV6i(l0~*6lQ?eX6ZL0pa5~uy3vVd37bEk zmcwRg*66RZTsWRvJ%5prZ&7pxuQ#$g$lksdS=&xKh|1c?cn+=d+dts*R;Omq|U!hjjwO7mr=h zHOnUKp)(~&9I=0tkl(O~ZH*5R{HPq1cOzN{K_Li4Afpir*MnhWoGP3xUX}a-Im0j4 z(@3*B&qcB_R-LO9W9Ft!%(nA)f$Qye3Q2gRrqe+LUZyCb(CQoOd0QY|$F+F*&0H8j z4yqhg@fX&;+qdE>fs*3io?lgJAY_a54fe96X{xTG1`N@C2}mqMk*BK*_YXZ@J{&v= z_0cg(9tz_Rw90SG+1EyDwM%K6l=bNIt~OGuxvxYjt8>vvP6?8!m0`2Apm>3pg zB9IrF1WL+b%H4Vp2`I5 zH=-c5iZZ5JwE9D%UBj|yAzgs-0&QZpZA7Tik4i{*4gmO5H~iEpV4!)3^w*Q8ip)8U zs)C@igJj@7>izJPDOynu?wPvkpfb{3{$7EW*_79qi_t#V9+W^5c{%a}<;llB82K30 zs>u7Cb56x`gczhA-HKjF3lptlWO{D(Wf`ec{GRHb$&?J7g`39VZ_L%i5Q$X+8>Bp4 zn`s6xGVRZZEf3W@Q80*L?nlEjBss~pm zgR3wIYtKb;X?V&^31Xo`ojQZk6VC%>?S;7tpFe6> zu$L)WOxoLu4x;&OfsV zc7xa8cP>&g-97vOqLxomm2uLOoY4Fu zbC|5@1gL>`5FK{g2&^d~==*gLpKF%GI;~qQ4@OKM)!E^R)3&{C-&`h@>6&wvT|b*0 zWbf(dxzIk}UV7M2wL0_Cd`Wp#H+BXHuEP@UrVR_`TFP} z>l~39-yucUy8E?$^6))^^l-7n<+R5@kZOlGEjlhgB4chSwGXkwoe*j(f-(&h9_lzD z#SY(mKz6Rj6>nixHyY0&G4yPUYerAHa(7Cx<+=-+!Dj`+^s0cND<0uj>!NyOD7cnWYFAR+Jj7-jdIH6hgSJ*(Sx9Y zrCMH^lQ-^kI!KYE<>)s?RK4!O*2S}VLip+|nv%93mVY_uccABTPE)wIoYDL+blrLzPEf6S>n_QbfQeSL( z4}}!t{{KWoNd{7Rs5~ILhq)5%I(vU4FbCTlTFn ztd0~Guk%kKNB?5DOU*p}Xa-pF7u&tkg~1Xj zvHk&{Z)e6{MIn|I?6XPErxsqmVUu+<&K^L3F=T=Aud-}fpEEwnc4;G}W+jQ3 zoK27g-lk0V+7}(9nmm9j`eivX_xeMEpi_ArGf0H3^SrH0wT_hRT#yEAtoQR3O50m2 zM42SZ7YuWB5Z$hLki{B394+Zd49_rrmM}aCBU*@(7~Gq-#}wg<6pPlZax4C~cBJp%x^iAv_l;v3jyM&3Hnu#~O)ksGZ}V z5UVEkaGa0|bbGb>hJsatzvD?@KW*^D@Vuu$ZksG7;KMCe)E=#zKMqZu#@YdI-}For z$}Em`F7^?t1VQ9b(~Xm7dnX-4&kl?Y1*w|(WbBIZr*LqoHjP!&CYci>um&kGjWpk$kRkj5Sz=&r=H|5^5_;M#+h)H!BzDex48UszmdBT z3Qk7TgKO%jiIEUdvR#WNPSY3U9x zsMSssTVPI}D02(a?DV@4!4C3+E+tQ~wtv4M2j!EX07&arwMfe_#C0?(c%a!rTE_^L zQ46wZAblTVh-+xk9#}Q4)u*@&Q(O^s>5|6kRrSiLpfYsQZwlUMS^mQ0vH)pnvZr6{=i9!dTqlggKFWARI*1|puT{Fi)nmL9nW(SD~zg#UE+r`?N#PdT?*M*6pm~#OTGndU}rg*@Vc$y|VSq^R{g}eSI@yxmh(v-n`rCAbADe-uGh3 z`SdoDLo-?q<~5xp_7HvC&2c%}7)*a8>ofTd(dZFim-3RT)-ra8MyugqR9Zi*wUHc} z(P&%b=gVufKF?vf=IQA_7#Ke+#@XCI^5k}CNXNCU3ffj|0k(rhH5HL5$ru3s+kYV}^W3w_7$8Un zb&s)yL(5_ggeZ%|?LSXo3Jw))e;|MKqlQ>wlnxFqM4lG*>=+Ri(1oKF0GlbHgF&?f zRbL+QsI{uR7*q#s>7XTteWRo5xc`6J{x#W}9M=&Ar_v*E(~Gac)cmK>1oc&0Z7Ta$ zVAZu-Cr(zbjc}Js;sXTYnwRsAUh5zZYjh{dy*`N>7*v@k6y1!L=Jw#h^AetQuL~(G zeXkHOsLZRh93*9;r*~+eQ0>YTf;Gg``DTd$Y24U6vH118EHJ2K)C?uBh3_3>N!aE# z!yb&IvQTPb4Rbs`Jc*$;q!h1c$}#;o0f9s{AXdTkHA+tm5 zsn?2INrj-*Gik@hyjA5%BbK)4#KE4j1NSB2MGm85#6F|su7XA^?TZfjR8&d8NE+@B zv&m5e&QrI<=zqj8OpLsy>}ouaNaU+uxCvsS{%=N}bsOsQB%va~q{yCrt^59FuJ@>1 zomL5I?ezr7MPGh9#y^VY5=4AOae{($A+BDeNf2{)5U7Y_^3U7K%TO>WXEWN@^!O5lUj5AzGT@G#YM;<`P5aTxD-T}VT zu#q4uH%RSuXZaj-LR*5IeM<43#wLDWR=y+gTQZ~3q92fQZUmu?*5K)1uVzlQ&bT{- zwdySaO^~G-`W6U@N@Jhz4svYN+j3G}?%^FJhUP7TE)s7nrJwJbKgtZDdWW=CZ(mj^ zM0xcNdBUQt5ad@Os>By)0ZPAdOCajXg3&IK_hs2wrL=9dOQi1*$U|KbpGh(|eKGJ0 z7=BlG=SM>+`HMZhD!z+k`}}mi^A~w!$spQqy?KIvw)12x!9u(Y(ETfI!zbYK5<8WrJrTb9oOVyVzTH9w?%zO4$MAlr6ay-%8GLA!DjM9c%i2(*d7RtZXoJlJ;)Ksc#Q z^-!-9Bx02DgpxF!pEM!B@EunfRY;T4Px=}A8z*l=hp8KFgUpVx@{iZV?A)}VbaapdULK~g|7+3V&tFx| zf2t`%n$1ru{3J*wnl+P2dprFAIp44)Q3nX`?Z6$*9P-x6<^wL!?IeX;m2S7$&PU1Q(45@GeM*Z|%6~a9Lh~4b4}nkz>NkJEU42LP}iMbEbQK!nP3x zvZ&`zl`1iG?9!A{lJdm6?4F6zxb0aZmGmA0PDCb3VyLm6UkU#Ngwp4^io>kA&gcG% z%#^gM_w%qY#`Cgt=Rcw#O%pJh9l|&4N%G@mX>zyYHm{4!lh(ip?4m_)f5#?(u}y;{g_1HO44 zmEauS_>y&yJ$6x|XpSDOodOIQarZjUZ250|0uYknfPv!1uI!WU+B;n^!;V+ zvhl7@izm~uql4_dO8hXl<8Ou<03zE5bUOB+^@V1~u(Q3a?rHM|e>F{j5htQ1{CJ}* z);9b3rs%Ek87WbC??dniXPJdh5~ZX^jKIj}u$q3}yurBVZJA|y=ryDI8wnVIghil~ z>pXep_HAJdUW$M-Y2t_T!Pqel3iv#d&+?8T@qZ_*Y2{Jv7(Ujn#?T?%Rd0x*-x$8< zW%SY1HRpr2Eosnop2n=Ct$H%#>Wk?kU2 zIH}?PmK!2-sa49O{v!ckVB|4%>e2)4yrX1p9T>OdL=4r5%kERN)Ls!8zdB2ds`Ey31{KvYeWplM(;* z+>F=3j>I8)Ki`?DlvS%DZxh-;a$6Eq&@ysI{hhYiUySX(uhq?OJT`zKaaI`@Zkj0b zc^)Kl+dy&V&}gXb8i7Up5GmOg-k~KOV@)_Wm!cc3+%P-H!6+Go8fbnF`n)V%xU4|X zr&R*1WB9s*2GeN*sx5<_CsV0Y^FEW86CUj#YljrWXwdjrEniEJlc5$`J5K9Mwvt?8 z=*j4zE_Rj`b<=|Yh)bq#xDa_3jBO)ICRVxK!Dk_fvivWMyw&&BOQsEp_v2SGv6{9H zm$LDIsCm`oW{?u<_iC5?(YC5L@GKqv76zt%BhxqRkvxBCLleif05_P9b=&-3#WtZ+<`Ty zxM%@H--%GH_j&4&r&Y(LV_05^c1>bv&GpeiVn_M*@Yq1@Ir0~0D-se~A+{g!o?n4G zs+l|$1sxqjz_%k2UupbT4t*SB}V8e-%aP$OWUy+8P!J-pn2iRTpa_q z)UFtwb}Y*5Ad=g>th0W^3P}jds}K;2H--MZtBAG#`BMC*5VXcO!yF{DL*q2HrcPp< z%-SFZv1!BG?YK$|9l0RI@a35TJul0r%*sTB6aYPO!SoqK{OCdf#b^ggtCp@+LL+5(!gIRmy9EDbI2&ml@AH7TY1sw;=RWcO^H+DKQA^5~RA|FYjXazn z%gyd&Elf)`$$j*(eo4oB~ukuJ4qSx z-Rl0KbXjB|o|t%#P@sgLsoGVvpk-{{R2?-(&a2C5+xS`+v0 z$+#g{wxjMt-VAFim~C7wxd9ioa?(PSjY&7zMejbe#7Z6z+iO+@o>zX@4@l%if}!~T z`WXMuAI03mIW=i7JZ4!tLvX#vM!dUdiB#X-5WqjBzC`r)YmM{-F&%2fekbwQo@;hP z0AFj=K4Vc@ai;CP62RZMXJh_o+;c#Ce}8S?Nu;lnu~f&vuxAw(T1RZv|XbG`+0zfaDG0=Sl(57Y! zKdjI!*m~5SzZe+=)l?f#dek~de!YHcOtdz_c|h_l%`35>v~t4(Vr!pW93WcNdUuRi zeoz_TJQtvLvBx)erXv;mk}ln+)s`T8$BCFKb$?FzOzr&N?la8SfO)7sL zTJ^6Vi~9rpphylZhUdeYI_Dd@{CaVb3MlJ&T_?XbtCuH4Hm z;rOedR6ZMS^|ENYz17VUBW8xBfqnvwHq{ng^B2AmzdKK$AUa0gQFB)4Kyy9yjv<+U zmXYV;ohQ~oY@bV34qB_K<%S6oI|36sMw{?%W%y$suBuYVSDwIzbdW8pG@FfQ%rrYj z#_x^}C9m4Fp638nZd707M|yIJ5qa`fsejX?Vy#_=`3uVwI$ze}3677BfrEG7k>wwe zrV>OzxyIX?w91B@4q`DX!d|pV_4h#{WJ0mWN$Om05EST7D&%OD_O9B*Kw_MsTFgTI zm3D7}D5SFnPXX*1GfWJ4_JSv{c!%%bmnGxN&nikWB6yl?-a!^zd#{EEjc7kQ$k}pA zpq*#9*r>4yqGy(246%%9yMy@AKq<&*c3thRl8FvwP5bgv_7(;SZZF+63C8nGe=y)? zUb?!x*0**H#oXNBGEkleam&q7rG8qWriF8|zJd8R%w*D>X#0a;`!A7e8$_GBmkx5= zioPf`%5`7%1-H2?w|YnuFVEC{f_TI%CtBVpd3%suZgX{*2xeLyyjL`8?4wj#S@ z2xiEOokt>wJVk*7F-UusTri1G`rae^i@XtU?Tl8|YB7o&v?#S^iYKkb-Y=5#WfYXj zE}|{k>*`22xiPokM? z{hO;9q>irX=N&}yPP98QOAAs)2Qd??6Xj<`>;wrPWhKiCP1}kXtSkJMQD{1OE!j;F z2;f$y$4RXCyxXONNFKYpMxA~nuACS?mLo?b(!tux@^6e76=OSXa=rEU5(I{TXeKGi z+3+cpCk7hF=;JF%LgJysCx#*n$^{8p!?lM&j>fT6AAi$IPVG1e$gOVh5m-)651S@2 z)<2#WvB`cq#yO%W&rKzXHND4TH?hTORkCyA^)sat~NhvmECQr3ym zCaW?So>Qy#kO}XPSb&Noey*wuY}%#UruGs1=XFJ1Bz0~X&$Fg|T=|R0i)2z~#Kbzt4tR#)bLM|G%ZMu@OOwd_yY4pf;vJ*dvNU1T)wfHUW1+Ew3y>sP`ffw}Flt(-FN=G!o|wdPW9mR= z>%4AsbPPQiFO;tcZPdSqyY@NM$Fb@($L+q={Tq_63lCy65=~=}C&Wy$q3PRxdq#@GrB@iJ2aa9{ zlGQ=>(J-=y;`1aT7?VeiNb?(bpQPNQs_jBM9Q#h3U+DVh9!}$_w`1NRA7poQi$~TO z9RtQ3D9;2|>G`j(>d#+YbDW|8 z8EH`K2}Tp-V8*aMC7wqA1EQIpq2gzirD)5KaN>~pDnCaDbVKus+wkm#+AzYDK z25l_9@q67}_?4z_ z%x|n=WzTSEV>K=vWG#v7?nL5cJ)G-6mNIK@at<0BZ$D3>TQ__;Xq%)RTM6N3mNs$F zCdylq80#A+W0X7^X>QfcW+FiMy;7pnNiJ0@H$(@4*f|cAMN{f;ZPtJo)%HqAcm+&} z4&r((F6~!lak0N)a=poT5{50aN|5FA3e5>=bmwV-CdhGJkT6^{-|eQak{AlJb+p20 zr%9`x1$amr<9=GKjo6~!INu!C+=(?y^{~wnV-K}c;#Rc5oz*b}o=8TOS82`31hMIg znHuFO;YP=Zbq2;Bj3%<&+TI~w{;<3bl{d0JI>z2IV-SU>@;uiLA}2pz(BFCdlhZNm z$UU=okwXtp0ltw;htDw&36rlpF}AfruI^b;OZVACp_p1exU1Cq~C%J6g0_|`oN zf)v;c1arz0o?0CvEH6Yz+0ja-qwNt$fo-kc1#b|rmHZQAdlW;~X`ydp7zUKUPUX2m zQ=?hW%knXNm3}vA$n+^@2Bg5W{Lh4U#LteA_qj%q9Y}+$>xoMt1!e}(g+(H?Jq&?> z6xcFo6&#we>AN6~wt7`%e`TW?r3H4t^i>|yVRekPqY}`?qw09aI7e2Mun&)guscZJ zQ&C(U9_gq@4*?UYstK^z@SQ`RhY7^Mu00NKGH7>MV&l~GCsW?)d0UauVwHY*syC}W3Dm$uiqA$%+5b*70%NanYA0^qxn&(hmRKoz z@H$rKc@o>`=QG)>f4d{Vh>U(?bNf8wF9_7Y@=2-(PU1>-=|6z%Jhw0i;fJ=}tz(FQ zpjTldZARgA5EI{J!%Yk6=I$7wXI}3{5~H{)mimAo*tkmi#H++R2&@`V2IOs$6&*u- zXc;Kb&fk7Cp3hvbSCx{q3VOrU2Nc0F7(y?U$A)NG zMA9nqr(-D6-qPlqH14l;5cg%pX60#Qj&>zFl$P(1qtih8o#^?W$dE}L*Ob*kGQCoi zAV{7>#nDyvvnmC;xY^&+&oZU$a8IY`5LI39@smqX2wp z9+B2!kjzAIB?jwim+yI5xf~8X6qd*7%s{kbglc`fo1}fT_Sdcv$>=N3 zdGzyHu7}>&LtrYT#*~b<=;xw*niqT25IZS)Sgj107;r(W;_qP%RqEG{6V2#X&8zrJ zTJ_VvUi~oFg9MRu8Lns1HG`ltR=K78#*G^o27f)ASV5W}=>m`d3CM)wUD2B0vwc{W zmx_*g!&1(JX!Cgo$XR*l)b2QPp@a4V#WNVT1$8?XgE?=J2SZ?EUA!6=0e|#m_s?wCL?x|t?EN|ncz~Q;wiYa3 z+vq1_WauSj5ecOX*75s1$?-cHIuFe|qlcw=L%JR*4e#HK1Ovk}39Z5a&o1zc0W25{P zK=%w<#yC}H3|djP^>Q;4fMPjVjHLoy*)Khq42ZMR}K&o(P_9?9alNcHF z&SKy@?LqeLATc3wM)=Xw-_t5Qj}~ z9a=Pft<^y+&-R)LK9e>8^?)FCt8#ph=!V^yCqsvfRmaxFjUT*&oS}Zj2Y*EpNf6B& z1iW9C#oJR4N(`SaRR!EUv8BJK)?RP`lDe$qS3?mS|H(f=UL$o~-zC90COZ~WW9!Ax z{J4sM&zo1+&yx80r++nQ&fksQws$61L(7zj$JhF+$^ei|*)J)KHLoyRLq9Q&Wx`Ob znjf+B5+ie~D0-&Q-0J!!+4-Zqu4;nhKSKOJfAv77`c6R{n#4z|_inJKW;qHgV;DVX~7ypd&<3uk&$RMcNR^$tMLoBt=KX_}Z_l{G z%QQ*v_d#TxSXK9|BxRAJHzrHkF+ixc)$5WHIia!bxJ}{}`neKS&Gm-sGBzl<%r2^HgveKXw}i6iN<- zXrL<{1A2f(s4$Wo%EM?&5b;w2HH$VL){{a5HLvPrLh|T+3IT}`AqOHjn>I?oxZFF`VqiklJA2A*1JF+nmMts>K+K;#geLx4yzka}m|IuA_(7hN_O7@dBHya&8LK5CVtkh|+BEON#1V-kD z2e~whaQ{BX&NKfC=xy3I>?i!r08g*RnbDZnEr?GL)Z%J#fJa?zDNlk}hI3_)#S4CC z$H@3vPX!M&{U&Xn*7-8(EjtD0eOlTvw#uF5Fw(5)Bi5E6VpDJKM&e#ST!#cPQ$h1H zXk~$xk0eI;95tT6E1b3H0dt2^lAOlV_|=ZFV>l|AhnIs&$B+<34tjVb8t)hx1Bp|^ z(tg0}mk?GZEndH6bc~hPAZm=8SM;47<7AYD@I-0+@g4$c#@l0~cr7#rSmWd+hA-V$ ziimcH^xM!rcvcn7Y|%LC{Wi4x)}$z4##{B>G4dwd{}exI=lkg(ip#JR=Sa=fH)6EU zB?D44S4pEaPp$uWrqUUe)`O5Tw};!EAWQQSDULd8lgNW{R4*$;d7@yegQ$Uy_kXB1 zV$nfB#k^GkS|6z|Nn|n|T29dawUqhiuR@Z#4C6LSfU`Fx69k&nD3LDOpg=#?0~F5< z9hyTcn)Ht;ph&IAI+eD)Tlgj;e<7=O#o%cydk5L;P97Oeh`iM<6GN8GA{g)dMg^Fbgg?>14Mkw zZQ}A6G^>M{$J{6~@!IOvF(Plon#ScRN?P0PJMXWsBCGz_qw&vQJwwJR$st<1bM=37 z9Z^OvoA!3*gW;J57TJB!F4~sa$bnVv#<)g)wZEYcCdOKFO%4Z3ps5Fj33B$>zPWjz zb&$+wi*3ofI9m3f7=C6H@0q2X|I9;+z$;gz21Oo-f`$n z>wq-IVuGlytA#mfteGAt3e@px5R=E>?uWX5!}h3dJf}$9Y%#`QO z>->nBqZp4|g1t@?KA59JK(x8etjY7-i4KzA?mxN0pjpg5Aa4Jr;DuBSdMLMwX~|Qc zRxbOGXz7Y+$)QV&kVVUMwS%0{Q&kk+xMW`wj7v^I@quR%*P{oFOXkUlGd@UErpN0; zF)x|RUep8HUToAz#k^!jjWsXH^M9QkMAnvT4M?lMYmG>rd5!02Uz7HK_1Kx|)RgtF zJWLfcl9+sFRxn#Ol^FZTDw5P5v{6EsVZE(*KqQxM5fWA9S6UL%3V(_*$$8Ma6&h>peGnaX$H#+|->xo_r5KYuHRv!m zZMsm}+lp^Y6wQiqLgP1#4zhA{lR54zH!b*j=(E4wR<-)*6~2;nm6vbIt2W8|Fzp_!xYj%^3L6}`i4Im{7a0y zcuVwRD#Ly>B}U9BJv`%0RTbeFe5omk^NZnEl&=bAhOl&PA5&qKGg=p zjO47zSf{C9_H%KgH94!szi9H8E%Y_aNG`t-BdrwMNXiMa#RuYRr{%eQtDjGFM`dnG zn<(vP*7;1KO@Pt^>pU49B5W&k34|9pv@=US)PRt=9o}5`>==;mDCrrVs8K%{eOZ^y}b6E5Dxy zM5m3aY0>sbE1($0B-h5ByJ-ZM{%P4amO1u1&Fb}w-7(f)3x%M=D>luJk>|*^qGFP& zX766dkYuiU^}%Rg@3SC&Osfs%B;xhc*D(x9F2R7)AO9$G;v^}nBQd@<&zd!6{Q{+^6Jpf}{DbFz48)#)I64n-m8 z&?wRKc@UW*C7Vqen0%NHiD9`Cvj)3=R1rvw{GzOiO@~Lx`H0E;I!3Cl%dg~JV zEWIJ&vIE*x!P(^`WFm~$-S^9hi6S=9V5&gT2?Igy!YFJ!K9RWFHT6- zimVQ@1GD#~{6*XD)nSv{fWu=_y+$AoZ{Eo}$eJ@y zeF$FPVss2JKCvV$(!--Pe6yJhow%r655<_JysbO-O{7lQ=94?bOkXkWqm)qOYOyozY zLm!$>Osmy6TqbSQpb*bxr&Z`2Hj{f5BY`EB_K*b}Hk0wM$U$;GdUqmxCZ(Q4X)UXk zB|0W3$0aRKnl^ubTkx6Gf73|6n$C5MP|k%Ac=D7gN5{y|S8mai=OpYMBw)+9ewo7I z7amt%mo}l$j}+KU?tt#w<{3bajv*^_C)(7) z6xdAOPzbhzKiY{Hqg;E`nL?Aqe4j)xMG2dXAB}@LTqfb%#TPL(uSrGees z`2my3Sz3%NMT{p84OBh!cx6_!y?#2z*|VH|oTg0E_d28i^XRR6oiru?@QMQ#leZnZ zcyeP6V?&Rq!cr$Wyu4d|Lyu^b4HB&f-gn4`9?^-K$fgki{do}8sa2_=@fjQKEHQEm z1{P%VB8T?%9x#3d;kD4_@LS}N7|YZUlsZjmr60ZLJ3a+$7v6;Y=n(2!73|HM^xqvL zPxv#+n3FcU-uAgu74$O9Jha1{#h*DWr)FZ zf|CvsVK@KZG)dPU@+BM+V|`oFAu@T|tLDLI32k%?o$KCIlh(%Tc}E~?E{R>D z4(gxqB*w_?zr5lq{m+rr|Lz$9WG$2Hxxo|V*A9ZoPaIo38r$FN5E!{GvjQ!eHv8Y3 z3K)L&E*jgWIiBwZlDp=3S#CJbf$DUOl{Xdcb(YFa&o+T^BrY$2$d!9umg>>+-{7SQ z4~EsW?oF$}v2qDA{vN9Lh3r*;g57(zL` z(&j|^=ezUt%|y3I#IzyoerlbJSi|C$D$hRY7B5%IFw2 zWYvn$EbgA;*K;3cu3qsR=hM>9+N#F~Gn}hC#W_#%-`YC{1Pm(&CB3TE4|s^duU&0! zR=ITdYdwFI*?N(!g|rKy_Vx!PKZ2n{%OZ2Is*JOpSx8TE8$!@*lUmSu_U?`$!#5}` z&Z_%HJKqz-p!HZaEfNnJBO!l5P&Z#%JbqH-u==9IJ#U!js*X zeSewa-pOKPwf3G{BqPW?;cpY4S2$}R2OdRNs+6XEvitdaGC(;B<$PsPnNGi}pb51E zg@?o1B>&?%90Yh|piUZavemyWh?{5dTT;8E6x5!#CEwoRuv-e&TxPrvB5I0bi{`(w z`{xV6rc-ra+oVXV$E8!hG0#9;>MVk?^h;OsK+b{+zC6qF_F2k_F+bd z&vQWJsA2~egKGCP%QI0pt5if;eyOY9Q+cWQ8n|&;Vvz%)thOSFaWHRG!|E*Alhumw3k;M~ z+RB;rke+0;vlktob3`l8Ws$98fpZe4xEhN_ifvpCQ+RuTT@tkBtjVy}Q|LR46#Msa)WctKwD`F)^ zKE^SX!(r|A?qC3rGna-FB?+`C zxdKGjDb4X9ReHTs{uatIQ6)cG8@dzamV86Dmg)g(6grw&6hJU4XIB}TmUQk8f_VX) zzrhL~q@^DV26RUdQ?t}ZPCpkV4_{rQ<~(U+yoRBrr+g`xB!LKj0#W@0+!-fI^muO} zB#1%wt3*3^wz$?oV)>Q*nj~$phj5)4$=v&tCgP+`bvN>2g6w?-e5bQgsis>8kPNV8 zQT=4KLzrZGgH2+j+;-)G-a$g5>~=_HUR<$%A@Ua)#K-mdpb5&Y4zg`t`#I;Semx+P z2mG}zrP*E`?;yF_C8WK1+91!8gvZ7f3EF|8?LdiY6IXz}X@UVg*20w2xEINwX+t-5 zK>i4>x0@lk!3T(dh36;YiBK;P9-%tYesskm_ELe5AVp06@YdQ2sTVELXp*6rFV` zdTidltc*lD2#mIHwbPmxPtd4e##&w{in0jHPxyerju=~*V)Ok#v2Tn_MXAc>{bsjs z<#kw%g+U9kd-`Vi`gVX*Dl~_<{b1+}0r^CD_RH2We4RkepH^t>XRm)_MQLamt*hJP zYtR4W1cD&mtJ3E=4nEy$wEm+&%fYo*$k8}0^6ja#gK8gMX)ez@sGV5x4G~96msg(C z(J_|JlD7)l%s_uxk@=$eHNzpXh*#4z2S}dkm!8Gq>162pJc*l+sLlmV^0pmWXFxPW zP+z7sM_P1pFnDHXmpj~V6mNlXBJ%`f(mYF_*)cRSU59NZ4WotDiIEq2h1N>j=`D~u zkP-EPAj^0)ng?UgouPFe?=;fG8XZG2UBivedyf8HO|&TG&bHCQpXXi0iV>xhPs>97 z7XQx5yyTQl=^Qlc72>Fd4T-D1&rrGHuM&%LwQ(gO+5=qj9lznJE2Ki_v2)LaKxxi>-dpX zA3(x)nR*AWt=AspAg7k^ZmlvCcuwohKICju1yXa#X8((d4IFu`faPSX#Sc(F9Qc+He9yhF|jH zrWqntZkcU{9Aa-{7fn}ynGxn7Z5}4tTQVF5mPk+~42KteiMWJ*_W9XcY zu`^t#?iWk@YxRC)f=J%9wIqw?dfu8X36f|04W za2#56QdW)WVR{PMxl*_8qOC|P%?N1m^9I!{_rLXgS}RjgHGEo5l5%}`0kXfbGx^wc zXwfXsX9vlcal%bhNnw!pv4q4pCw!D9EzK3|JZ~$nT$v>oOLMf7j^T<39wGK`T){%l zhh3=GE8$0!Re=-S+*b>eRyS!ZHi44%KN6;~H1eKf3ubV;!bbbqrF-&6zCa>o)lHr- zUSI~duYBF6v7y^EN`kE1htM`+X?QdjBtXd6aZ4IBvH2b|%4Z{21bG#$+|W;Wn8TeK z2J~O`p#@^y`F|I4oaS=Zw;`tGkCbo=sgU*Fx$uS?K4z5`e>7YnFo(0^@@IzlBVQkZ zJKPdj2h;qCTI*Aw2X1yL4m8KzexAS_Ze3kZTEf#f4v8W8U9FNur1e*AbP&^X2M&!# z^Yji98d`%7y!)_6DESN1QLJty@lICfAc&V+f)-8rM^!*6f4I1E1+*+wpSJ~#_6kvW ztsOlbBp+j=K&L}A(MFKkm!(kW z%J3nI_4lK}Gli|C2-!8c16^zh z@@07k!Ia*tQVmJk^Qk#09OCAx6<_nYT6b#ALJ=;#LKUWfC>rqIcwT*&?b=DxOalc(NYCB zo=DL1AeL)BD`upDwED7QY%)VF@O)_#7X9#*FE8{3R>C1wOy7GQQp*EhrYjg}BBE|jVb@%$)vTx)aRjS9da!^YU6JyP*nTI|98_HaQ5?F}wT7s8dTh^g1cp$qMiY$-)IML(oX$08I#ZOsW{k>=F$)wQo!wM3O;=QUI4ar-99lvtPNRZfLqPijD zM*)iL&&R?_A{qfxvdf@FO$%MShQ4Rj>68VJA2cQ7~UXI#qlk3`IT zpdopsNoUZC*QujYQbLSByz!5>*@% zo@-Y-(IqqIxE;ws+j;$MVNUWK>JV7#usP-=hg7|U5^3P}>^5eab&O0Hes@1)%uJ)qWne?B449W>pGHr3=9l+0_qJQHa` zZ~f-Lpya&P@WumaZwsT6TC-E@R~9>7lag!PsyJ;3S38J^Dac+%Gu>DZMk36zUoajI zHabY4%v-K8q+9nHIl?bYOP(?hd0L}lbdc?9)`XUl2&B(ko?}!p7o#*6X?J^c42%5d z+KIF!X_ZCCq-3HLBZL>j)of&3pITZ)zp;@MBoC@tB_CNoauapTM%tR!#Dz7S-XpC1 zQQlCPn>n-z%yt|Gh9iAc6@#bR(Zm%3(~%is6`h49ZPQMXz;tBnVu2VfXlTW&z;xs> zSO*_k&fLPd#Bi7?)!;ZuKJsZ2#w;t0^0(sYgtigPz@;@DJ&;4<+dg#UK>n%oa22_p zm!+162^cLrTfW^f+%#4xIM7&3?K+Pdjw}=8#d9^2joYaQdn8n^=&&!=m3 z3=J!rTH~?Gyko%IYFAa1)a`t@uz}G?m%He{VXg%xBmZe&@^Yz`9Rx-r^UD&<@zaPo z-ZAoUmrKmy2@*VSEA|*Q?MJie>N})HBX4%g6TEG$;i%cjQgxiHCihd-h?Y{OHBe6*iZG5;f8=__-PaPVN7k4_c za)n><-UHK-?pGC>Cg0G5AWTPMB(E6Iw8DNnw=f-<*DZAMXe5mupcFabOYi!1| zkByF@dH9a&jY(_QO9$~i%jJr9Ft(~mU^G(8p>6UE23vh2Fe*83ll#9y{Q0XV^C*@M~Yt?CC;*+?sA>20I z-Lj@m#-|+wKJBGR$)bqs`?f5Plq+#d8~Bq4BxIC7VvuYR+JT!GC~?R^PPlmfq0uq6 z&Q%Gt(yW1A5K-Hu9~U%{ul2kwv%N|sl;_8{ACRy(ab+)Ay)PYqK|uY=^cDsWq_@?Y zc!jY&@-#^dn$`86+o~`m@INqkOT$)2S^8ddT(oM5f`ZIG{8b;2HD|Hm=An6AOz$9P!qFPud$jV!gP{wF4O6_P9Vhu;&s!>>f3|3M`uclO z%>@s^eKwUb`e3Xrfld*xojtW0aE@By)d zju#RIn(g%H7$I`!W>~vqJ=@(r9EvvsrOh_Xj*+Q!F$d?SeZW2THKfuG%@^MM#Oe^> z)wWBKJD2rRE)E$No1ANm653PYUXpOZ$Q3%ci-4 z^f1UXmxk{_32FYQCp;r_=_uvuDI}0Ld0o}qCkMn zsaH&#HmA|Qt$@+RRV-&o5k6F`H8Pt<#R*%HC)%(&$U2wRuz425r(c__N$x~kBAB!1 zKy>DNLhNOyh(MDjKPnFh{4a{l&2v-kL7jY-(djiq_*J7lK_W9aSf)8mV7irSmVOYB z8`V(y$*5dm~oQHnf-sfEzOh~91a#|HQ#@949`TmDnhi_L3=zG z-*AcY#AI1hJV8)o&f|A*oYl?u9y$aJp~@XGH$3NMS-daHZS9-$kh&L^C;A_d4HL#8 z)wW`Z;hh%yZg?>2s_q48+Tm$hZCEf)t5(mUDUj#`V!6u;gw^ZG1$o|9tfgSpIO(p^ zPa6iT3*_KFB5NaYnn<}MgQI6pba*a2-bbk*gK7$^N$-=|V*7tQNUr&SNIuJC z!+NHW7?H==0;mYrl?h@|e`>1RCZLt~Zt5GzC6 zy#ceKY_;k@nMM-5J>Jjw!1=qh7;eAmyCuX5tx;?mb7%H<6`!nSSJ;s>q?;hoLEzSY zZRc4+^S$JBz(KMaLYzYC?U}U(VuIw2KCf6T>vgU6X(h;kr%M?al4c!uPu~(mO{Fp` zp3Gkx!A}r}l>{;?n%GUdtPUn6H2w(@|HMhOK=SOivH>?TEU~Dfaa|s(X!yD}&+qd81BFW+5nE+0Z zyu`g`nGY%8eW=k10r|fTFgCexKzQEOR$VbKJ)jwyi4<+{TRX_oF{^)+|L~h; zMS>g^mulX#NO@0?sF;|(e#eVN5$Mh01o4d9!B|$O?Zk#*Fu##&*iGX#^_^%KnJy)X zLnF+!k&(nW@H?(eLObK7V?e_0j*QS0R^Jtg4BV^QduT#q(%zP1W;&n`wRzK^-ZA#P z~jb_o0luhgX!Egp#;_ zPp=|Dw%R=!7wyz)+ay8$fA%**QZ|3aYZAopAh{-o=DXTh(TNd$cGbowO|`j=1qx2& z*jRU^NzJ#=R1mbtKSeE)BhkAe;N@oiR>O3(k<*qVCWsFyIm5*hT>ZP0+l;7^I5#BpdsYK^NSpihkrI{IbveyI$jD+JdEdE`3kGrBF|2w6)9aLH2jfDYtXwRg|q`sEjfs%A1{5pL-U>MFO-^BQ@Ke zkybh1$jkN)BJqN))j^g@Am=%>LD0U{4?0xmvZr`jKBt4I*{H!6nnl!lFdWX&sGaey z!xo@OX45vc8auSDt{r2=jA|Lu2wJ@ylprVUY9{h9R>!cB;mOrTU}e+qgT(L{;GWQQ zUR&s^`HORXgAR>*(h}VSfddkF>W3!A*>6MrWM#}Ckm&o7_;q5~p4)5MiI*Ra4w7-N zp3)zqDIxbS%f9@_UHvMtAGs4H$j0#tS6m*g$vcKXyB*4mJW1!(F$@#mMGN7%KRgc- zIvwHle_iwc=a1%pDetDDf$(z9o!#V-?GBP5)gI-YN0Xi!9m70tjB3`? zG_+b>JV7F3U38C>7wooZA#y8%=ZSJMEk@iOV+R_=;FbLK?0-hPG~ub}AU?;! z%LI z^GNm*cRjo?=y{IFxB-ssbMSO4+ipMk3-?`S7PObOJH}q;l%lVYB#s^>(FBoo9fWzM z_kNF@OrT|tS`iv~_&g61XGV2#!)g4iwj`1Xw3RWu(Ik#qjY%mcME+>dc z7#K%uu_8K^j*itP3e3!+xXtJoAI z66VTn-9hwByRPb_%H=aooFIN|qXfHX9)vvtif;(SJy8?*k#l=uEU{H%G_+5v6`K;{ z=qi!CxoEUldmcp9ueFnsI+72sB|+SdRF9aa;?atwHojrkE(5w#zv0Ry$nv8IvskT= z=VVNblL;s$yp4AsTF1}~d`mK7^Ej)sgLocST6r6-C;9jLHAEBpT)jV|^;=E{frMQ} z50mHF=p95bMTI9JI=MejVrz_3GoQ3Jn{=G3rGsKo{Cn2fDK(5U`h)gTIOaO_QLzht&+~h z_l(D6?zR$$;pK;|Zf1~c_c%5DK>L2ZW0;+RD$Szt@#gcgGFKO^z6EVkuSJb^U@&YL zC{~{C@$MKqawpDe=>BM|F+uVcvFa)CI`{ckeazD6ahmOY^NccqqwpP0*I$X6C&k@S{LcLFyeK4li2A<$Vr4_fQX-AYvPKNDP-_b#W*!x@upReK-oM(EF=_ z%*0qKqdML!cJfm>Nsy!AXd>`>xIGlLPcyqkpKa6ZsvF%1qCFNRIzvK1%+zIdZZN(ZBd);{>%k5l@ z4C$`C2CWXzPZNwvj)mT;l18WA(m#(1h9h^-3{0s@(kQ+OBC)D_lpFF#Q@9CYxhOToxM*%sEmQE7 ziPgF{;-n?Ft!wC*9I%0M@1co!v`Ro?oSC;3#xZ%4x6gCv^i?OY@r)p)gXC?ixJra4 zYu=8O{f(7ze90lwDAE1<#jNBtB4e2tJb`Iqob6>!ue2{~J)4)>=?GB zjJ+36%Hdg$$Sl;Vbx(^=+PgCNIBiTZl1OH6n1w;fVK*qHkuaNuX@bbn;Yzio9~~nT zo&k22&?5LAX4#iVNf{Gun&xKHO2aQS?~Y1Ec&ddD$W|+A;WXNCX46V@%uVhC5aUTa z?v7#RiWHPb*XXAS#wPQkEzLrjVr+Yk_%N`89m101e|HGRCbvsTP0`vSt7AZ_S*qMb zYlfYU;p5cUL+%h(ajvDfF*1*i1rXX!AAe4hIYxC3;TU8*e(&lSnhybtL-UFH8#MsK zSNP-(^y~Z!lCKY@%SFedQ8oUay#QILom~$n8Uy}xkdv3;sqQ4t4aGW$W&nizQ)pbd zzYH^Axa8Lbo&c>vBW>9+(1?AA^PN^{l8&)d6cWBcYvAt(<7Dh!DyzK4VRQ^N-9_u> zjjaEzlmf(k8Ww%gQiRzsHtZ_&vK?sS4A@k$7=65Sqa#Wyn4szSezEK<8`2|$*tqS;R&t$UYO0m#YSZk3PF zigVU6RCf(N80me;bFi-ivpPb;cJRBy)8&=3I)*7bJ#y6&eRCBayFNR;TUR8*GNa>+MjleEwV5wq@*s- zn*B(TPkffN!(=%euDmunhz}G8K&&7o)Tb{9#sbw!c43k}-&~R1L6&4h$2?NrJpvcS zv%Q>AXbFi(2T|C0m$nX#hoT(=GYVRErnF*XTM?Kj?izIylD};3h|w`t$V69+ME14M zr9;TDGVD{*F7)Tp#Wg$}=OW9&Hrm7LQ&c=^EQ=~cWY9VgcAsr=Mt-csZC#5ivYvl|^`yZbEZd0ONhkl`h9k3R4fyuE|>=pgeUa@JFVc< z?y3aQJQG(bj&ZK_%nD}5@X}MS$#2fv^1S~3f~;>KXD^O731W;6k=c%w(D@+^bL6e@ zJcq0(mpj(+ix9M9*ole2S6S>0X?N~I2_<9esx6Z~-d=df3v$V^a(iLvNI?IhgUIl6 z_c|%^h3{?$F$=vipQLiXK9|+WFIr|@R+BUpxO$x?K^6v6m_t0+cpc=(UKI!}*2v!f zcwOo+c*c{ERLJvh&JGfmd3%Y-lH@&H`jZH*t0NURlEjt#S$O$iT@yvfC3Sjo$Da-Y zr-_=Cr^yrl9j60E=5B`Tisp*cntO;^@*)8{$awU**)cZwAvN*OVjF7zeD#w(uXNfX z5zmktbdZea%4d`&b~Ss9t>99faAr|<_IuYLW_M61KP>5B?+*e}Oe)`jv+ zOsr#I8Hp}et7^G74rfZ?x@`o@`lJQyons!krH7-jVVmHd&6 zbAwYJDXcGhMyqp-S=x3#npMaj#grxJ9MjB%8f|Bf55}Ah(L_=pkIc4X>}6FZcT!n) zf8%rv5xcH*MryMoTIe7dn%F7BBGSF?&w51e^r%5fQjc=9#A;)-az_;Xi1qRAc8hGx zE{J>8oJbhf+HQ%VXV(Oxu#Vo-a`ufWv2n^9GFbO|Z}RMQl~AgR!n3Z~9b_pyu`AX6 zjb0l-j_MT<`LChFpTDZM?3R>i^zJrum>_PkE4SrYg*AHY#%$P`C8ACnq-(9u#8?h- z2ZSWFjIiCZ8>3X@4+8sZ%zw#<^WU!;15JU6*uNNAyF2)!82 zvitXd9Hbp}%d)s^y&at(`5@P1i)E%K&pj(&WVBv0DNYhV(I;Sl4IQR5(KY-HOD7?A zXxSxfRvg;Piiwd3dL1lCwM$#A#-AYWX15>Bx~h6ZdK-*i&n*Mc3@6)6)dq#eOE_)O zT(SF+0uD{yx}fRsMgkv<41t#40r}rZQUfHz+=WUni<0-=hxos(6BkhZkv;rFFDA={iAtY%N){Nh*)#f93C1KjRxSZfd((vrens>j|>9 z2N)ZNMOy7|D>06asD|NS1&uv+NRYe?cP)vLuBwMwY)u4`7Jx<%^fO?LMiO7`YEeSv4w2<9>BoNCw=Q9PXO=R+8G$?tIU) zs^4AOf25q)i=Q-c} zC+#|EdBTW}u~!5{X;>b%&j@p3$Udh!k~HDU#wbk;+fm{UbMRE*M+b?sYuy*0d;py9J#}FM>l#n2a<~{Nx31WI>Y9~+sxJjEONZ3*> zb|Fa?HE)gfaiQL10^$j8biIFD`fdL=$iY)p@{W-Yu`5F)PK7-$%VN*sb{okJeLd$d zgn}$;tdZwt(V_?Y)>yiJXfy!~SaTGmY4RKuwS(x~f|tc|HF!TQ$OJ*ww}M}qhiy9= z{Tu5FZUoITqe(~{$OL&Y@>pKHZ}i}K=;!};sBQrAfan>sB5a<$w`m9QBNo>%j^--d zzODF%jAAQ0%}BE^J5++?pLrN9FqMvRYI42W-!!t^=pd>lV9*4u+1k3_iILaHEODqo zlV5G8mOv%QD*T-^UEe0Dlo%N-UJRuX+4l1w$K%ekZrbaq!<2!OBm2kqSQ4&s3t zbBTieXh|S}bO!2k#uJB7yp)}?y!2!E;x}TU?vo_8lZT`ur<9DaSttg(9=O; z{i~RIutMy1C1OB(?_zrji$C58HBvG`dz4}fNiXq#J&5F;eku{Ai7GWwM!8dN3dI6i zE3_%7B}OLgZlwhGqg+9DuF=@l0cXuvbVG4~Y?Xzpo#;0^JBHXb-17Y+X18FFP8JT7 zMVbhFKdk+Q=RXOvQ2xo^SWC{A$8MQJI#1f{!N{$CryqD$ZY>T1`z1mvpmUZoLJ#N? z#D_#pxG7J7wOu6gjXCr#$!`pkfw3|-1kINiY`q})PhLjyG&AF743HSQtcFeh^8x?o zulimSs+c_Qoi>~&C2-_u74yX3`Yo$@lPr}I3?}hH9+iRwIr5JLy-3^pJZA{>jaI!a zSio}lSzkP_D+Y`|aE3Uk$J%EZ#qtGa!iLk3CDebkb=DJP=j*Cc>>;I|(ghb1M0}QV zgtIcwE(4YrKD0c4Sv^+hgZ#ztZ@}2ni1!oR;ycJ5KA_nyENYXq9&2Jq47E%BBMB9F z8+Az#pQ|V?hvngBjk6&E4e~mF4^0-n-yHE}POx+{M|OHEEJ03QPZ-%*w7a}<7!yPH zo=|mln&W^x3*vc!T)k^j2BOXKH?xm#$Q@UAA!RvzP)ngjy=o$b*1hix+{8eNGmGIu z3Pn#eQnX&~)D@#;f){;kKoSAuNZguAillI9gI)7R#Eo^RpDT6K=@S*C2&+&(yMFDDafu zOC~uq3vurtnSLA$A_Z@<|9M-H_imXG{>Tb+>i#f+R2V`!PabcP1lh0xC=gQDaP|8z zK_pS&3#q)u`sx_AA>9qaCoOrijuB@`$-C0?D zpxsNP2?E1LEnhvBs%uNx6C=Zu;xGzn>fU;ytME8j8%9_`Nv$gCL~>Ho#@uUO${QrrnN%UknOBebNH2yZDM4C zJ1UfOmblRq0p%H{9&&YuSe5q|1WbyWWj#DMy46A4N5UN)x@xo2TE0aNm8hfCQyQ)Xf|t;(71&yH_T*l=E1Af zf|hlRouBZn2+)F3c^*X2(?N}fG(`7)S()|jC4OxVIeXoniycvsPr2HjtQ)cQ)NOp= zg8YkoX#=g&L3YMJq!n)j?&oksi97f#tL-qML(OziyI(31aS5BR{k>w`FdL5wS_OccVnK7?$2yKh34gzEMC{Y@kbKmY5I->F_p59dcQJ+VUNU^5wpZP!An7$sE z+c-2<&U!G`l2MnF@lM;>K{8AzgC(WOIkdT>#DF9z#vN$=gPsv4hHng@xL{Zc?x1p{*r`<^_At^F=$)cL#CR9pxm{o{npYXJFq+`g=I2Rsd0P#Q$zbxj=b5&X9 z&T7T0|E~~#{%V{Idx}y`+Y{~WH;E=$qR!RgO{GXrwOD zyUhO8%|x^-eWsud=0|yyZz|cjgG8pvI=9jEpWl=}zU_0}LM83^7#&04%Lkewt#bT6 zhh=h8*$v6+=)GVg^W=Pvnt>*@A0O3Z9~sT%nNlDmU%qEhH9^j><0W84>kc+`G>4tt zz9moN7`uezO4u3|)ahW4+%KWNJAlA0ye!t&5q9b~zzeO(V|hlX~L z6C+B^;?Ty3TB8Q4fsp}Ksaepzrr9xKtW{PQG@3`>73Z6oSXTH?EZA!Y0o`1#H9IZo z^9~}I46Y%1Ucq>FkW5~!W&n&gG`KoQtS~Ls80*`Lb|J|(GqKrs-G5X0hTq>Af}srB z1j}=5$tOp>q{Hl2l-&d|StXgVY2oMlvO-J|8E&40RKw73>Yng<+q6Wp(Ge44Ym`lv z(Gq5VouyhzqBKn9nkqpGvA7u1@nvkU;GlHpj}!Ia;07?VGW#jlm41S~<}0m}%ZI zjx4<@6QmgaO=Tm$H8b=!7p?!)x^;=+__DmlC1`}MzaTNbp*|pxeQ5HjZ5swg6!-O{ zAd()VgBN4(RBH|;2xhm@+hldpo-`rAIymQ)(D!ec5`lYV zEGWoNmTJvYY!BqUaxM#swndu1MuJ$Th3im9``#6aXiRdFiw#}r zs}RV$4_o~>LAHq26w9U^De^oC7`u?h**u~82g6iu^l*5NJ<>rU9|P5Przy0yJU34D zA@8ICk7RH<$o4sJ7(^5Q-5o<*OGSPjn!<3ubkAoo9kG_N%-?%}9TdwVR0rl;7KL?A3Jn@hxzj-hi`!afJh&7m)ee4cSOCS{CQW&E3ughE&POcdvS z#Ry0Y^dT$44pM~uUL=Y>WDRxF#!H%nO+x67g$t23Z`tD$%>+IplNu@_jTt-*g|N(} zJ<5rM76kPG+aM}Et8B(ICwL#^WEKJqW2brK^-IJ)RbAED<7xUg#%O}LW$ar$O5VBH zwxNH+R6$VuugCkJKe`+&SFo>sM4eBJ<5mh2#1gDp2hmt1Xs~G!b-$S$BGTu2A(Fzk zM`ASMn?nW^4N$mdeM_r@>=9A3=QJ^|9xMb@q`er5yyjHj-T@iuGEz2Lir%lL_;Mlc zittDvf9n95`+qP!Ek|gl`OyCTwg9rX71`%U-hP0Pv#dN+CaoFrH=qWH9WOTxBV8Pw z;suP5U6ziERtEUXA6x?g#F%C7#~Q&}%~T8^TcwDpM1rk#46$KF;-!@p-0q+LE z9Aw^xI2MHzp7f&P8s{5ZY?l-^E%KcmW0gr3xb!r7*@JOTOt|JO+Vp%sP0ptxYS(Or zmJN;$;yNdMG=isx)V7Fxkcz(|aV*i)MmYh7cz{tQl;>x3tl;fN7_8NvOx6E{>kd!i{iJ=4J>9JzMK*m*D_S3fjSr+qqx$QB6YvLr2f zjTabsyqBqz^LQH3F+xw-d`+G!PkRmwEbgdKj^*2NJ{uhb)|$1`NinHEkwbhs#;64e z(t?cdc@EDb3+8UYs)yTO(}M-jvre&$CaYuA3<&^|vFMq#(`iT6=ooVRlx?7qZgmVO zb`Y~OP{TCRpv#)?ibU9`nO+vREc(j=6=7AGlr|fOKYE5OaKw2-yu1H<>s)f32w4fO zcL<;1^=e2((cR=^^TmH-#lhfAkUDm-T;Jh+`{%F9@;wi? zi0}Ph-S!rYy%MdYb#;)~xddnn(yI8ak~AR-pYh-(c2!1nh<)5)n?P$o>F5w5d1a59 zPW{nwo}pWw=Vj)lJhH2HkWdr3OsL-w;MNqxwPW6N|2LY~0NIuY2$)bj^;qv1;(MTO zVI(7fr~Z-{=59CUEnWDSltXNkjQQIV$$=Vi-iyBQ0U`fYV7E&+ENGic^R1z8g$}GS8 zJa>Pz6XVO(K4n`Hq}-_w69L3SZ`?jY+T< zvA@P(0Fj;l05?OPmiFuzc2)^L2(22{>In;4DJJE0^{aGX!4v!X1+kLA_c`*|5?`gv z#~bHT?;w~;D{(N|@I}i36T=X|RqvX%)mO&|lR1ieN=jxsQ+KWXO&_z!{y&<|2L>8J z;J41jGW=|_n*hn9cgT&YX+6f(K`eAY9yQ`%>Zw&lXNyyTe=DUNeVOk?&M%pA# zqM0C>3YPMm@j98aW8{5)>tjw*V_a=64IsWC9Snj8ZIiUCO3;kZJFH?fPZ#YVYoCJ( zGK)p>?smxpI%XY>ynEzy3_Z8uF`abjK2-Ar@e{gGgQHb6S|YVH&#~>b4@p5#w^j$n z65mBApplMyW}qKbK1-NNNDS?6ybBQ3OrW4oOnZ*iAs}m6^i!Jh_*$0fa(+vb*e`9R zv4mKDJ5EB=Z|b|wYGSOU3wTOY=K+CKn_lr|T9ZpUNFEz^tjBnBlSy5w1s$ea^{z)s@RJv_Ah5po+8 zkXa+TZyXwVk@%`{t{}A@SMLPpj|2@=@Sb?3UF{f)h-Pvehnk)@bb^ogGAM#i~LgZ4j!>Rc@uU;G^TvJt~Sp7b5IFTn$~OEi5u!_Q5IxDvXp!VL^o7ZW!3C4FWl{)*23JF zp@+(wop0gph75qzxYZ02Q~oKh^|pdHsXaP~F00WSOrTOs`fD*%D zqPJ?qBJz#gBUd4er`{DEWQ7YFw})2l?cc9_nXuoXtDsf++xZ=m-ro>Inx zk()3upe8ht-@ZZYn+IxuID1Kjfz_Lz39@B`mvSOcOh!A1z<(YcR-X67=oqG>l;75amJ~PholMD-FE?@8J+y=>dZNEGvs1yySCtkmd7I{)j===^&Y_Ii7^XqIgfm zg%)M$+)eqB3M)Wz#jOgL9U>#$A!$NMPsQ%Xk}7FKAKz=vqIy`;T5N$ls(o2_YL>B%gv; zaIlVHM^{NfI*q#DKi&gP%Q311MB-IE1+ydH6rX5W9GbRlzo;ZnvHW<8oK9Nyr_i4u zV)I1NnMf9--CYqNW;RiTS6Xz^&lC9~v$j>mEZVu)_J~5%a+LqTm9Hpr@2TjgP+S>~BC$%PIgJwd|13Jt~ zu2Dj9Jf~if4ubw9=$}Swu=jW?;I=pF+fv$@(ziQ)TU6a4%@ve$mjBXU58uN*=P@l>^1Mq7Ec^xcaXf=1M|d2BdxbxctcaP;n{;aH zo)_^kEr!z~adsXV1VK)>y_oT`SzmCw6B9%vR%KVqX_4atVk+lKT=HuE4+!-8kc=9w z%F)+-e=t$0{XS_R`vJ*2eH7JY3(c>0bP)8|XAKhYdWfroMZ0}QQimfW3wbTNP^6} zOO^}fC)b#mBj6qK55^KJ+RhY`=El%RV^S+i}f(2Mkw!W zuF_nsd+LLU$~c!wMPq+H7z+woh)zk$tq+MKF;0wgzpY=*CJ9C=WtVpVZ+!j1h%w3r zk*JQ>_K3rSPhoEyw4!|9BA%bYoU2YongLCt;|c~UwaU!Sb2s*mVQVj`e0S1DRAvW> z+#?g=1I^l~$MKk_l#+N~gVftyc|>)PeMTvY|L5k|pT83%dX{2@GB*S$hCCAP z=@@1{A$5C54h~PvOff;ZCkmxXtNpd@tu;V-DuN?jPEX5NQA0ar_%)3sia(nvL4xQ$ zR>^^q_95g!I!MOUii(+&wn%*A@1d^i8x_9iq0XXE?eD?ZdzX+BZ8S`!$>J+&SsoBk zX4U!E>IWKvT3w~ z@p)P5=N1=0{&(pY0vv&Sfw*RK1WbR*4-$P;blrkQ7Ku!2Z;)oiwon!nf@cGaj!J0xC^Eg?nj zUo2@%@2l>g9(B8nNzTdW8NhWA&s4WG;aDBe46++YfJ`GbPj^_imG+}CFzkOd9)88k zOpILgOJY?LE$9)wP7oVmr6hVtb7)V$EkOc0rMq~UoF~~mfUuE~&>BUn7(Di}c96ZS zO7OxPPqB_6dsR<*k?Md?1wJusd&yk|ukU?2M&Kqf4Ajw{6SvojH2P z*mla&GqFey60IO)sQZW3*d9$avCWq!hPhUcmB_{IUvJ*^x!FP6P+r%ty)1M@ZC+P% zTGsP|Wbj~h{IVoDS5HV1MDzG9y2GIfZ}{^hK5@I(tTC(p&|La#!_sM8jh*u&ZMy`? zBXLx`rL;a(KN~j!;F24hyz}>Y5Z(C&my$j$>lq!xPv#0WDMlNDX)RDY-#C6swrkT= z!gY6$C0k3BlXs>>$2bzzwBpGXH=o+XP*s`NrHJ3&N zfoTD7Uv|msUWSx(46VB^9pgksjoc|jeLylvtRWbqy{z@DNMvS(8JM39A)0=3*ecPA zL(>**1)&7la|uWlJOW@38}*Ysd=WM(jU@YG*xFGn0VCxKPqQ*XVuc!t<&&qf-j>}i zsRDgO8q2$pLlOgK^EJy8G>4}in;IwJmh31akJx)99NW!|duA8ZTzljuAd~h4DP& z+Ex#;_@-+)vrZw6{y#d{39@4z^buLcwQs5rpX483rR>bvhP#t}6T?TITEr^KLtga( zh3ZpVj4S|zZ!B(3|$geT!3fr^nm!D=b!04ZGQIe zr{(h-J97jrBIA#=03A`}DnB>k@!N! zrcZvX?Op9JpzP*(KDQmBdAx)pxL!O<#poE@q^t;o_8cvvaxk^V0%uZb`tAL@($Dh5y{13E zs%Irg#1MqN%F};r3u3uMqL4jj={LPE%RYpPl^XK;di|QRPlxRq=5e0L&h8+Ys!yx2 ztsj|Q<}XGbh}G7k^^6-qI)Aa&x)>}r4Np04&IB_Bm~c*V?NIz``>WYqJg|G%l4&$DNQe? zf4=LBGl!N;5Nj8appq5v4+(=K5b;LW$THNiM0A*5@h>=Xa+^2JnMyYGCqa5#L%sydTocs z%ah$f{7gm3H+XZJ?aQ(Zg-t46WVyjU)awLUxgKTdMr$Uts##)W=pa!E70-@)bP&yK z4a%sj5#V==SfM?Q(AxE${EZ9x&ug zFY}B^i?sf(2te{+obVc1G%E3Y9wcO6GA2vwzKeOy3&ZGMckn--#Pc->Vlyk|*v&0brap=B<(c zYP0W8m&Ur2psb@&X9saO0dJ$lIP}1gJtYc(gJ&{+@ zbYq@N_k1e38yzlqG+)BgFZOqB7f6dV8jTy!Zakl@^dau%U@)^9z_4=;T-~^xU<-QG+DddF=U-TE>?3lF**xq=uYV$Qqh&ES ztyLx3K}>9}lCb>IrJfj}Yaz$`*KFrU@4 zAaO%FuM{Ajk5DznL8D5xsC0qLVF8sk;T3&P$5?Co?eLI5o24%N{(zjp!Il;LTgKIokL8JjjvUi-;a*QR(uI zk*8K&h%`3ldLARwol*4eNlSS8qVF$X)I=`A%XeC~z92-OAP{7vaYI&zIKKby-~g-C z)T)>ZLiDcCh-Xb%yyqfx=uZYG*dVlts+NGR^I;EGft*$S>!Jt%*+b5{9iAUW4=1z5 zd3Cf7&x?C>5W{tN$1GSNQ#wejJz+aRv*PaC5Hj=`#h2I-%h}?I9VAa*IQ!L~LEz=t&Dv&I4j*QS;b5OB3xF8D1~UF|!&YPd>dYzi5}ml`ZYdZr={bLm~L3 z#f+n4NVrr@me!zb6~M&s@h^VhDcZH>;qq?`D}K|W$yD@1-t!*DlHic%sjrR>a`M(i zEtBZTEFB}Ss5MqY_EuD5wgTDyZ}Htk@SIxly79^{OAj(=oky`isd;$nmX*{ zQh*$FEfI-9Q`2u`galDL6Z5}^Mx0yEgSbVp^ERz;)~?)*d*$qFCr-PmtYfSgr%KrV zBO6$N9K0*8<#RjX6U4@l^}9_O4S)@7rS;0%%$wA&(S;_`{%nenT}mO1t+x-yZYbWCr|xT1|5fX z>9+VfF?L?L8_UjwegCKyJM(j&a*2~pm8!!2XQ}!BmNv3H@dy7$YeTdo`ZJd zj_42z2%wzNc%MC%gG1!dq6L}K8YA9842JSm_2oHpNC$~L+pB9lc)9f78+%fJ5FiSVDRW}kuKqW_9N=tM9>iPo1axYr7k!ZQd=@^+(&1$jpdT#Ce zJ*d(iMJZEgw9Iy%9FQoZ)Dr(QneoqG6*&j}Zr*9zj`YMZ zTEFGw)&76ST_)|`XmQU0{Zp?e`8$w4;GG2e^Es3GWN(N&FNpxZQcRGk? zFkQxzq^=~c?!Oo(qpMK`xy`!E1pjoKjye$db%FA>z!^FZBMlz}Eu1x5&yQcGmp7gBX%R*i*5{_OtIp z`B3yjO+$DthixA!R1y`H03j8!&=>9)J99!5vV=ue_7_9kr7&3B7VYbyW#t8h3MXA6 z`TyEtEtHssmyN|H<%Hl^caSA2^LiYT+NH;>)>wud)(K4q z1BX#|ymflYO zuewD@2jgg=gN%$y?G%BA7CKm4^#s{dsvmM#CF|2xT_A6DMh*T(kj};PK1e3IhVz7# z9Y%i+h^yFv*v+;A1dY_n{>L4(kEE$X-#n;`w1Rxn`6={_xemozHJQ)q^ zt~?)$hLJI(&aGuJ%kxp(9b~D;<(-h`YW5eagMe*Rl)Oa>AK+2bK|nIAiEkxQPf&*K zAdw;Vu5#ueC05$5b^+hW%e#+tra+3MV_+2fl*9_HPV+p6P8d%n2I-JrJ$XwE-!L%Y z$;@Sl(l9cJEaDWCb$$BLC{WwAl1ZE_0omtD6j+!9G$b}DWzXB{d0V!$WaenIJ3WdQ z%+T$FmZ7pF`FemYnwdhrEbI`L5zB5Rl*Bj#TIWO>vG;dXT%b|x@yVj(c|R95??YKN za5zY6yO=Be3u0Bk#<}PuU8waO@b>KyvurvSsVTOey$)e0u{n79R?jZ9@@ADvrderK zZ@&nHp=@G{h|;Pw?elebvqscbXVDydc8rYZth#Qj)(C8CJBa8Gs|VqbLaeg`62trq zB?SRsWc*0*{)a zUe6zyN|EI@%Zsk(hdQ7~ZB^7V5=qj$JxPKjLybNZb@(ph*ezyxvV zW^GI?(=gh%w4gs-L;X&QL(l)fSdjXI$vS7v^W5_eah5rh<>Xf#oy5r0TtKbgG%MD= zwKICyCQ$29TGyyiPISW@cg{LKNHZIcLSBNDJMJky6HC0VNuVak5xF(2NedSAc@ovk z&_N8K@wnSqo`Rqw)g<1uVYYsn9GK(YSz=NH;ZeOvj0LJ(RbWZ!`D2ujASZYF^_8G0 z5w{RAK@?#R2VtAZuB^<1x_;WJKHv%vig{M(^wPWnDqk17U&9{E~qPP?X zRbKg#i77B_W*Sx0dRhaaAHVVi6jh3lPAj}Ojcd)kDtF@baw4_ay3sE{cHV@L7*i5I z@|iVD4B0NVM_7%c+2y|y#Lkh*(3O-JJldfN5+@ub*#C;~|NPNR(&YpgWqZ+%!ge`X z<~ZRXS<|#M+CWx9h~{G;GyAU}(x1O-dE=oTZM3Q9{k)vWcn!5;o-Rw@1NjTj+UH$p1 zP)eTD zvjRFDV`bV`ENy4C1p2;9kOK`^%!$(MBU|v47<%mH7sg^J^}U@Sp5b5BU3m11_pTylCey1vOgjqmue#^|Qqn6l zU$k}>+5$V!Yc`bS0RE``8g}D~QdJ|BzcPNB9V0`_d0h}`^#kb`Hu6?Qhl!^MxI0G7 zd8RN;gB@KH# z@^A?fI~*$h%DbQ1_j@oBY+{&4r4>S=W9;0BR%hX_N>iY_itN(*pox|=J%+@9;i;9p z7Hzbk@AiWU;nLxC(lz_8x_o)Pj#A;ExdJx<(8SnKc*dkN4a0WF5Z?<6a(HT!)-lZE z>LMF&tB(#6A@Ywf^dp~U(>%s9kIFFd@TeoFW1Imqu6hufTB>yropb5n&N*ub$%Di& zx*N2Zx?j5XjWzXDt&pZgb~?sdCglYaw4!JKelc0Jb(di;&-B1Li0&whLSmY8o+a^f zHiS5MOoeu@`!`Np@o=Z*gsr`tAWNj&ji=C@0@m{+83dJ$3h&Zw8W4%0YHEi{D(LB& ze{O3ZqpFrze8V&xjy$xuy@$Jz>FumziltNhzc7wlQ7(uL%wEKZPmvKCQyHvDmnMdX zE4aUlRA_yIL?7QAXOuiDFYRnED?#?aECErqtC21eBCqk{P9B=7Xp40d!{()hO`ffI zYbYm3tW%e4&`iYIMecZg`5-myNV_&h$Jn6E78Q-Bys|oooJ%8{I@4@yT7A?@%4s5cpbfM?&mm|;I-(#Mv<2B6&ac@T`Mm2z06l zYosT6$^Z%Cf^)0Jr)jFVE!I+){&?N&gJeSb9$O06pMVyb((2+pXw=M}V-!n<<_*wK zEzJ+X0>`hC`snA22g7{}njy|J8*X0~<`Dg8Q2T|aV`NNPZc?nVw|B1_1TuDcYVzhu z`oU0tR6Cxw>iLVv8{J9~@K@Q0=YIm9NW^m_V$M@d&R^&d ztv;Kx0_=Xo`{%eoekphF@r{fcN}YPqObL5h6&Q_~HNodbvr;%6e@ zDt(MaOF~;-l^Cd4m+m012i7u$fYIK%x`X3al*NEAo|nPbWJ$NJ-e3)sJY7OW!H6j& z9sOsXAVFlB*!A?HP0EiBVrvzb+Gr(>eu%6uRz~hl6btH=fPlB&9#h5vP(f^&?p*h+B_h2HLgV~ z&E{u57(4I4im8Lt1bccF0dKuk${S9zcW-%Tz*}z}v~WpN^V;=l1J-&L#hsWu5AFs6 zYrQ?OAj%v6@Q#s*)TjWCXY}KvgXlQt>e|r;ucBi(T<_|p`jJ&!_JSaMdZ;3LdqEQt4J#ODPqde$nYNgNM zRlrS8qM}=+J&1J-m^0MI<0by9V<;p(g{pJZrhpT~GbJxc7bSIupGtVZOfS}{dL=2* zT)kkKAj{-RyRt^gRwwNz$nk$|TNVxdDaIrSe9-qL&CuxE&y#rUTe}jLVBWJ$qLc+d zV^UfK*8`u(&+Sa)A56(6?I1G3DlK2M+gx`Cv3ZK6!Lu`+4@Rt!FA5!Knheh00@)ek zgJ(_c661}wJRo^)If}?i%WePCO@JXg6X@br)8sey^B@KdH5k#+c+Y?9qQHpbHz_1e zO|`c*p)_#H{grrb?GBRfN-@W_Xl9M`c@R-urDw;Z3;(?o0Rjfls;h*R=uGJtks!rY z9lS}3_8>6Nh0S4cRcQ?h?;vQUqZkmhHuv5gLqe`(DXYx1{s)Ld7hqIgNSjKJzaSeF zpas+4L-V%mn*{!P!-FU%3dOvRai(rL%(1DzQ`W%9O*l^tTV00EGdk5fH+Cmq0@Fa?l&4##yBw0b~4Q4U-h4$McDXW1zo!}BH? zpyJU~E@lfKB$KPP;?B0PMnd{UB5-NAn}p@k@P>`@9XnR+NTEqB|4ps{k`J=iwLGMK zzt5AvJ*-Ab^+)`&{BmI*rf4CtM0a~(4j3!^)RF|t-r%_sHIu7->fYrIa6AuU!+nOE%QE@UDrh|;fdqZ#y2hNk_T4ccOn_}j zbAEo;BTj}vHITi`f7 zSY6g+EG@#04iXV-6$OZN{B}jAJWake&Wa+Z(`F5=W8}k}Dn1bFL8pUgCL)*PLeeb$ zUvJCT@Zv(V{ID7+>*RlZEHRwFhbLYu9b@fjGpM2gZIete=QOG?duYRke|Z}K(X(o5 za`VP^p10*PGa| zbP$nI3fzmfB=dP&COWk`?Y!c{^B@5cftsnIg($6M1y3>6E2G0wJzdZ1(#)|ll0QuC z`~J4{69||Kbu#|June(B@!@G9_PZkCTAs;=#=~u0g=x7&87@wA#b|qEcZ`io7fSd% zhWCS^dFhtdB~4izf7NjXUi)Is4Jc3C?%$X;ZYhAqI_hiSx$@IWtcMoAX@@w=CM42{ zH{kOax-Thq@|-94vmm}>U{5TkC2K8c54cGk>}{Sqgm#E^GN2Z2_B=Ys5hR4QAU|s2 zCWz`Nr70HmHvSw-<2P9<{e-)v9`#Q5yI$w?*p5% zO%r4LOCkq`Y}ZppMzolHbqqUu-D!^BsHy@ZPDpk0SOfj9>zr@%Q zF|If_jb`>dh^XkHn$h(8aKmXzz@XWr`qKOLZa7U@RmBJI$Z9KcU^O*Bz;&L4+3Fa% z3n%;=53d=$JBGwsb}4zR*rC-f6U4$cLf^e;tKQCc`7${#f8H6S_SC!AGnE@&Lsd>Y zd>j8OG0r?=G5yecQk58*X+j;oyqEP?dj=rBq}2X-`b_;c)NgFGrHU-~8{s;Dth{T% zALm``Eg4A+?30pPU@2zxK_r0a!R&G#D72uo)yWdWWiK?qf+x?^7R0_GCUC!@jf(V3 z#4@;B2er|lsrNQ&OJbbNLu$=ws?hJN(o8^$nYCy=HhCTd?oeg4LgQ+*8t?LN_^u0g zZW<+Truk9ksec_=WB*=+l<=tc?W!?2Zp2Wt`sDqIv)AK$Fie{xe!(+ksNGs5j z+}HPy)=}?I5*c#))S{^WMm-%E0z!zuB#{=DM#r#x5F`ph>e`>qHOe2sUK$vr$MAlw z@9|*-6f_{E&3w12Sz>HCfk|oOxl8YkAv$!{EyB8~{+bH_!_>wl0g)P0Pti9)!j@o! zLue%8Rz2BZoMpra6H(sWWOR(}yCR4D1GF)x(?JA6-PgJ4H*S&uvDjKcDNmVHI!1&$ zV!1^-v0Be!<6Fx$LCuUuPmhiP_l-M<@~g7)hI6S%No~>!TCqEZuX!hG4s8;OdF zpUkO_f#2XXHN+MVqeXGv z|IIZ+L}0MI)SpN(F?_q$&@#{0?zAPC#r4FozIg*dt7EJaWh9YrjMn;$4stRpguKz3 zw7BGXS*qjC-1Gb;+gX?(t|HLMyUmMXJg@RsIC=yvwT(c1SKe-Savx4+wlJCZmNnV`v>?=b3)z z|7cyqegN-J=BVk_phXOQC+;u*{Yzn)cE-2dGa+JSf(tE4r4eKQ*8R>Yb>FcVzlY76 zJBtpohSj1^AyKZM;n)N@nT6C)sV&;2{=6=oK1&N~(9c-gvJDJB8NzRaoEW(R?WFElBP zMrvxOuZ(gT992M}E&A#h%eP9IM)O*2&x0H|OqAq2twr_MhYTPZ2(a^Q(UiGbl}0c% zndxVMb4@Fc{yk0v8PF-M2&1K+FGfDZsIzy`YP`uY(|L=@hq3t z^Bl3{-}EQ1qSaOe(gk_f7AKEJzU?c5u}QtwB}!`dmfH6tBloxJ;sHA8cc>G3XxC2ivhq}lm29#cYO zX0Q-19G=MA^R8TMpfJNDMz#u**f%s2kHz#9ZS_&XtfZ~#7LH#j#3o2C`KiqvG>z^a zz+qZ4q5_|wF~)n~WBDVMYthJ4rD$v7--ua43$$T`rrw$mD|DizzG!`l{%LuhVtF^A z-}0j=0l}oCu1kxgjd!01BqlVPiw#S2PHbNKTv9rX8`mO- z1QC(?vZj)j{h4=A3`_b(f}62n4rqyHbG%}x`W(v?}%P^%T8O=PxmvSM0NqGTz4<#weQ z!Jp$YTX@{$-9dDko$7q@yuqF&$#n2vWsz3vwf6mDT+*ee+=C_n)_9nTamj6%zdk&H z(%mu6jv3WFqJfBX5It}cu9-|$AwZrbae=R0m1bxr3=ISWlPXn^;~CSpxG_PNu6<=Z zc+N!6lN@!qAT*Kr#>rEROrEGDkvD_gx5@c1u3n$8&;&{Pse+kFt?C1jN<2Eoin%6N z+*&auX#;b_!SfCA{%>w$U9R7x5j=aWh$+eNC6z+cBy`$3YyLu{d@6Wt)m98hkiACW zV4r8wLTl?FlE+AGi$mjr^fggrRIBQwLL(^mqY879Hl?O?XzlbKEn4POYnRRI;WZ?q zgY08oz*ViL=Xfk~?fjE)g1a_%hVkH#c5e~}qTG3=>$hqMM+s`d_Ba9m8#nO4?X0(32r%tVW~<5$LQ2*lrrSYe?xM;$Pw4N#uo-trc*W%w(i!Mqr}TRMb7=bi{MF)n zoyrh`6fr!PxfS0lc2$#U-o))NH1NIlK|Zwx&1JcD5e$4UKN>&mR2T?f31U@^`;obz z?GG|sQkfx5;IHLV2EvzUO;peZmWOu?v02ux#Kf@C{0w|A2vOjqA_Z~px3#~_qHQQu zD!{<-@_|bDp^;e{1;oJc$|JT$Zhs_YZD4r$Er{~uvUkVuk@*ddSRv^utj_$g3>xN` zC27I~X$3w5#p`%I39Z&Xp9iTqQlrWd%#NW;CeB-yaPlM5YoL40^KUfrM^a)|e6IN8+mk)<(Dy^4}6ln-^y z?88*qp=x$C?oVRujM9td#}ey(UzR~Idn2_GUT64uS+;U7qOnFRzqaaCV#GdW*PXll zSDB5&#J3u2M4wgd7#Zz4h*^{e+>gdu62g3yU*6zTa-SMpV&wLyiP(8ab*0r`R)XX$=vJ-^w6WXWF?`M�zZ~ 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

U@=7QGM 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 mCGvl^z&vPN(Hk2@=PB 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

U6}mESmt+ZfX33(jv=rMsT`3vkhwaD>h@b_ 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 =@e;le{V;8xQr}fy^T|Y;SU#kE_ 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 z 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�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 literal 0 HcmV?d00001 diff --git a/module3/exo3/stackoverflow.log b/module3/exo3/stackoverflow.log new file mode 100644 index 0000000..51555c8 --- /dev/null +++ b/module3/exo3/stackoverflow.log @@ -0,0 +1,6887 @@ +[1421771203.082701] 1257 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421771203.408254] 454 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421771203.739730] 775 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421771204.056630] 1334 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771204.372224] 83 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771204.688367] 694 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771205.005514] 1577 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771205.321112] 632 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771205.637464] 405 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771205.953472] 1419 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771206.269163] 329 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771206.585098] 868 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771206.901972] 1714 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771207.217863] 1053 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771207.533900] 349 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771207.851148] 1598 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771208.166794] 1412 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771208.482159] 167 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771208.798155] 60 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771209.114480] 1038 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771209.430586] 949 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771209.746729] 279 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771210.062322] 757 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771210.378113] 1355 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771210.694015] 1151 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771211.009670] 237 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771211.324856] 1221 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771211.640544] 1063 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771211.956109] 445 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771212.272504] 1619 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771212.588654] 101 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771212.904351] 203 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771213.220579] 539 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771213.536512] 1316 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771213.852299] 198 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771214.168508] 770 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771214.484760] 753 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771214.800182] 364 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771215.116539] 750 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771215.432649] 137 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771215.749652] 1655 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771216.066885] 1556 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771216.382954] 817 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771216.699206] 1320 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771217.015069] 1094 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771217.331024] 981 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771217.648057] 1839 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771217.963711] 29 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771218.280820] 1572 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771218.596774] 1239 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771218.912647] 506 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771219.228789] 1259 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771219.544462] 1107 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771219.861302] 1306 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771220.176841] 312 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771220.493363] 969 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771220.808824] 12 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421771221.133246] 1491 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421771221.448819] 756 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771221.765499] 1978 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771222.081920] 1761 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771222.397744] 173 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771222.713704] 790 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771223.030836] 1896 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771223.347962] 1764 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771223.664110] 1005 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771223.980289] 607 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771224.296102] 1409 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771224.612661] 839 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771224.928433] 306 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771225.244866] 1020 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771225.560537] 796 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771225.876460] 563 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771226.192721] 1301 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771226.508142] 214 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771226.823902] 821 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771227.140121] 381 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771227.457040] 1515 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771227.773328] 384 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771228.089406] 499 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771228.406762] 1768 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771228.723809] 1776 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771229.040243] 1828 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771229.356147] 333 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771229.672412] 279 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771229.989317] 1800 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771230.305096] 389 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771230.621547] 968 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771230.937681] 501 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771231.253883] 927 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771231.570665] 1503 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771231.887205] 1894 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771232.203996] 1640 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771232.519416] 432 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771232.835518] 1719 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771233.150905] 105 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771233.467274] 1505 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771233.784019] 387 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771234.100745] 1601 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771234.416289] 1302 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771234.731993] 873 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771235.048300] 1571 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771235.364679] 1619 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771235.680545] 1000 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771235.997850] 79 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771236.326237] 1889 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421771236.667307] 1665 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=137 ms +[1421771236.995138] 386 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421771237.313260] 853 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771237.628701] 732 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771237.954983] 1765 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421771238.279186] 993 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421771238.617122] 1816 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421771238.952718] 596 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421771239.269474] 1939 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771239.586101] 1634 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771239.902153] 1452 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771240.219160] 2003 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771240.535085] 756 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771240.851993] 1618 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771241.170717] 1992 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421771241.486586] 174 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771241.802684] 1052 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771242.118398] 622 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771242.434122] 531 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771242.750286] 1446 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771243.067152] 1832 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771243.382955] 182 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771243.700078] 1814 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771244.016639] 1259 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771244.333039] 1040 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771244.650002] 1394 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771244.967096] 1829 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771245.283893] 1933 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771245.599074] 383 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771245.916570] 1630 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771246.232560] 22 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421771246.549208] 394 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771246.866219] 1956 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771247.181706] 62 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771247.498516] 1886 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771247.815497] 1654 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771248.130807] 677 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771248.446289] 627 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771248.762638] 911 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771249.078346] 893 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771249.394342] 1125 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771249.710752] 468 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771250.026868] 246 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771250.342910] 1207 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771250.658533] 549 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771250.974522] 711 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771251.291068] 1310 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771251.607337] 982 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771251.923185] 200 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771252.239613] 1246 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771252.556306] 1150 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771252.872291] 124 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771253.188155] 347 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771253.504270] 191 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771253.821421] 1694 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771254.138419] 1499 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771254.455178] 1649 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771254.771594] 1390 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771255.087384] 571 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771255.403589] 679 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771255.719709] 1339 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771256.035388] 232 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771256.351054] 676 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771256.666956] 1196 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771256.982751] 725 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771257.298581] 301 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771257.615027] 1101 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771257.931908] 1688 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771258.247980] 1398 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771258.565207] 1488 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771258.882055] 1749 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771259.197836] 410 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771259.513619] 195 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771259.829498] 32 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771260.144911] 64 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771260.460604] 345 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771260.776772] 1289 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771261.093373] 1259 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771261.410042] 469 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771261.726077] 386 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771262.042287] 1282 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771262.357944] 305 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771262.673696] 832 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771262.989497] 1171 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771263.305308] 1214 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771263.622589] 1987 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771263.938827] 1048 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771264.254262] 404 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771264.571226] 1137 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771264.887224] 706 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771265.203457] 178 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771265.519368] 730 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771265.835185] 838 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771266.151176] 1477 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771266.467969] 1785 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771266.783936] 1115 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771267.100952] 691 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771267.416696] 734 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771267.732710] 429 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771268.049608] 431 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771268.366294] 1811 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771268.682508] 132 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771268.998450] 53 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771269.314112] 490 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771269.630512] 1084 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771269.946139] 206 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771270.261756] 611 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771270.577502] 1022 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771270.892993] 589 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771271.208435] 588 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771271.524126] 270 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771271.840134] 983 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771272.155437] 404 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771272.471292] 786 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771272.787232] 170 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771273.103437] 993 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771273.419101] 462 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771273.735295] 490 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771274.051199] 603 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771274.367167] 456 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771274.682979] 684 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771275.000502] 1911 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771275.317407] 1838 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771275.634107] 1714 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771275.950304] 1338 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771276.266824] 733 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771276.584503] 1857 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771276.901126] 1474 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771277.217243] 715 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771277.534419] 1927 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771277.850850] 163 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771278.166602] 658 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771278.483119] 1461 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771278.799290] 799 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771279.114724] 269 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771279.431288] 508 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771279.747410] 160 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771280.064159] 1583 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771280.381494] 1966 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771280.697890] 1265 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771281.014212] 550 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771281.331329] 1981 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771281.647843] 1128 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771281.963610] 370 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771282.279277] 636 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771282.596633] 1956 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771282.912891] 802 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771283.229027] 547 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771283.545479] 1056 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771283.862629] 1705 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771284.178674] 286 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771284.494578] 743 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771284.810852] 1064 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771285.126668] 588 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771285.444434] 432 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771285.760539] 55 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771286.077949] 1228 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771286.394755] 1346 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771286.711044] 1350 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771287.028045] 1906 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771287.344718] 1633 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771287.660552] 272 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771287.976508] 1007 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771288.293404] 1580 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771288.610293] 255 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771288.927877] 1559 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771289.243766] 130 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771289.559406] 63 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771289.876273] 1755 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771290.193146] 950 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771290.509432] 1002 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771290.825578] 451 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771291.142824] 1770 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771291.458406] 219 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771291.774924] 1604 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771292.090866] 1234 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771292.410045] 1935 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771292.726302] 277 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771293.042228] 933 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771293.358928] 376 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771293.674650] 1300 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771293.990915] 1435 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771294.307998] 1900 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771294.623515] 139 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771294.940829] 1779 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771295.257474] 1663 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771295.573965] 1271 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771295.889879] 1379 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771296.205489] 392 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771296.521451] 765 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771296.837119] 208 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771297.152755] 1150 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771297.468756] 766 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771297.784471] 1137 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771298.102308] 454 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771298.419000] 1910 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771298.734768] 254 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771299.050466] 431 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771299.366196] 697 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771299.682561] 1248 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771299.999178] 1266 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771300.315336] 402 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771300.631319] 77 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771300.947562] 821 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771301.264990] 1840 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771301.581216] 180 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771301.897490] 956 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771302.212978] 186 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771302.528903] 779 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771302.845803] 1957 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771303.161712] 321 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771303.477776] 625 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771303.794574] 1407 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771304.110849] 1049 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771304.426765] 476 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771304.742869] 326 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771305.059418] 1124 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771305.375725] 1440 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771305.691879] 1035 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771306.007989] 802 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771306.324630] 1799 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771306.640479] 1092 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771306.956477] 614 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771307.283900] 1511 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771307.599715] 407 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771307.915612] 11 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421771308.231349] 671 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771308.547587] 540 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771308.863610] 917 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771309.180910] 1618 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771309.497014] 802 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771309.814067] 1980 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771310.130420] 692 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771310.446416] 1338 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771310.762853] 1030 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771311.079085] 912 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771311.394905] 479 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771311.711091] 39 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771312.029474] 1483 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421771312.348424] 685 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421771312.672110] 495 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421771313.017035] 1782 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=140 ms +[1421771313.346689] 1386 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421771313.707874] 1692 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=157 ms +[1421771314.024438] 584 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771314.340568] 640 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771314.656447] 661 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771314.972010] 264 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771315.288830] 1723 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771315.604269] 345 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771315.919755] 1245 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771316.236444] 1676 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771316.553586] 1852 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771316.869165] 528 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771317.185569] 1673 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771317.502130] 1608 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771317.818581] 1601 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771318.134938] 379 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771318.450464] 179 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771318.766477] 1409 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771319.082763] 1830 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771319.398409] 273 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771319.714004] 367 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771320.031050] 1762 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771320.346861] 98 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771320.664036] 1897 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771320.980321] 865 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771321.296188] 93 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771321.612267] 421 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771321.928108] 1259 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771322.244243] 107 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771322.559822] 704 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771322.875434] 143 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771323.190747] 22 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421771323.507710] 1721 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771323.823295] 260 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771324.138957] 1479 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771324.454859] 1110 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771324.770577] 302 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771325.087236] 1888 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771325.403089] 969 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771325.719232] 696 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771326.036334] 1776 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771326.352269] 1322 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771326.668414] 372 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771326.984469] 626 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771327.300308] 285 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771327.616437] 951 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771327.932702] 1348 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771328.248462] 67 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771328.564344] 266 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771328.881102] 1495 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771329.199694] 1989 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771329.516523] 1897 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771329.832793] 952 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771330.148321] 1160 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771330.463677] 894 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771330.779037] 764 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771331.094708] 496 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771331.412074] 1956 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771331.727705] 563 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771332.043557] 1049 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771332.360258] 1837 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771332.676647] 163 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771332.992597] 242 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771333.308425] 1374 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771333.623986] 541 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771333.940370] 1718 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771334.255838] 16 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421771334.572849] 1654 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771334.888547] 917 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771335.205151] 1758 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771335.520731] 151 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771335.837390] 1822 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771336.153512] 351 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771336.469602] 1188 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771336.786859] 1719 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771337.103222] 733 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771337.419361] 726 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771337.735249] 1011 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771338.050648] 508 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771338.367201] 1563 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771338.683036] 924 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771339.000155] 1908 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771339.316037] 127 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771339.632018] 128 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771339.947884] 464 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771340.263493] 433 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771340.579536] 750 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771340.896426] 1992 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771341.213357] 1933 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771341.529043] 439 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771341.845853] 1909 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771342.162843] 1996 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771342.479160] 1797 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771342.796295] 1862 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771343.112278] 592 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771343.428917] 1918 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771343.746118] 1712 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771344.061690] 154 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771344.377547] 960 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771344.693565] 858 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771345.010194] 1885 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771345.326701] 293 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771345.642291] 295 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771345.957932] 68 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771346.275155] 1570 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771346.591546] 1929 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771346.908087] 1812 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771347.223494] 532 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771347.538728] 205 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771347.854654] 833 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771348.171320] 1666 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771348.486578] 327 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771348.802416] 838 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771349.117856] 790 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771349.437323] 1803 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771349.753040] 391 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771350.069863] 644 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771350.385701] 952 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771350.701183] 292 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771351.016788] 1459 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771351.332812] 910 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771351.649893] 1490 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771351.967028] 1859 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771352.283848] 1551 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771352.600797] 1770 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771352.917197] 1179 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771353.232970] 1424 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771353.549275] 957 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771353.864884] 984 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771354.180081] 872 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771354.495790] 408 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771354.812951] 1933 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771355.128695] 1476 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771355.444818] 1237 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771355.761269] 938 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771356.077637] 1384 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771356.393885] 840 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771356.710129] 1004 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771357.027388] 1674 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771357.343883] 1300 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771357.659402] 396 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771357.975368] 396 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771358.291282] 397 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771358.627105] 1042 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421771358.942956] 1131 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771359.258989] 93 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771359.575393] 1406 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771359.892063] 1641 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771360.207302] 441 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771360.523288] 1462 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771360.839356] 825 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771361.156172] 1310 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771361.472267] 1381 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771361.788789] 1417 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771362.104563] 259 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771362.421770] 1591 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771362.742594] 510 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421771363.058930] 1457 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771363.375020] 1208 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771363.690283] 561 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771364.005802] 783 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771364.323569] 1386 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771364.639642] 97 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771364.955551] 1073 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771365.271607] 1188 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771365.588664] 1760 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771365.904578] 1361 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771366.220425] 121 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771366.537165] 1999 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771366.853268] 895 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771367.169422] 745 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771367.485661] 1265 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771367.801209] 1171 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771368.118156] 1525 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771368.433963] 908 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771368.749164] 283 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771369.064807] 1392 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771369.380939] 1065 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771369.696560] 456 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771370.014448] 652 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771370.330309] 469 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771370.646215] 469 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771370.961950] 1266 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771371.277677] 826 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771371.593503] 806 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771371.910859] 1907 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771372.226319] 214 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771372.543561] 1683 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771372.859742] 788 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771373.175500] 99 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771373.490963] 123 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771373.806844] 1082 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771374.122614] 58 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771374.439127] 1788 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771374.754934] 282 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771375.070782] 1153 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771375.386362] 104 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771375.702089] 595 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771376.017900] 133 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771376.333714] 769 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771376.649361] 167 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771376.966827] 483 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771377.283664] 1963 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771377.599572] 382 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771377.917876] 497 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771378.234925] 1848 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771378.551063] 831 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771378.867405] 1285 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771379.184003] 1598 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771379.500718] 1972 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771379.816814] 607 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771380.133086] 1030 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771380.448391] 279 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771380.766783] 919 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771381.082521] 1462 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771381.399534] 1741 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771381.716600] 1608 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771382.033736] 1788 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771382.350650] 1871 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771382.667527] 1893 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771382.983034] 1168 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771383.298774] 307 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771383.614304] 462 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771383.931356] 1700 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771384.248360] 1496 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771384.563857] 747 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771384.879422] 733 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771385.196039] 1716 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771385.511978] 1219 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771385.827842] 397 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771386.144612] 1614 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771386.461056] 1662 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771386.777390] 1679 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771387.093360] 496 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771387.409437] 1096 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771387.725134] 904 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771388.040699] 770 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771388.356169] 484 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771388.672190] 1047 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771388.988714] 1292 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771389.304508] 1455 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771389.620706] 1276 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771389.937333] 1733 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771390.252880] 375 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771390.568593] 1288 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771390.885521] 1994 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771391.201964] 1960 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771391.517417] 279 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771391.833977] 1663 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771392.149329] 766 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771392.466441] 1893 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771392.781957] 62 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771393.097609] 944 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771393.413817] 1198 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771393.730008] 1145 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771394.046765] 819 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771394.376143] 1746 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421771394.709382] 1544 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421771395.034371] 1786 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=121 ms +[1421771395.366341] 686 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421771395.702129] 1048 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421771396.043757] 902 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=137 ms +[1421771396.377781] 1698 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421771396.735434] 1743 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=152 ms +[1421771397.075725] 70 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=136 ms +[1421771397.412183] 562 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421771397.749425] 1326 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421771398.079605] 80 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421771398.411825] 1789 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421771398.728428] 1451 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771399.046535] 1355 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421771399.370864] 1782 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421771399.700951] 1467 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421771400.030067] 59 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421771400.361555] 169 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421771400.694880] 401 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421771401.035611] 1291 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=136 ms +[1421771401.389935] 144 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=150 ms +[1421771401.718672] 888 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421771402.055433] 149 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421771402.372373] 1989 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771402.688304] 615 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771403.003840] 1339 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771403.319353] 474 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771403.637619] 1299 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421771403.963830] 700 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=121 ms +[1421771404.279845] 245 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771404.596918] 1871 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771404.913627] 1532 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771405.230974] 1645 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771405.547975] 1552 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771405.863881] 432 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771406.179889] 1460 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771406.495459] 83 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771406.811850] 1479 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771407.127686] 320 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771407.443642] 1253 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771407.760015] 1263 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771408.075746] 1418 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771408.392794] 1737 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771408.708903] 1309 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771409.024597] 279 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771409.341153] 1011 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771409.657311] 612 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771409.973491] 1093 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771410.289226] 974 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771410.604912] 493 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771410.921590] 1550 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771411.237344] 961 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771411.553926] 1881 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771411.869366] 41 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771412.184760] 865 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771412.500351] 1401 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771412.815690] 59 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771413.130920] 449 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771413.446647] 712 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771413.763164] 979 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771414.079501] 1266 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771414.395591] 509 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771414.711123] 47 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771415.027062] 82 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771415.344231] 1795 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771415.660066] 1184 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771415.977262] 1626 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771416.292950] 437 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771416.609844] 1704 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771416.927613] 1911 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771417.244557] 1582 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771417.560636] 797 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771417.876301] 1156 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771418.192623] 1781 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771418.508323] 1390 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771418.823929] 1310 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771419.139540] 354 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771419.455666] 989 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771419.772771] 1512 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771420.089284] 692 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771420.405358] 720 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771420.722144] 1777 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771421.037481] 58 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771421.353439] 83 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771421.669731] 975 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771421.985919] 748 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771422.303117] 1605 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771422.619129] 413 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771422.934955] 1450 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771423.251219] 1419 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771423.568175] 1873 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771423.884210] 257 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771424.200509] 662 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771424.516844] 623 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771424.833196] 1126 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771425.149112] 526 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771425.465645] 1434 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771425.781936] 1404 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771426.098056] 761 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771426.413553] 591 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771426.729239] 822 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771427.045013] 708 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771427.361411] 1072 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771427.677752] 587 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771427.993779] 262 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771428.310089] 906 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771428.627046] 1815 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771428.942920] 97 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771429.259060] 722 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771429.575117] 1310 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771429.891311] 1177 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771430.207398] 1318 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771430.523460] 429 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771430.839712] 1313 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771431.174255] 673 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421771431.491340] 1807 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771431.807529] 918 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771432.123430] 301 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771432.439424] 396 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771432.754990] 886 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771433.070784] 1053 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771433.386594] 224 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771433.703503] 1695 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771434.019719] 390 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771434.336015] 1287 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771434.651710] 62 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771434.967925] 571 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771435.284142] 1084 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771435.599955] 790 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771435.915729] 933 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771436.231819] 1285 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771436.547624] 386 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771436.863295] 671 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771437.178818] 1250 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771437.495821] 1997 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771437.811792] 1210 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771438.127771] 1443 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771438.443873] 1149 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771438.760337] 1102 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771439.076236] 883 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771439.392238] 864 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771439.708656] 1685 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771440.024823] 1351 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771440.341360] 1729 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771440.657131] 746 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771440.977154] 1210 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421771441.293171] 912 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771441.609365] 757 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771441.925013] 1174 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771442.240768] 972 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771442.556670] 287 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771442.872366] 1326 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771443.188102] 1373 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771443.503272] 149 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771443.818884] 1149 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771444.134387] 304 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771444.450117] 1349 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771444.765976] 155 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771445.082479] 1723 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771445.399494] 1833 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771445.715174] 394 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771446.032091] 1619 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771446.347892] 766 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771446.663350] 186 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771446.979435] 1397 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771447.295932] 1746 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771447.612237] 957 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771447.929118] 1949 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771448.245979] 1717 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771448.562288] 233 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771448.878916] 113 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771449.194667] 24 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771449.511562] 1579 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771449.827544] 943 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771450.156620] 484 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421771450.473652] 2004 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771450.790930] 1972 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771451.106794] 305 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771451.424168] 1981 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771451.740309] 1180 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771452.056288] 1095 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771452.373325] 1899 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771452.689114] 451 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771453.004761] 715 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771453.320045] 13 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421771453.635715] 910 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771453.952939] 1481 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771454.269048] 256 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771454.584996] 104 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771454.900757] 866 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771455.216216] 414 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771455.531831] 814 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771455.848509] 1604 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771456.164498] 526 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771456.481091] 701 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771456.796662] 402 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771457.112909] 614 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771457.429026] 665 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771457.748533] 1549 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421771458.070825] 1279 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421771458.387754] 636 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771458.704609] 1875 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771459.021509] 1673 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771459.337210] 1215 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771459.652689] 61 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771459.970469] 521 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771460.285936] 391 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771460.602225] 964 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771460.920537] 1669 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771461.236500] 275 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771461.552775] 1169 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771461.868692] 467 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771462.185914] 1858 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771462.502161] 1232 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771462.818362] 1038 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771463.134541] 1181 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771463.451919] 1722 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771463.767549] 278 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771464.084616] 1969 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771464.400040] 98 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771464.716842] 1503 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771465.032640] 1279 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771465.348117] 481 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771465.663663] 227 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771465.979438] 67 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771466.295154] 699 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771466.612614] 1868 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771466.929633] 1841 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771467.245941] 713 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771467.562311] 440 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771467.878307] 59 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771468.193778] 194 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771478.712479] 277 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771479.028454] 480 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771479.379219] 1564 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=146 ms +[1421771479.695053] 408 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771480.011897] 1950 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771480.328906] 1620 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771480.645405] 1867 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771480.960782] 831 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771481.276024] 450 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771481.592898] 1848 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771481.908463] 37 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771482.225307] 1705 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771482.541354] 550 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771482.857172] 1123 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771483.172659] 773 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771483.488338] 1295 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771483.804709] 797 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771484.120980] 1344 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771484.437277] 1205 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771484.753817] 1850 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771485.070661] 1833 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771485.387396] 1503 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771485.703873] 1322 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771486.020234] 21 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421771486.336088] 642 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771486.652100] 516 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771486.969476] 1900 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771487.285029] 81 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771487.601147] 802 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771487.917976] 1969 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771488.233209] 98 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771488.550114] 1528 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771488.865947] 1319 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771489.183173] 1621 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771489.499143] 1017 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771489.814904] 968 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771490.130951] 677 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771490.447626] 736 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771490.764156] 1138 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771491.080872] 1545 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771491.396846] 756 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771491.713764] 1774 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771492.028992] 350 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771492.344732] 1041 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771492.660261] 855 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771492.975683] 167 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771493.292179] 1977 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771493.608151] 319 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771493.923623] 174 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771494.239364] 1033 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771494.554788] 860 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771494.870384] 1389 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771495.185934] 1244 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771495.502497] 1562 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771495.818250] 202 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771496.133893] 300 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771496.449536] 133 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771496.765978] 970 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771497.081627] 397 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771497.397497] 550 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771497.713673] 1238 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771498.029697] 463 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771498.346652] 1891 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771498.662659] 209 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771498.980030] 1754 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771499.295872] 1154 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771499.612584] 1735 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771499.928485] 875 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771500.244571] 1239 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771500.560662] 1284 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771500.877764] 1708 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771501.210535] 752 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421771501.526163] 168 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771501.841832] 869 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771502.157517] 912 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771502.472940] 431 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771502.789679] 1915 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771503.106446] 1561 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771503.423554] 1969 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771503.739382] 821 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771504.055546] 344 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771504.371900] 1078 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771504.687650] 288 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771505.003702] 976 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771505.319928] 524 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771505.635979] 901 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771505.951778] 678 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771506.269155] 1510 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771506.584655] 868 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771506.901380] 1594 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771507.217606] 1298 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771507.533847] 1404 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771507.850783] 1498 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771508.166682] 1066 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771508.482183] 19 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421771508.798772] 1995 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771509.121754] 1847 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421771509.437536] 624 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771509.754732] 1934 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771510.071628] 1572 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771510.387366] 44 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771510.703028] 818 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771511.018588] 1016 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771511.335290] 1703 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771511.651124] 747 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771511.966872] 320 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771512.282275] 58 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771512.598940] 1707 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771512.914790] 671 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771513.230699] 1209 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771513.546472] 125 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771513.862262] 1230 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771514.177941] 13 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421771514.494200] 1349 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771514.810870] 1858 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771515.127078] 878 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771515.442800] 1029 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771515.759328] 1680 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771516.075349] 985 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771516.392445] 1954 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771516.708187] 205 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771517.023743] 835 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771517.339301] 793 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771517.654855] 921 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771517.970552] 252 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771518.286429] 998 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771518.603444] 1757 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771518.919715] 1292 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771519.236747] 1789 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771519.554771] 1080 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771519.870812] 1104 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771520.186690] 31 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771520.503922] 1505 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771520.819875] 292 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771521.135891] 126 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771521.453433] 1842 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771521.769260] 256 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771522.084858] 597 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771522.400449] 133 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771522.717242] 1631 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771523.032948] 899 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771523.348628] 71 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771523.665493] 1771 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771523.981256] 177 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771524.297952] 1804 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771524.614469] 1732 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771524.930372] 38 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771525.246355] 245 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771525.563145] 1821 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771525.878971] 422 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771526.194809] 1391 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771526.510806] 450 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771526.827548] 1926 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771527.142971] 455 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771527.459849] 1652 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771527.775847] 508 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771528.091942] 838 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771528.409610] 1983 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771528.725868] 1257 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771529.040931] 74 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771529.356786] 1073 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771529.673611] 1991 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771529.989413] 841 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771530.305436] 1379 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771530.621227] 1061 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771530.938236] 1335 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771531.254003] 659 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771531.569806] 660 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771531.886752] 1717 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771532.202958] 1551 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771532.518627] 869 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771532.835570] 1967 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771533.151486] 34 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771533.467846] 559 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771533.783690] 12 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421771534.099536] 486 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771534.416229] 1802 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771534.732513] 1459 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771535.049115] 1666 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771535.365186] 1233 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771535.680638] 45 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771535.996808] 1609 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771536.313173] 1478 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771536.628758] 1420 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771536.944322] 211 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771537.259782] 422 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771537.575405] 334 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771537.891498] 619 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771538.208278] 1963 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771538.524957] 1948 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771538.841871] 1713 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771539.157002] 344 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771539.473646] 1510 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771539.790524] 1121 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771540.107501] 1986 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771540.423316] 1474 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771540.739243] 426 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771541.055418] 286 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771541.370783] 42 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771541.687717] 1502 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771542.003961] 1305 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771542.319537] 41 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771542.636877] 1685 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771542.953117] 690 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771543.269094] 697 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771543.585351] 1270 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771543.901678] 816 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771544.217751] 1027 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771544.533206] 412 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771544.848653] 535 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771545.164452] 186 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771545.480070] 593 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771545.795918] 1236 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771546.113242] 1627 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771546.430399] 1921 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771546.746019] 244 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771547.061980] 1443 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771547.378339] 1381 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771547.695358] 1956 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771548.011729] 1056 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771548.328837] 1722 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771548.644909] 1305 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771548.961151] 282 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771549.276975] 271 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771549.593100] 1223 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771549.908956] 180 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771550.225165] 816 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771550.542230] 1830 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771550.858213] 1408 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771551.173621] 1408 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771551.489537] 814 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771551.805511] 760 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771552.121422] 1022 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771552.437372] 749 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771552.754282] 1635 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771553.071358] 1863 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771553.387426] 1170 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771553.704260] 1705 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771554.020438] 320 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771554.336686] 396 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771554.652941] 1035 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771554.968922] 549 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771555.284942] 194 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771555.601178] 312 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771555.916935] 156 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771556.232712] 877 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771556.548906] 573 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771556.865068] 1194 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771557.180393] 285 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771557.496361] 1338 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771557.811866] 53 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771558.127747] 1149 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771558.443846] 769 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771558.760875] 1664 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771559.076883] 941 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771559.393679] 1817 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771559.709707] 65 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771560.025449] 1054 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771560.341483] 565 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771560.657344] 799 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771560.973593] 1451 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771561.289666] 626 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771561.606972] 1817 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771561.923263] 999 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771562.239070] 1038 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771562.555035] 949 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771562.871098] 1460 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771563.187912] 1723 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771563.503571] 307 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771563.820676] 1578 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771564.136088] 274 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771564.451994] 1150 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771564.768034] 1215 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771565.083955] 690 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771565.400437] 1566 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771565.716865] 1908 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771566.032712] 1432 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771566.349486] 1928 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771566.665603] 1413 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771566.981314] 487 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771567.296993] 216 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771567.612882] 1394 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771567.929392] 1449 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771568.245619] 1302 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771568.561417] 730 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771568.877317] 82 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771569.192788] 673 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771569.508440] 1257 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771569.824497] 1086 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771570.140133] 723 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771570.457215] 1612 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771570.772592] 526 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771571.088256] 612 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771571.403865] 1428 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771571.719380] 829 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771572.034922] 448 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771572.350525] 397 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771572.666115] 367 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771572.982884] 1785 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771573.298281] 324 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771573.614064] 21 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421771573.929522] 122 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771574.245533] 1143 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771574.562995] 1490 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771574.878712] 374 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771575.194086] 223 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771575.513961] 1489 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421771575.829340] 822 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771576.145160] 466 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771576.461306] 856 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771576.777186] 416 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771577.093230] 716 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771577.409653] 1421 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771577.725638] 359 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771578.041799] 980 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771578.357869] 1358 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771578.673661] 582 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771578.989694] 338 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771579.306981] 2004 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771579.623972] 1552 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771579.939737] 104 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771580.255654] 902 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771580.570703] 373 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771580.886880] 1612 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771581.202524] 1054 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771581.518054] 107 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771581.834794] 1909 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771582.151454] 1874 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771582.468101] 1508 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771582.783445] 529 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771583.098728] 317 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771583.415051] 1881 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771583.730388] 1255 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771584.046363] 132 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771584.363124] 1620 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771584.678847] 557 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771584.994091] 26 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771585.309644] 416 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771585.625012] 514 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771585.941692] 1490 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771586.257280] 259 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771586.572906] 517 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771586.888601] 813 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771587.204117] 1134 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771587.520751] 382 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771587.836534] 1069 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771588.153347] 1778 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771588.470036] 1771 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771588.786377] 1327 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771589.103586] 1681 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771589.419163] 347 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771589.736039] 891 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771590.053641] 1674 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771590.370565] 1616 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771590.686895] 1083 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771591.003629] 1643 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771591.319927] 807 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771591.636123] 1321 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771591.952529] 1035 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771592.268424] 541 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771592.584593] 1308 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771592.900844] 763 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771593.217252] 630 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771593.533301] 923 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771593.848998] 390 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771594.165447] 1102 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771594.481581] 341 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771594.797817] 151 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771595.114354] 322 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771595.431274] 2006 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771595.747118] 640 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771596.063803] 1834 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771596.379371] 749 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771596.695726] 1144 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771597.011542] 611 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771597.327478] 377 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771597.643810] 815 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771597.959413] 115 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771598.275543] 1442 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771598.591531] 1016 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771598.908495] 2000 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771599.225721] 1733 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771599.541786] 839 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771599.857873] 146 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771600.173866] 702 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771600.490229] 1337 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771600.806080] 223 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771601.123654] 1894 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771601.439730] 195 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771601.756766] 1954 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771602.073409] 1365 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771602.390172] 1930 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771602.705959] 207 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771603.022267] 322 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771603.338187] 507 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771603.654340] 711 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771603.971926] 1805 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771604.288306] 1277 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771604.604594] 693 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771604.922082] 1828 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771605.238818] 1706 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771605.563511] 1636 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421771605.887430] 712 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421771606.203816] 976 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771606.520382] 567 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771606.836518] 54 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771607.153500] 616 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771607.470027] 611 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771607.786795] 1533 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771608.103562] 1537 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771608.431365] 819 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771608.748341] 1670 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771609.065345] 1482 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771609.381960] 1895 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771609.698033] 890 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771610.013827] 689 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771610.329886] 1097 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771610.646152] 1009 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771610.962816] 1891 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771611.279030] 998 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771611.594985] 230 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771611.911831] 1996 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771612.228457] 1603 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771612.545883] 1732 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771612.861634] 35 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771613.178428] 1649 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771613.494458] 848 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771613.810683] 1279 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771614.126786] 1020 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771614.443290] 1203 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771614.759328] 1235 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771615.075089] 353 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771615.391223] 613 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771615.708022] 1570 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771616.023833] 270 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771616.340323] 1397 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771616.657074] 1077 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771616.973218] 300 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771617.289842] 937 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771617.605785] 385 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771617.922973] 1900 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771618.238818] 282 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771618.554499] 251 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771618.871218] 1953 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771619.187846] 1919 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771619.504715] 1597 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771619.821111] 1288 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771620.136992] 1401 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771620.452908] 1363 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771620.768903] 1389 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771621.084811] 874 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771621.400640] 1172 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771621.716506] 1318 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771622.032625] 119 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771622.348410] 219 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771622.664329] 543 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771622.980425] 232 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771623.296540] 1290 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771623.612906] 1357 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771623.929095] 590 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771624.245352] 172 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771624.561720] 727 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771624.878773] 1889 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771625.194404] 873 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771625.512509] 306 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771625.828843] 1360 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771626.145526] 1851 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771626.460797] 751 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771626.776749] 233 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771627.092518] 957 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771627.408585] 1115 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771627.724557] 443 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771628.040387] 241 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771628.356129] 694 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771628.672195] 310 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771628.988911] 1730 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771629.305935] 1581 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771629.621878] 633 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771629.937592] 561 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771630.253490] 89 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771630.569415] 1114 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771630.885869] 1811 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771631.201509] 622 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771631.518249] 1656 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771631.833828] 480 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771632.149323] 528 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771632.465454] 506 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771632.782350] 1708 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771633.099474] 1965 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771633.415802] 766 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771633.731664] 502 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771634.047355] 966 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771634.363308] 1110 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771634.679323] 491 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771634.995928] 1421 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771635.312825] 1571 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771635.628927] 952 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771635.945720] 1373 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771636.262280] 1438 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771636.578009] 779 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771636.893905] 912 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771637.209447] 567 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771637.525574] 1431 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771637.841782] 901 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771638.157259] 284 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771638.474232] 2005 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771638.791241] 1906 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771639.108849] 1696 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771639.425045] 1184 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771639.741467] 1393 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771640.056868] 62 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771640.372944] 1260 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771640.690167] 1591 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771641.005967] 58 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771641.321859] 325 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771641.638287] 1346 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771641.953888] 53 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771642.270562] 1591 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771642.586624] 1154 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771642.902363] 1226 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771643.218384] 1454 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771643.534961] 1433 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771643.850864] 197 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771644.166682] 1065 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771644.483030] 1527 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771644.798370] 167 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771645.114425] 1453 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771645.430171] 694 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771645.746152] 731 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771646.062195] 1356 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771646.378352] 454 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771646.694250] 435 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771647.009987] 1022 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771647.326828] 1601 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771647.642950] 764 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771647.959651] 1750 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771648.275223] 983 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771648.591640] 1673 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771648.907336] 564 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771649.224245] 1771 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771649.540288] 521 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771649.855834] 851 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771650.171409] 707 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771650.487215] 859 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771650.803202] 536 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771651.119923] 1615 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771651.435804] 990 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771651.751543] 574 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771652.067415] 1335 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771652.383313] 659 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771652.700245] 1919 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771653.016328] 1192 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771653.332064] 118 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771653.647889] 293 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771653.964188] 1346 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771654.280432] 1365 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771654.596762] 1175 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771654.912877] 1165 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771655.228974] 1063 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771655.545584] 1831 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771655.861486] 183 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771656.176907] 622 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771656.492347] 25 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771656.808355] 1020 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771657.124456] 401 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771657.440117] 605 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771657.756175] 850 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771658.072072] 1403 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771658.388464] 1151 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771658.704178] 153 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771659.020875] 2007 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771659.336523] 1237 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771659.652217] 1291 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771659.967902] 813 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771660.284152] 992 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771660.601697] 1615 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771660.918771] 1929 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771661.234503] 84 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771661.550830] 1168 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771661.866650] 721 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771662.182240] 326 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771662.497852] 1021 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771662.814261] 1427 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771663.129969] 865 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771663.446252] 439 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771663.762458] 702 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771664.078420] 864 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771664.394413] 881 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771664.711746] 1492 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771665.027400] 216 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771665.344210] 1872 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771665.660554] 1273 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771665.976515] 1109 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771666.293675] 1829 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771666.609198] 948 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771666.925912] 1543 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771667.241348] 382 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771667.557462] 1051 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771667.873409] 1039 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771668.188938] 1196 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771668.505350] 1747 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771668.821355] 489 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771669.137824] 1891 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771669.453336] 752 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771669.770156] 1556 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771670.087404] 1913 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771670.403065] 1467 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771670.719385] 1217 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771671.035798] 353 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771671.352130] 1567 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771671.668061] 587 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771671.983566] 1273 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771672.299743] 1372 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771672.616105] 1767 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771672.931951] 207 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771673.248222] 928 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771673.563689] 994 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771673.879031] 170 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771674.194761] 292 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771674.510444] 632 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771674.826108] 773 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771675.141614] 1042 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771675.457682] 781 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771675.773816] 749 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771676.089403] 958 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771676.404879] 284 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771676.721918] 1844 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771677.037960] 297 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771677.355537] 1880 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771677.671237] 765 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771677.987131] 1142 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771678.302931] 87 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771678.619734] 1957 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771678.936271] 1586 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771679.252815] 1881 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771679.568324] 1106 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771679.884252] 1231 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771680.199778] 132 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771680.516430] 1042 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771680.832947] 985 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771681.149029] 1080 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771681.464876] 947 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771681.781719] 1864 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771682.098793] 873 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771682.421331] 769 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421771682.760122] 1577 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=135 ms +[1421771683.087648] 666 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421771683.425246] 1947 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421771683.741182] 572 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771684.056788] 305 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771684.372580] 712 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771684.689009] 330 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771685.015919] 1584 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421771685.342597] 61 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421771685.671814] 213 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421771686.011057] 1148 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=135 ms +[1421771686.350061] 1170 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421771686.684866] 951 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421771687.018517] 309 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421771687.334378] 153 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771687.650290] 832 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771687.967031] 1486 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771688.282788] 640 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771688.598664] 485 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771688.920436] 1979 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421771689.251089] 1651 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421771689.576202] 626 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421771689.903024] 894 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421771690.218492] 70 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771690.535699] 1934 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771690.862654] 1628 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421771691.185793] 1204 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421771691.511254] 1195 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=121 ms +[1421771691.844401] 973 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421771692.202541] 1571 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=154 ms +[1421771692.563369] 1962 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=156 ms +[1421771692.879015] 13 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421771693.195923] 1829 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771693.512268] 365 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771693.832798] 1254 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421771694.159336] 1454 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421771694.490257] 91 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421771694.826167] 885 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421771695.157603] 223 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421771695.474599] 1887 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771695.790657] 74 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771696.106574] 1198 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771696.426128] 1460 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421771696.751376] 742 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=121 ms +[1421771697.075895] 740 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421771697.409478] 1039 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421771697.772070] 1904 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=158 ms +[1421771698.098938] 307 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421771698.434647] 416 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421771698.762053] 587 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421771699.111628] 1717 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=145 ms +[1421771699.463378] 1553 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=147 ms +[1421771699.801521] 492 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421771700.117551] 1271 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771700.437368] 1653 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421771700.757833] 531 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421771701.073921] 377 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771701.389734] 1408 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771701.706060] 1240 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771702.022924] 1732 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771702.338955] 1254 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771702.655167] 828 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771702.970821] 1171 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771703.286463] 262 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771703.602305] 895 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771703.917709] 730 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771704.233310] 1177 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771704.549544] 1444 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771704.865650] 1353 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771705.181413] 84 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771705.498088] 1849 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771705.814636] 833 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771706.131122] 1773 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771706.447065] 1312 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771706.762834] 20 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421771707.078533] 949 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771707.394601] 521 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771707.710086] 77 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771708.026666] 1778 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771708.343277] 907 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771708.658981] 186 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771708.974622] 220 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771709.291517] 1955 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771709.607365] 551 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771709.923477] 891 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771710.239755] 1111 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771710.555773] 89 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771710.871442] 667 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771711.187172] 876 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771711.503083] 410 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771711.820150] 1854 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771712.135660] 331 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771712.452567] 1713 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771712.769042] 1839 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771713.084280] 295 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771713.401115] 1659 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771713.717213] 1348 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771714.034049] 1805 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771714.350110] 721 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771714.667193] 1694 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771714.983890] 1731 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771715.300949] 1867 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771715.616834] 680 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771715.932542] 113 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771716.248154] 94 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771716.563471] 220 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771716.878557] 613 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771717.195434] 1729 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771717.510549] 392 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771717.826147] 270 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771718.142607] 1893 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771718.458346] 811 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771718.774601] 809 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771719.090028] 443 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771719.405259] 63 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771719.720814] 151 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771720.036306] 731 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771720.352520] 464 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771720.669370] 1740 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771720.986035] 1565 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771721.301821] 824 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771721.617266] 715 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771721.934022] 1482 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771722.249718] 129 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771722.565152] 21 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421771722.881412] 775 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771723.196996] 732 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771723.512627] 50 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771723.828625] 329 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771724.144625] 343 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771724.460450] 262 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771724.776387] 276 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771725.092665] 1442 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771725.409092] 1491 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771725.724808] 459 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771726.040128] 347 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771726.355798] 1218 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771726.672857] 1656 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771726.989680] 1626 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771727.306342] 1979 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771727.622800] 1689 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771727.939087] 1414 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771728.255647] 1362 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771728.571637] 148 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771728.887961] 910 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771729.203974] 478 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771729.519962] 1077 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771729.835809] 1207 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771730.152268] 1654 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771730.467996] 1173 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771730.784965] 1503 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771731.101108] 102 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771731.416921] 403 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771731.732761] 686 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771732.048148] 13 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421771732.363675] 317 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771732.679268] 1428 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771732.994867] 634 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771733.311260] 1701 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771733.626689] 940 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771733.943327] 1901 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771734.259301] 1126 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771734.576060] 2000 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771734.891911] 32 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771735.208137] 1410 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771735.524936] 1848 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771735.842038] 1976 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771736.157841] 786 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771736.473223] 721 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771736.788551] 714 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771737.105331] 1916 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771737.421884] 337 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771737.741366] 445 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421771738.080009] 1681 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421771738.409187] 782 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421771738.740829] 813 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421771739.093957] 1811 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=149 ms +[1421771739.426900] 1139 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421771739.764233] 1085 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421771740.124015] 1505 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=155 ms +[1421771740.459263] 429 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421771740.776214] 1617 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771741.092112] 270 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771741.411864] 1424 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421771741.734760] 942 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421771742.050085] 381 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771742.367128] 1694 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771742.682690] 813 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771742.998699] 215 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771743.314894] 1185 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771743.631668] 1492 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771743.947404] 645 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771744.263103] 443 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771744.578892] 1063 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771744.894312] 1163 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771745.210558] 1784 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771745.527189] 1916 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771745.843822] 1938 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771746.160519] 1508 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771746.476236] 1298 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771746.792010] 749 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771747.107475] 673 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771747.423049] 128 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771747.738488] 258 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771748.054862] 1541 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771748.370513] 1076 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771748.686067] 199 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771749.001485] 806 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771749.317122] 843 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771749.633585] 1530 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771749.950152] 1084 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771750.265822] 373 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771750.581258] 219 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771750.898047] 1518 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771751.213687] 98 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771751.530027] 976 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771751.846280] 606 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771752.162055] 1468 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771752.477835] 244 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771752.793907] 615 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771753.110384] 1434 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771753.426508] 272 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771753.742746] 1199 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771754.059240] 801 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771754.375867] 1448 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771754.691408] 169 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771755.007154] 723 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771755.323394] 241 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771755.638885] 638 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771755.955168] 1467 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771756.271228] 1182 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771756.588601] 1989 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771756.905505] 1715 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771757.220890] 317 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771757.536346] 1053 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771757.853002] 1890 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771758.168732] 882 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771758.484465] 274 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771758.800412] 1293 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771759.116291] 140 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771759.433205] 1559 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771759.748915] 1459 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771760.065527] 1595 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771760.381484] 1165 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771760.698340] 1675 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771761.014090] 432 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771761.330199] 1213 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771761.646961] 1808 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771761.963258] 1119 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771762.279927] 1510 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771762.595410] 9 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421771762.911547] 1351 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771763.227813] 1238 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771763.543495] 1262 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771763.859032] 258 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771764.178280] 1951 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421771764.494198] 1361 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771764.809886] 630 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771765.126761] 1546 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771765.443642] 1632 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771765.759246] 447 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771766.075708] 1916 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771766.392013] 1603 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771766.708294] 1928 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771767.023441] 113 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771767.339049] 1271 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771767.656100] 1777 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771767.971716] 558 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771768.287868] 1056 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771768.603446] 1467 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771768.920173] 1631 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771769.236730] 1511 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771769.552308] 395 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771769.868333] 1266 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771770.185063] 1911 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771770.502169] 1678 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771770.819582] 1772 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771771.135331] 202 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771771.451620] 1312 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771771.767647] 376 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771772.083173] 259 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771772.399171] 1138 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771772.715001] 933 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771773.030739] 908 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771773.347509] 1831 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771773.664043] 1766 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771773.979390] 275 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771774.296611] 1790 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771774.612783] 1434 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771774.928400] 246 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771775.243751] 305 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771775.560024] 1244 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771775.876028] 202 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771776.191379] 488 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771776.507966] 1732 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771776.825278] 1651 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771777.142001] 1977 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771777.458660] 1574 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771777.774181] 426 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771778.089904] 601 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771778.405683] 740 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771778.721648] 1018 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771779.038093] 1551 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771779.353794] 1351 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771779.670108] 1544 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771779.986657] 1523 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771780.302325] 658 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771780.617996] 1395 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771780.933699] 158 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771781.249678] 1068 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771781.565497] 1468 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771781.881965] 476 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771782.198415] 1354 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771782.514084] 469 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771782.829671] 915 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771783.145549] 1332 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771783.461938] 1329 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771783.779111] 1794 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771784.094929] 26 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771784.411004] 449 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771784.727696] 1429 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771785.043682] 619 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771785.359374] 358 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771785.675048] 220 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771785.992064] 1745 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771786.308922] 1726 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771786.624851] 1366 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771786.941575] 1690 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771787.257195] 232 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771787.572821] 622 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771787.888360] 531 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771788.204273] 1301 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771788.519516] 19 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421771788.836391] 1668 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771789.152744] 596 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771789.468646] 1318 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771789.784324] 1476 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771790.099909] 865 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771790.415634] 1435 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771790.731706] 1398 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771791.047526] 1229 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771791.364128] 1911 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771791.681069] 1744 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771791.996736] 1421 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771792.313372] 1857 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771792.628934] 1113 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771792.945052] 1049 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771793.261194] 445 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771793.578575] 2005 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771793.895894] 1556 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771794.211806] 1098 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771794.528105] 1195 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771794.844417] 1436 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771795.159967] 308 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771795.476500] 1867 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771795.792673] 256 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771796.108631] 1099 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771796.425200] 1758 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771796.742047] 1510 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771797.058013] 1373 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771797.374092] 944 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771797.690487] 1350 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771798.007033] 1875 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771798.322881] 800 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771798.639053] 1458 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771798.954863] 449 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771799.270881] 990 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771799.587879] 1624 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771799.904368] 1418 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771800.220095] 18 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421771800.536989] 1585 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771800.853095] 941 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771801.169143] 1425 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771801.484855] 973 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771801.800919] 1435 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771802.116721] 643 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771802.432708] 1062 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771802.749606] 1560 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771803.065511] 1151 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771803.381557] 463 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771803.697642] 182 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771804.013440] 52 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771804.329697] 715 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771804.647131] 1830 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771804.963034] 234 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771805.278306] 70 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771805.594551] 1250 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771805.910630] 1133 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771806.226602] 1319 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771806.542438] 1206 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771806.859121] 1651 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771807.174832] 355 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771807.491693] 1659 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771807.807943] 377 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771808.125084] 1751 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771808.440590] 386 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771808.756384] 1191 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771809.073269] 1884 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771809.389170] 1196 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771809.704773] 394 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771810.021452] 1965 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771810.338444] 1565 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771820.858017] 315 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771821.173621] 225 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771821.489624] 932 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771821.806783] 1840 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771822.122350] 431 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771822.438584] 1055 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771822.754998] 621 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771823.071872] 1715 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771823.387626] 240 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771823.704419] 1879 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771824.020539] 1036 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771824.337629] 1570 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771824.655517] 819 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771824.971084] 41 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771825.287964] 1736 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771825.604874] 1694 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771825.921019] 1421 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771826.236993] 501 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771826.552870] 1415 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771826.868167] 833 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771827.183927] 819 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771827.500668] 1889 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771827.817354] 1684 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771828.132749] 699 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771828.449293] 1493 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771828.765616] 988 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771829.082449] 1621 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771829.398198] 699 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771829.714196] 821 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771830.030183] 892 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771830.345758] 138 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771830.661743] 869 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771830.978775] 1803 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771831.295182] 331 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771831.611787] 616 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771831.927602] 619 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771832.243083] 139 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771832.558853] 1459 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771832.875521] 1656 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771833.191915] 1977 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771833.508100] 1045 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771833.823641] 921 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771834.139281] 886 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771834.455287] 1151 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771834.770930] 1233 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771835.086915] 1321 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771835.402635] 16 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421771835.719913] 1857 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771836.035845] 888 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771836.352065] 842 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771836.668158] 822 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771836.984367] 723 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771837.301611] 1886 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771837.618175] 1091 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771837.933711] 399 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771838.249378] 258 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771838.565617] 1310 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771838.882398] 1694 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771839.197929] 447 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771839.513908] 588 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771839.830333] 995 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771840.145838] 927 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771840.461275] 495 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771840.777254] 711 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771841.092883] 461 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771841.408825] 563 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771841.724754] 1191 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771842.040839] 627 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771842.356841] 526 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771842.673502] 1736 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771842.991068] 1953 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771843.306966] 1005 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771843.624478] 1785 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771843.940326] 317 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771844.257464] 1840 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771844.574270] 1858 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771844.891623] 1833 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771845.207382] 680 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771845.523667] 45 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771845.839319] 289 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771846.154918] 841 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771846.472183] 1747 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771846.788280] 402 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771847.104059] 226 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771847.419734] 384 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771847.735459] 632 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771848.051769] 1311 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771848.367538] 486 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771848.684194] 1588 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771848.999439] 26 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771849.315237] 971 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771849.630928] 200 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771849.946944] 874 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771850.262664] 1055 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771850.579676] 1841 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771850.895877] 361 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771851.211777] 1263 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771851.527948] 1749 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771851.844688] 1746 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771852.160689] 1058 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771852.477695] 1751 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771852.793452] 1318 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771853.109008] 958 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771853.425490] 1668 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771853.741369] 1435 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771854.057038] 1032 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771854.372986] 1016 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771854.688938] 422 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771855.004835] 761 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771855.320523] 756 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771855.636454] 835 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771855.952728] 260 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771856.268834] 1402 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771856.585053] 382 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771856.901045] 103 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771857.219380] 35 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421771857.535731] 694 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771857.852754] 1696 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771858.171205] 72 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771858.487565] 598 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771858.803895] 127 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771859.119468] 409 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771859.435541] 935 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771859.753253] 1820 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771860.077486] 1559 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421771860.401091] 1009 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421771860.744900] 1978 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=139 ms +[1421771861.096504] 1925 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=147 ms +[1421771861.413617] 1983 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771861.729269] 1421 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771862.045844] 1795 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771862.361095] 696 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771862.676589] 620 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771862.991962] 344 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771863.307548] 1272 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771863.623603] 1314 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771863.939277] 49 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771864.254727] 584 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771864.570288] 1300 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771864.885681] 10 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421771865.201912] 907 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771865.518823] 1781 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771865.835784] 1699 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771866.152306] 1835 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771866.469200] 1745 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771866.786047] 1513 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771867.105027] 1247 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421771867.428298] 1343 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421771867.744307] 1080 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771868.060046] 1040 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771868.376287] 1023 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771868.693514] 1581 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771869.009501] 157 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771869.325617] 800 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771869.641656] 1097 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771869.957524] 798 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771870.273909] 258 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771870.589754] 348 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771870.905621] 963 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771871.221556] 789 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771871.537371] 683 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771871.853499] 1201 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771872.169144] 530 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771872.486193] 1597 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771872.802676] 1056 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771873.118964] 2004 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771873.434360] 37 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771873.750063] 1248 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771874.065743] 774 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771874.381578] 1438 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771874.697327] 757 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771875.013984] 1613 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771875.330617] 1979 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771875.646391] 882 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771875.961823] 223 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771876.278378] 1921 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771876.594161] 1091 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771876.910332] 330 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771877.226812] 1704 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771877.542485] 429 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771877.858110] 333 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771878.174810] 1605 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771878.490043] 42 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771878.806299] 1499 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771879.122085] 543 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771879.437766] 1197 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771879.753628] 927 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771880.069965] 748 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771880.386339] 667 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771880.703381] 1795 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771881.020369] 1546 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771881.336954] 1787 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771881.652278] 106 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771881.967675] 61 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771882.283423] 684 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771882.599220] 928 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771882.914905] 1441 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771883.230307] 729 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771883.546169] 843 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771883.862099] 1343 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771884.177547] 432 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771884.493139] 77 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771884.808733] 137 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771885.125335] 1603 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771885.440930] 68 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771885.756678] 737 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771886.072554] 408 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771886.388872] 1138 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771886.705354] 684 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771887.022156] 1584 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771887.337544] 130 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771887.654121] 1698 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771887.969386] 153 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771888.286282] 1992 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771888.602060] 809 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771888.918287] 947 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771889.234407] 1418 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771889.550183] 560 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771889.866164] 744 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771890.182706] 1726 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771890.498437] 66 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771890.815016] 1959 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771891.130767] 341 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771891.446320] 363 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771891.762469] 12 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421771892.079324] 1609 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771892.396058] 1734 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771892.711863] 97 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771893.027793] 1288 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771893.343641] 1415 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771893.659251] 748 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771893.974943] 1110 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771894.290604] 1401 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771894.606245] 896 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771894.921737] 942 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771895.237280] 249 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771895.552662] 876 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771895.868543] 613 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771896.185437] 1897 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771896.502081] 1714 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771896.817820] 774 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771897.133288] 747 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771897.450022] 387 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771897.765920] 1349 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771898.082456] 1562 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771898.397653] 166 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771898.714827] 1574 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771899.031257] 1556 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771899.347131] 1038 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771899.663682] 1405 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771899.980214] 1514 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771900.295674] 224 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771900.612061] 1738 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771900.927548] 577 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771901.244521] 1611 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771901.560114] 995 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771901.876920] 1728 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771902.192330] 150 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771902.507678] 118 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771902.823466] 781 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771903.139372] 1475 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771903.455020] 183 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771903.770377] 350 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771904.089001] 1765 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421771904.408823] 705 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421771904.724120] 541 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771905.039940] 293 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771905.356795] 171 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771905.679861] 509 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421771906.016673] 1993 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421771906.350181] 1473 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421771906.683335] 1373 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421771907.037932] 1623 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=150 ms +[1421771907.377836] 141 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=136 ms +[1421771907.694434] 1708 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771908.010394] 1167 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771908.326517] 1276 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771908.641749] 11 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421771908.957680] 576 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771909.287861] 1968 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771909.603909] 544 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771909.924649] 1941 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421771910.246028] 1167 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421771910.575244] 1464 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421771910.921694] 1860 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=142 ms +[1421771911.255599] 704 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421771911.572137] 1755 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771911.887586] 721 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771912.213894] 1633 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421771912.535538] 274 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421771912.876149] 1999 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=136 ms +[1421771913.224178] 1862 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=144 ms +[1421771913.556378] 224 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421771913.906700] 1580 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=146 ms +[1421771914.243597] 98 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421771914.559479] 553 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771914.875350] 1198 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771915.191297] 918 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771915.506585] 432 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771915.822787] 1217 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771916.138285] 906 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771916.453919] 892 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771916.769548] 1107 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771917.085979] 1799 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771917.401572] 1087 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771917.716837] 147 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771918.036382] 944 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421771918.369804] 1551 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421771918.699340] 1186 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421771919.031035] 538 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421771919.369495] 441 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421771919.685389] 1267 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771920.000675] 1096 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771920.324356] 1653 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421771920.647676] 165 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421771920.972502] 1452 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421771921.295766] 1158 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421771921.629350] 282 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421771921.945237] 892 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771922.260854] 585 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771922.576274] 336 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771922.891626] 511 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771923.207153] 538 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771923.522888] 258 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771923.838614] 506 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771924.155476] 1746 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771924.471209] 539 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771924.787192] 356 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771925.102726] 1040 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771925.419543] 1968 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771925.735328] 1227 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771926.051843] 1481 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771926.367821] 1201 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771926.683702] 1278 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771926.999622] 1348 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771927.315231] 935 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771927.631397] 1414 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771927.947827] 1717 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771928.264509] 1496 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771928.580501] 764 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771928.896609] 359 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771929.212476] 1305 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771929.528992] 1404 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771929.845110] 114 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771930.162078] 1622 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771930.478179] 533 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771930.794667] 1570 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771931.110310] 811 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771931.425868] 656 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771931.741381] 182 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771932.058980] 972 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771932.380218] 388 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421771932.722198] 1577 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=138 ms +[1421771933.053191] 1374 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421771933.386223] 327 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421771933.737935] 1922 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=147 ms +[1421771934.063412] 1170 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=121 ms +[1421771934.380509] 1843 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771934.696678] 769 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771935.023543] 1804 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421771935.347331] 443 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421771935.676284] 230 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421771936.006100] 684 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421771936.344282] 1178 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421771936.681089] 983 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421771937.016438] 964 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421771937.354528] 1264 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421771937.686404] 723 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421771938.020460] 645 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421771938.337076] 1867 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771938.654282] 1657 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771938.973877] 1075 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421771939.297692] 475 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421771939.613517] 1474 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771939.929234] 404 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771940.246136] 1458 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771940.567522] 915 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421771940.902728] 1854 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421771941.230340] 1312 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421771941.562192] 573 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421771941.901598] 8 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421771942.237808] 1163 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421771942.564664] 1137 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421771942.881243] 1900 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771943.197086] 317 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771943.513042] 451 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771943.829638] 60 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771944.157238] 1686 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421771944.484002] 381 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421771944.832566] 1671 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=144 ms +[1421771945.148425] 591 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771945.464036] 1186 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771945.786096] 1653 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421771946.108399] 1468 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421771946.431539] 553 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421771946.756166] 20 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421771947.087125] 590 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421771947.419009] 167 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421771947.775117] 1824 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=151 ms +[1421771948.105568] 8 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421771948.444011] 563 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421771948.778299] 363 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421771949.133246] 1838 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=151 ms +[1421771949.467032] 651 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421771949.805329] 1068 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421771950.120565] 40 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771950.436344] 305 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771950.755368] 1206 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421771951.082139] 642 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421771951.407577] 1048 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=121 ms +[1421771951.738364] 446 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421771952.073684] 1300 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421771952.411623] 534 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421771952.775137] 1629 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=159 ms +[1421771953.106341] 302 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421771953.436464] 242 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421771953.772517] 1163 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421771954.110414] 32 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421771954.447737] 1049 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421771954.764340] 1532 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771955.079740] 112 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771955.395453] 133 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771955.711404] 718 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771956.027432] 1073 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771956.343315] 628 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771956.659653] 946 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771956.981294] 239 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421771957.324211] 1816 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=138 ms +[1421771957.666948] 1800 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=137 ms +[1421771957.998753] 335 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421771958.336680] 1126 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421771958.667638] 413 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421771959.008456] 121 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=136 ms +[1421771959.368364] 1983 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=155 ms +[1421771959.700393] 262 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421771960.028844] 819 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421771960.364614] 191 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421771960.681650] 1653 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771960.997586] 819 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771961.314678] 903 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771961.645592] 1979 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421771961.973031] 1765 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421771962.300968] 658 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421771962.656373] 1648 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=151 ms +[1421771962.984147] 608 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421771963.319541] 1151 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421771963.670287] 1930 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=146 ms +[1421771964.008586] 105 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421771964.344459] 1248 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421771964.693465] 1496 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=144 ms +[1421771965.052646] 1873 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=155 ms +[1421771965.384890] 225 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421771965.700522] 397 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771966.021613] 1705 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421771966.349906] 1939 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421771966.692300] 1886 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=138 ms +[1421771967.021026] 84 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421771967.357769] 1137 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421771967.689557] 293 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421771968.024816] 796 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421771968.358986] 1099 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421771968.689651] 877 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421771969.024969] 166 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421771969.356838] 1409 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421771969.711591] 1486 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=150 ms +[1421771970.048383] 796 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421771970.364467] 240 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771970.680713] 910 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771970.999745] 563 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421771971.325440] 1223 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=121 ms +[1421771971.655733] 314 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421771971.988819] 1148 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421771972.323594] 900 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421771972.681499] 1917 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=153 ms +[1421771973.017450] 943 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421771973.333941] 1931 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771973.650855] 1862 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771973.966797] 981 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771974.283146] 1442 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771974.602085] 442 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421771974.923086] 1429 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421771975.250734] 93 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421771975.581965] 58 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421771975.917668] 591 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421771976.233902] 825 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771976.551988] 1272 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421771976.871571] 1478 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421771977.196616] 729 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=121 ms +[1421771977.524280] 189 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421771977.862208] 1121 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421771978.199135] 1447 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421771978.537593] 1385 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421771978.889864] 1907 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=148 ms +[1421771979.228329] 237 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421771979.561890] 1527 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421771979.902326] 343 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=135 ms +[1421771980.238820] 318 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421771980.554782] 727 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771980.873673] 1718 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421771981.192686] 418 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421771981.518559] 375 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421771981.848358] 757 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421771982.200152] 1684 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=147 ms +[1421771982.534715] 451 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421771982.884718] 1917 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=145 ms +[1421771983.218111] 248 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421771983.533640] 352 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771983.849389] 176 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771984.165191] 1467 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771984.481079] 466 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771984.797830] 1992 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771985.113617] 1173 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771985.429780] 1286 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771985.745826] 581 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771986.062030] 119 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771986.382737] 1002 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421771986.713831] 1730 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421771987.043725] 37 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421771987.360070] 1057 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771987.677149] 1950 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771987.997293] 813 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421771988.320707] 246 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421771988.665337] 1852 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=140 ms +[1421771989.019343] 1515 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=149 ms +[1421771989.354561] 314 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421771989.689522] 1383 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421771990.006155] 1895 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771990.321860] 182 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771990.637155] 37 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771990.953051] 1346 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771991.269036] 474 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771991.584887] 684 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771991.900605] 234 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771992.217390] 1669 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771992.534908] 1151 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421771992.857036] 43 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421771993.194245] 1752 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421771993.537663] 1769 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=139 ms +[1421771993.873152] 880 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421771994.213581] 99 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=136 ms +[1421771994.529219] 258 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771994.844839] 1013 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771995.163565] 413 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421771995.488915] 857 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=121 ms +[1421771995.834670] 1937 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=141 ms +[1421771996.187328] 1796 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=148 ms +[1421771996.546887] 1916 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=155 ms +[1421771996.907177] 1536 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=155 ms +[1421771997.239076] 601 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421771997.555970] 1721 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421771997.871563] 519 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771998.187034] 191 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771998.503400] 1076 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421771998.833685] 1954 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421771999.158604] 60 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421771999.486404] 1295 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421771999.817292] 1072 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421772000.132874] 937 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772000.455021] 1582 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421772000.776751] 857 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421772001.115601] 1690 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421772001.444378] 341 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421772001.779064] 225 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772002.115049] 613 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772002.444127] 120 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772002.777676] 534 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772003.093192] 36 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772003.408775] 548 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772003.724158] 1098 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772004.039668] 15 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421772004.356031] 1200 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772004.672358] 1156 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772004.988542] 695 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772005.304787] 968 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772005.621713] 1844 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772005.937599] 1458 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772006.254700] 1857 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772006.571423] 1544 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772006.887217] 51 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772007.203666] 1992 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772007.521622] 407 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772007.843915] 564 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421772008.166081] 899 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421772008.499845] 1110 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772008.815758] 732 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772009.132704] 1645 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772009.458397] 1692 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=121 ms +[1421772009.781131] 268 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421772010.110738] 835 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421772010.442884] 1112 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772010.759671] 1925 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772011.075208] 726 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772011.390802] 781 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772011.707132] 582 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772012.023845] 1507 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772012.339953] 1028 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772012.655567] 86 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772012.971140] 70 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772013.287376] 283 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772013.606498] 445 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421772013.930865] 447 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421772014.255007] 727 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421772014.585803] 1067 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421772014.919634] 363 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772015.235249] 1318 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772015.551744] 1518 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772015.867457] 956 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772016.183208] 1225 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772016.498863] 1384 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772016.814611] 1134 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772017.130027] 698 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772017.446165] 808 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772017.761684] 1084 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772018.078120] 1532 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772018.393511] 1308 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772018.709198] 1389 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772019.025080] 1342 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772019.340511] 920 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772019.656166] 944 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772019.972874] 1733 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772020.288209] 25 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772020.603881] 872 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772020.920231] 1838 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772021.236325] 1352 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772021.551770] 769 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772021.868795] 1960 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772022.185308] 1343 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772022.504072] 16 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421772022.819959] 819 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772023.135395] 605 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772023.457994] 1658 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421772023.780626] 18 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421772024.103866] 723 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421772024.453306] 1483 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=145 ms +[1421772024.786081] 767 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421772025.150205] 1867 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=159 ms +[1421772025.484227] 1159 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772025.813018] 1427 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421772026.128732] 1088 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772026.445843] 1580 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772026.762610] 765 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772027.082627] 1469 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421772027.399208] 1918 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772027.716304] 1722 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772028.040248] 1815 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421772028.363350] 290 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421772028.691864] 569 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421772029.008609] 731 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772029.325569] 1963 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772029.645885] 1810 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421772029.973331] 1816 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421772030.289109] 745 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772030.605446] 1652 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772030.921202] 948 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772031.236920] 206 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772031.552619] 994 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772031.868964] 1612 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772032.184453] 712 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772032.501477] 1910 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772032.817378] 604 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772033.132762] 403 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772033.448538] 74 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772033.764364] 714 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772034.080307] 1387 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772034.396073] 560 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772034.711720] 600 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772035.028313] 1860 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772035.345578] 1956 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772035.661592] 861 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772035.977122] 618 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772036.294244] 1492 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772036.609842] 790 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772036.926050] 1474 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772037.241511] 125 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772037.557495] 452 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772037.874578] 1582 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772038.191104] 1409 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772038.508537] 1690 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772038.824312] 375 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772039.141440] 1910 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772039.457055] 657 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772039.773635] 1264 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772040.089484] 271 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772040.405376] 1136 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772040.720753] 32 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772041.036653] 564 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772041.352590] 241 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772041.668286] 248 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772041.984563] 399 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772042.301036] 1382 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772042.616531] 123 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772042.932549] 833 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772043.248841] 1100 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772043.565736] 1954 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772043.881397] 741 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772044.197584] 485 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772044.513569] 257 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772044.829766] 400 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772045.145556] 569 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772045.462661] 1663 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772045.779037] 1390 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772046.095891] 1931 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772046.412343] 910 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772046.729006] 1561 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772047.045608] 1564 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772047.362677] 1965 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772047.678566] 354 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772047.995096] 1387 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772048.311301] 456 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772048.627468] 478 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772048.943739] 1449 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772049.259881] 859 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772049.577037] 1609 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772049.892555] 354 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772050.207809] 25 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772050.524537] 1797 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772050.841510] 1591 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772051.157248] 970 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772051.473254] 770 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772051.789392] 38 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772052.105873] 1439 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772052.422221] 1131 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772052.738085] 31 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772053.054529] 1149 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772053.370755] 1163 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772053.687074] 1363 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772054.003075] 1183 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772054.318988] 1091 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772054.634661] 615 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772054.950841] 713 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772055.266891] 1029 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772055.583289] 1227 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772055.899182] 260 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772056.215674] 1425 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772056.532221] 903 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772056.848975] 1728 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772057.166007] 1536 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772057.483757] 1658 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772057.799913] 1422 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772058.115499] 228 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772058.431487] 1066 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772058.747942] 1355 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772059.064497] 1601 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772059.381888] 1559 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772059.697692] 1081 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772060.013712] 1464 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772060.329985] 1331 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772060.647317] 1709 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772060.963644] 375 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772061.279647] 286 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772061.596703] 1546 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772061.913513] 1629 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772062.229224] 159 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772062.546155] 1888 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772062.861853] 335 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772063.177947] 800 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772063.494353] 571 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772063.811345] 1925 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772064.127303] 169 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772064.444289] 1796 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772064.761422] 1960 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772065.077485] 1115 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772065.393345] 1105 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772065.710338] 1493 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772066.026234] 764 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772066.342558] 1423 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772066.658697] 456 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772066.975567] 1602 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772067.291408] 635 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772067.607623] 909 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772067.923268] 82 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772068.240009] 1771 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772068.555653] 722 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772068.871538] 1139 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772069.187633] 450 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772069.504551] 1596 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772069.822125] 1543 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772070.137631] 475 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772070.453792] 1292 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772070.769681] 98 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772071.085456] 141 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772071.401887] 1160 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772071.717789] 121 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772072.034811] 1674 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772072.351065] 651 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772072.667273] 817 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772072.985614] 1044 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772073.301343] 235 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772073.617030] 727 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772073.933575] 1288 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772074.249955] 406 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772074.566165] 294 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772074.882471] 685 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772075.198075] 1167 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772075.513802] 136 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772075.830277] 1437 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772076.146710] 1693 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772076.462365] 298 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772076.778069] 638 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772077.095010] 1727 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772077.411328] 1378 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772077.728786] 1713 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772078.044469] 66 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772078.360995] 1217 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772078.677890] 1751 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772078.994790] 1528 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772079.310585] 62 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772079.627489] 1546 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772079.943318] 109 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772080.259498] 923 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772080.576549] 1786 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772080.892670] 1476 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772081.208724] 977 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772081.524356] 232 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772081.840516] 986 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772082.155996] 154 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772082.472057] 37 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772082.789148] 1518 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772083.106084] 1701 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772083.422995] 1610 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772083.739144] 631 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772084.055015] 1105 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772084.370818] 382 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772084.686833] 541 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772085.002844] 275 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772085.319499] 1993 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772085.636403] 1653 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772085.953452] 1734 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772086.269411] 854 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772086.585594] 1090 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772086.901386] 864 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772087.217301] 1360 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772087.540839] 1793 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421772087.856717] 243 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772088.172725] 317 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772088.490101] 1882 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772088.806958] 1431 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772089.124456] 1739 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772089.440654] 767 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772089.756801] 253 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772090.073033] 1082 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772090.390035] 1668 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772090.706225] 36 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772091.023295] 1784 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772091.339085] 980 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772091.656495] 1755 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772091.972641] 881 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772092.289566] 1644 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772092.606999] 1962 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772092.923059] 901 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772093.239347] 413 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772093.555315] 449 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772093.871975] 867 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772094.187769] 656 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772094.504411] 1596 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772094.820960] 1231 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772095.137369] 378 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772095.453209] 382 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772095.769385] 739 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772096.086030] 777 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772096.402463] 842 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772096.718562] 300 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772097.034826] 1178 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772097.350362] 825 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772097.675077] 1487 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421772097.990525] 251 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772098.306746] 1052 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772098.623094] 46 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772098.940164] 1804 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772099.255712] 237 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772099.571804] 843 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772099.894235] 1330 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421772100.222508] 1391 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421772100.557093] 1030 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772100.908505] 1511 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=147 ms +[1421772101.242232] 202 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772101.564347] 1910 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421772101.880998] 980 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772102.197361] 670 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772102.513295] 72 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772102.829730] 755 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772103.147037] 1982 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772103.462837] 373 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772103.784733] 1539 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421772104.107818] 949 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421772104.423642] 571 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772104.740061] 1278 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772105.065542] 1897 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=121 ms +[1421772105.397470] 1659 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772105.741043] 1824 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=139 ms +[1421772106.056955] 464 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772106.421658] 1741 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=160 ms +[1421772106.753424] 1116 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772107.100152] 1550 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=142 ms +[1421772107.420060] 1557 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421772107.736501] 1235 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772108.052776] 1236 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772108.369940] 1729 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772108.687295] 1696 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772109.004855] 1724 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772109.321148] 1351 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772109.638814] 394 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772109.955767] 1908 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772110.271974] 1336 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772110.588991] 1940 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772110.904712] 201 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772111.220956] 1974 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772111.536318] 116 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772111.853231] 1608 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772112.168902] 501 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772112.484639] 608 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772112.800261] 491 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772113.116135] 195 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772113.431845] 651 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772113.747723] 16 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421772114.063650] 158 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772114.379819] 944 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772114.695832] 1209 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772115.011989] 1312 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772115.328325] 1699 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772115.644753] 1786 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772115.961757] 1729 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772116.277470] 980 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772116.593746] 967 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772116.909360] 1110 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772117.224798] 699 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772117.562987] 928 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421772117.879143] 1361 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772118.195804] 1944 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772118.512609] 1959 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772118.828127] 955 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772119.144249] 1408 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772119.460196] 82 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772119.777638] 1998 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772120.094667] 1483 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772120.410348] 440 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772120.727110] 1940 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772121.043757] 1825 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772121.359758] 958 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772121.676219] 1889 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772121.995589] 1983 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421772122.311751] 1232 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772122.628161] 1449 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772122.944403] 104 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772123.260000] 610 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772123.576693] 1771 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772123.891902] 193 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772124.207620] 957 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772124.523378] 813 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772124.839343] 936 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772125.154999] 1062 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772125.471450] 1464 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772125.787289] 630 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772126.104443] 1482 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772126.420350] 351 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772126.735766] 82 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772127.051053] 53 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772127.368501] 1780 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772127.684620] 478 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772128.000309] 1136 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772128.316572] 897 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772128.632262] 715 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772128.948113] 586 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772129.263609] 121 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772129.579364] 525 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772129.895297] 933 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772130.211367] 854 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772130.527429] 261 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772130.843642] 1222 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772131.159886] 379 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772131.476955] 1824 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772131.792298] 66 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772132.108827] 1838 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772132.425149] 1349 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772132.741031] 1165 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772133.056796] 1309 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772133.373104] 1099 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772133.688929] 1092 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772134.004767] 855 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772134.320942] 111 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772134.637264] 549 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772134.953005] 281 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772135.268909] 182 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772145.788610] 164 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772146.104429] 763 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772146.420960] 1052 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772146.736971] 78 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772147.053274] 1777 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772147.369463] 1195 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772147.686167] 1990 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772148.003265] 1972 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772148.320072] 1742 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772148.636715] 1723 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772148.954044] 1489 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772149.271322] 1617 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772149.587067] 157 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772149.903774] 1842 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772150.220063] 1584 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772150.536940] 1983 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772150.853616] 1608 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772151.169789] 1325 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772151.485396] 996 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772151.801829] 1741 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772152.117312] 88 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772152.434434] 1786 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772152.750294] 1205 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772153.065676] 461 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772153.382677] 1979 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772153.698786] 908 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772154.014316] 875 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772154.329909] 201 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772154.645640] 361 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772154.961221] 51 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772155.278168] 1801 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772155.594741] 1999 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772155.910526] 1158 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772156.226260] 268 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772156.542547] 970 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772156.858691] 83 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772157.174918] 298 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772157.491319] 1372 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772157.806999] 39 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772158.123621] 1872 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772158.439640] 679 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772158.755720] 914 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772159.071510] 1251 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772159.388244] 1832 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772159.703764] 1355 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772160.019370] 1261 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772160.334511] 97 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772160.651725] 1925 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772160.967662] 327 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772161.283003] 30 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772161.599409] 1421 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772161.915670] 868 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772162.231673] 1364 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772162.547961] 581 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772162.864553] 1520 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772163.180393] 317 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772163.496005] 292 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772163.812736] 1547 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772164.129171] 1861 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772164.446211] 1512 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772164.762297] 1471 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772165.079176] 1933 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772165.395186] 1293 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772165.710986] 672 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772166.026719] 76 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772166.342558] 1317 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772166.658743] 706 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772166.974287] 383 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772167.292127] 898 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772167.608132] 509 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772167.925407] 1671 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772168.241401] 814 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772168.562145] 1566 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421772168.878641] 1404 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772169.194490] 266 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772169.511495] 1671 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772169.827256] 1479 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772170.143009] 160 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772170.460116] 1511 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772170.776285] 1406 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772171.092381] 1050 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772171.408466] 1077 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772171.723929] 809 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772172.039435] 425 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772172.356918] 1787 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772172.672737] 1217 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772172.989593] 1867 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772173.305445] 157 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772173.621741] 1170 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772173.937575] 206 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772174.260801] 1824 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421772174.585634] 13 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421772174.930490] 1850 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=140 ms +[1421772175.262312] 584 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772175.578517] 1369 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772175.896283] 103 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772176.212212] 598 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772176.529260] 1834 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772176.844891] 427 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772177.161100] 1532 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772177.477146] 1353 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772177.792592] 120 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772178.108428] 667 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772178.424532] 947 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772178.740393] 695 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772179.056109] 1005 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772179.372766] 1841 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772179.688564] 604 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772180.004319] 426 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772180.319856] 1323 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772180.635662] 1151 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772180.951337] 758 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772181.267256] 854 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772181.582721] 260 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772181.899425] 1707 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772182.216005] 1544 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772182.532946] 1989 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772182.848909] 1185 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772183.164836] 1166 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772183.480618] 1091 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772183.797634] 1791 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772184.113947] 1367 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772184.430564] 1846 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772184.745968] 714 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772185.063080] 2005 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772185.379151] 695 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772185.696595] 1993 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772186.013434] 1530 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772186.329707] 1108 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772186.645989] 836 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772186.962086] 592 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772187.277855] 328 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772187.594576] 1994 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772187.910093] 946 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772188.226641] 1788 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772188.553115] 976 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421772188.870083] 1554 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772189.185524] 31 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772189.502615] 1537 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772189.819478] 1915 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772190.136146] 2001 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772190.453144] 1685 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772190.769458] 565 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772191.086496] 412 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772191.403333] 1796 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772191.719040] 60 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772192.034720] 544 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772192.350800] 864 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772192.667615] 1882 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772192.983719] 1241 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772193.299236] 440 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772193.615684] 934 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772193.931769] 687 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772194.247836] 1313 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772194.564202] 848 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772194.881643] 1985 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772195.198573] 1535 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772195.514860] 1515 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772195.830999] 162 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772196.147979] 1219 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772196.464008] 1035 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772196.779754] 183 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772197.096246] 1877 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772197.412185] 951 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772197.728418] 1075 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772198.045546] 1924 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772198.362219] 1528 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772198.677947] 229 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772198.993936] 1166 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772199.309717] 905 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772199.625353] 676 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772199.940968] 818 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772200.256789] 675 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772200.572036] 504 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772200.887655] 289 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772201.204501] 1764 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772201.520864] 1301 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772201.837802] 1481 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772202.153280] 612 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772202.469912] 1988 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772202.786934] 1695 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772203.104013] 1992 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772203.420075] 1377 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772203.735458] 728 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772204.051682] 1742 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772204.367336] 870 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772204.683277] 576 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772204.998914] 207 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772205.314258] 248 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772205.631459] 625 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772205.947140] 818 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772206.262957] 891 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772206.579993] 1547 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772206.896958] 1813 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772207.212815] 627 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772207.529815] 2006 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772207.846048] 1411 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772208.163231] 1700 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772208.479517] 463 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772208.796785] 1739 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772209.113599] 1607 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772209.429520] 616 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772209.745658] 921 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772210.061547] 750 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772210.388592] 507 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772210.705242] 1771 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772211.021214] 879 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772211.337267] 695 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772211.654117] 1711 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772211.971115] 1891 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772212.286608] 125 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772212.602669] 1312 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772212.918340] 527 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772213.233817] 313 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772213.549104] 377 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772213.865096] 288 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772214.181764] 1966 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772214.497760] 856 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772214.813662] 286 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772215.130566] 1916 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772215.446382] 853 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772215.762287] 1369 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772216.077795] 243 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772216.409101] 1538 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421772216.746872] 1526 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421772217.087172] 1542 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=136 ms +[1421772217.419339] 484 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421772217.747845] 792 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421772218.064509] 1835 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772218.380723] 1465 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772218.697975] 1895 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772219.013816] 150 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772219.329028] 106 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772219.644973] 296 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772219.960817] 939 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772220.276516] 498 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772220.592071] 287 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772220.907976] 962 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772221.223889] 1137 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772221.540269] 713 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772221.860081] 567 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421772222.184357] 1277 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421772222.513707] 828 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772222.866513] 1715 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=148 ms +[1421772223.183850] 1941 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772223.499977] 133 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772223.819817] 1234 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421772224.142212] 19 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421772224.481071] 1801 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421772224.815499] 361 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772225.177929] 1518 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=158 ms +[1421772225.541283] 1607 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=158 ms +[1421772225.871225] 712 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772226.203759] 872 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421772226.536780] 1459 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421772226.877116] 628 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=135 ms +[1421772227.233155] 1594 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=151 ms +[1421772227.573849] 988 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=136 ms +[1421772227.890077] 1243 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772228.205963] 927 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772228.524119] 1450 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772228.841185] 1525 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772229.158150] 1826 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772229.474000] 489 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772229.790046] 580 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772230.106302] 767 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772230.422411] 1193 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772230.738053] 648 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772231.054006] 282 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772231.369675] 839 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772231.685436] 1087 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772232.001031] 232 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772232.316655] 149 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772232.632878] 661 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772232.949758] 1501 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772233.266599] 1883 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772243.786488] 1269 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772244.102805] 446 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772244.419074] 1288 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772244.735506] 1207 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772245.052357] 1595 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772245.368315] 494 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772245.684360] 1098 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772246.000432] 877 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772246.316024] 175 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772246.632468] 1930 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772246.947965] 974 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772247.263754] 939 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772247.579179] 8 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421772247.895344] 186 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772248.211637] 1104 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772248.527734] 448 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772248.843752] 228 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772249.159905] 1284 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772249.475965] 387 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772249.793039] 1592 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772250.109074] 246 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772250.424780] 279 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772250.741017] 390 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772251.058602] 1800 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772251.374619] 264 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772251.690419] 246 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772252.006474] 444 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772252.322749] 231 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772252.638800] 700 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772252.954630] 696 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772253.271537] 1704 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772253.587741] 1095 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772253.903835] 1372 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772254.220481] 1983 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772254.536693] 548 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772254.852940] 1281 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772255.168242] 251 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772255.484114] 332 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772255.803199] 1159 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421772256.131071] 1609 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421772256.454171] 541 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421772256.770610] 984 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772257.086903] 975 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772257.403518] 31 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772257.720232] 810 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772258.036110] 83 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772258.352087] 269 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772258.668655] 880 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772258.985695] 1854 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772259.301474] 400 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772259.618327] 1605 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772259.934075] 29 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772260.249758] 1181 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772260.565620] 959 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772260.882291] 1626 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772261.198590] 766 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772261.514850] 1094 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772261.831200] 1217 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772262.147270] 736 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772262.463194] 104 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772262.778927] 43 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772263.096003] 1971 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772263.412283] 760 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772263.728488] 931 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772264.045314] 1601 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772264.361464] 1294 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772264.677229] 20 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421772264.993602] 966 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772265.309709] 1122 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772265.626491] 1785 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772265.942622] 895 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772266.258623] 257 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772266.574912] 1346 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772266.890799] 521 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772267.206589] 619 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772267.522589] 755 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772267.838656] 836 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772268.155197] 609 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772268.472045] 1621 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772268.788815] 1371 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772269.105169] 1251 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772269.422285] 1901 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772269.739558] 1525 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772270.056021] 1242 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772270.371801] 381 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772270.687635] 231 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772271.003340] 1394 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772271.319521] 880 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772271.635397] 1325 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772271.951257] 210 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772272.267064] 58 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772272.582703] 365 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772272.899031] 1635 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772273.214603] 1252 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772273.531546] 1970 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772273.847127] 60 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772274.162953] 1260 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772274.479671] 2006 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772274.795165] 598 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772275.111074] 109 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772275.428071] 1822 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772275.743772] 239 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772276.060832] 1744 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772276.376349] 731 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772276.692779] 1690 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772277.009799] 2006 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772277.326268] 537 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772277.642496] 428 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772277.958394] 16 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421772278.274296] 617 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772278.589983] 417 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772278.906325] 1074 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772279.222512] 817 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772279.538775] 1240 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772279.854499] 16 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421772280.170675] 1425 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772280.486340] 1268 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772280.802439] 355 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772281.118332] 993 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772281.434845] 1776 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772281.751206] 1113 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772282.067161] 861 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772282.383029] 919 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772282.698649] 64 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772283.013814] 501 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772283.330031] 1320 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772283.645346] 707 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772283.961575] 935 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772284.281115] 1865 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421772284.601999] 1431 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421772284.939076] 1668 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772285.268074] 743 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772285.601252] 624 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772285.935177] 264 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772286.269284] 411 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772286.585146] 484 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772286.900964] 801 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772287.222365] 1748 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421772287.545424] 168 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421772287.869695] 1401 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421772288.202238] 79 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421772288.535394] 1404 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772288.890766] 1889 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=151 ms +[1421772289.240680] 1968 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=145 ms +[1421772289.577717] 97 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772289.894908] 1688 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772290.210183] 53 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772290.527018] 600 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772290.847636] 720 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421772291.171294] 971 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421772291.502153] 1070 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421772291.851681] 1634 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=145 ms +[1421772292.167980] 16 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421772292.483911] 605 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772292.801994] 725 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772293.123416] 1035 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421772293.463952] 1845 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=136 ms +[1421772293.796732] 764 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421772294.129551] 106 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421772294.465696] 268 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421772294.792150] 1041 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421772295.124477] 884 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421772295.444740] 1054 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421772295.782724] 1163 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421772296.142395] 1646 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=155 ms +[1421772296.483157] 519 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=136 ms +[1421772296.814362] 1748 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421772297.130428] 29 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772297.447153] 508 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772297.768518] 1071 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421772298.106665] 1512 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421772298.439378] 194 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421772298.768493] 194 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421772299.105985] 968 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421772299.441350] 695 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772299.776804] 320 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772300.092625] 786 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772300.408152] 545 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772300.724653] 1543 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772301.041530] 1864 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772301.356913] 538 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772301.672730] 643 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772301.988497] 379 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772302.305296] 1899 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772302.621637] 911 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772302.937326] 1261 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772303.252886] 230 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772303.568622] 646 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772303.884637] 418 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772304.200464] 334 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772304.516127] 11 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421772304.831917] 811 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772305.154687] 1870 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421772305.479274] 515 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421772305.804076] 398 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421772306.137461] 1229 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772306.453529] 272 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772306.769856] 1279 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772307.089185] 739 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421772307.412362] 287 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421772307.739212] 1104 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421772308.073237] 1265 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772308.409153] 1152 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421772308.774890] 1587 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=161 ms +[1421772309.128858] 1546 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=149 ms +[1421772309.445852] 1791 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772309.762179] 1247 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772310.078212] 1463 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772310.394114] 545 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772310.709261] 627 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772311.024725] 618 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772311.340985] 1797 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772311.657034] 1046 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772311.972383] 273 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772312.289181] 2001 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772312.606193] 866 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772312.927948] 213 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421772313.250857] 266 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421772313.578226] 1073 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421772313.893601] 71 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772314.210518] 1832 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772314.528130] 1109 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772314.849791] 701 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421772315.173050] 384 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421772315.501303] 771 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421772315.838313] 67 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772316.197568] 1983 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=155 ms +[1421772316.556659] 1534 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=154 ms +[1421772316.913804] 1995 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=152 ms +[1421772317.248751] 601 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772317.585678] 881 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772317.914854] 1176 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772318.248001] 633 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772318.564431] 1496 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772318.879756] 699 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772319.199307] 1115 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421772319.523800] 902 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421772319.850589] 1899 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421772320.166468] 1006 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772320.482107] 1086 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772320.797947] 1311 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772321.114470] 1982 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772321.430538] 1092 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772321.746252] 1162 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772322.061852] 1480 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772322.377482] 450 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772322.694224] 1587 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772323.011134] 1775 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772323.327147] 1192 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772323.644071] 1967 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772323.959959] 192 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772324.276767] 1685 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772324.592886] 243 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772324.909217] 1106 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772325.224727] 275 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772325.541180] 1543 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772325.857945] 1633 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772326.173125] 26 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772326.488824] 1096 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772326.805244] 84 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772327.122224] 1789 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772327.438422] 1170 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772327.754807] 1059 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772328.070454] 1243 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772328.385911] 105 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772328.701411] 318 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772329.017328] 667 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772329.333443] 639 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772329.650051] 1660 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772329.966660] 1871 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772330.283368] 1529 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772330.600447] 1645 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772330.916751] 228 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772331.233384] 1614 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772331.549251] 676 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772331.865178] 967 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772332.181150] 1419 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772332.496491] 228 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772332.812450] 496 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772333.128142] 13 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421772333.444264] 459 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772333.760991] 1959 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772334.076896] 1453 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772334.393090] 1406 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772334.709459] 1124 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772335.025707] 1474 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772335.342111] 1767 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772335.657808] 145 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772335.973852] 1163 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772336.290614] 1722 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772336.607177] 1844 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772336.922775] 357 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772337.238176] 329 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772337.554783] 676 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772337.871852] 1541 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772338.187440] 694 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772338.503126] 26 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772338.818621] 269 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772339.135495] 1993 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772339.451067] 603 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772339.767582] 1527 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772340.084225] 1609 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772340.399528] 428 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772340.715914] 89 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772341.031412] 316 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772341.347060] 907 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772341.662785] 116 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772341.979493] 1483 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772342.295109] 96 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772342.611065] 1222 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772342.926444] 350 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772343.242393] 1153 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772343.558044] 1417 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772343.873961] 812 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772344.189875] 602 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772344.506583] 1684 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772344.822638] 1131 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772345.138043] 106 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772345.453601] 173 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772345.770619] 1853 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772346.086515] 920 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772346.402397] 752 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772346.719214] 1293 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772347.034544] 441 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772347.350640] 282 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772347.666829] 1211 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772347.982927] 680 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772348.299438] 1519 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772348.616007] 1593 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772348.932439] 1903 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772349.248805] 2001 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772349.564721] 299 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772349.881662] 1617 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772350.197089] 393 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772350.514133] 1712 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772350.830152] 113 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772351.145671] 140 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772351.462054] 706 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772351.778997] 1828 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772352.095609] 1815 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772352.411228] 1403 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772352.727169] 1470 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772353.043499] 1582 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772353.359121] 776 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772353.675453] 963 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772353.991485] 686 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772354.308528] 1623 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772354.625074] 997 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772354.942688] 1519 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772355.258136] 82 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772355.574406] 211 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772355.891530] 1609 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772356.207600] 191 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772356.523610] 253 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772356.840104] 1116 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772357.156001] 1103 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772357.472349] 1000 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772357.788095] 119 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772358.104762] 720 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772358.425251] 704 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421772358.752197] 370 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421772359.099725] 1720 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=143 ms +[1421772359.434600] 1013 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772359.768831] 372 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772360.125579] 1665 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=152 ms +[1421772360.462565] 485 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421772360.794479] 876 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421772361.124535] 197 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421772361.440883] 1916 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772361.761452] 1525 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421772362.076834] 1101 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772362.393667] 1786 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772362.709959] 1720 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772363.026587] 1763 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772363.343208] 1671 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772363.658630] 59 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772363.985491] 418 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772364.301743] 1703 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772364.617507] 1066 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772364.934514] 1926 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772365.250956] 1585 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772365.568125] 1744 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772365.883800] 1256 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772366.199066] 191 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772366.514622] 1387 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772366.830132] 520 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772367.145774] 649 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772367.461390] 276 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772367.777167] 616 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772368.093195] 964 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772368.410517] 1910 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772368.727900] 1514 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772369.044035] 1439 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772369.359768] 1036 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772369.675693] 435 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772369.991328] 1116 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772370.307455] 1228 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772370.623527] 1115 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772370.939670] 1284 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772371.255882] 1480 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772371.571580] 382 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772371.887709] 1084 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772372.203474] 703 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772372.519181] 595 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772372.835420] 1108 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772373.151292] 1244 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772373.468455] 1971 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772373.784281] 186 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772374.100659] 895 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772374.416683] 332 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772374.733017] 151 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772375.049748] 1695 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772375.365330] 185 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772375.681736] 1404 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772375.998145] 1576 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772376.313955] 1198 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772376.629434] 471 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772376.946108] 1638 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772377.262165] 458 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772377.579438] 1553 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772377.896883] 1996 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772378.212337] 206 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772378.528038] 538 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772378.844251] 1467 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772379.160337] 1275 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772379.477211] 1808 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772379.792983] 266 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772380.108750] 1269 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772380.424535] 66 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772380.740615] 1264 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772381.056990] 1537 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772381.372593] 986 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772381.688567] 133 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772382.004005] 937 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772382.319532] 1335 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772382.635205] 1429 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772382.950864] 472 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772383.267245] 1801 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772383.583290] 1337 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772383.899168] 462 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772384.214625] 666 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772384.529863] 596 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772384.846294] 1850 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772385.161626] 504 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772385.477387] 1201 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772385.793003] 761 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772386.108821] 1366 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772386.425476] 1718 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772386.741714] 1870 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772387.057180] 322 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772387.373309] 1316 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772387.688725] 706 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772388.005002] 1882 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772388.320280] 834 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772388.636860] 1714 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772388.952546] 1010 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772389.268562] 812 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772389.584880] 651 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772389.901273] 731 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772390.216828] 75 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772390.533570] 1839 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772390.849875] 896 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772391.165748] 1304 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772391.481571] 415 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772391.797101] 568 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772392.113359] 1918 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772392.428823] 717 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772392.744652] 1387 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772393.060665] 1107 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772393.377188] 1640 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772393.692975] 473 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772394.009670] 1659 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772394.326727] 1648 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772394.642812] 302 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772394.958901] 648 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772395.275294] 1920 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772395.590695] 860 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772395.906116] 273 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772396.222119] 1326 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772396.538525] 1424 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772396.855897] 1574 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772397.171783] 644 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772397.488429] 1481 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772397.804474] 160 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772398.120246] 745 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772398.436107] 476 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772398.751813] 548 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772399.067360] 437 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772399.382939] 513 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772399.698730] 172 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772400.014894] 519 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772400.330854] 854 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772400.647507] 1948 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772400.963303] 1236 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772401.279300] 1250 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772401.596270] 1567 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772401.911915] 55 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772402.227662] 239 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772402.543929] 635 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772402.859963] 1464 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772403.175648] 1130 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772403.491876] 1377 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772403.807520] 714 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772404.122730] 230 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772404.439595] 1906 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772404.756406] 1940 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772405.072169] 556 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772405.388080] 434 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772405.704183] 1200 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772406.020107] 297 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772406.336443] 131 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772406.653332] 108 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772406.969308] 899 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772407.286246] 1893 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772407.602169] 1178 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772407.919523] 1693 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772408.235830] 26 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772408.553039] 1516 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772408.869178] 437 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772409.185540] 517 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772409.501335] 433 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772409.817040] 737 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772410.132985] 799 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772410.449876] 1687 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772410.767165] 1533 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772411.083453] 315 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772411.399689] 1396 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772411.720575] 926 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421772412.047935] 592 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421772412.376287] 373 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421772412.733860] 1668 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=153 ms +[1421772413.050031] 579 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772413.406817] 1486 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=152 ms +[1421772413.763922] 1916 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=152 ms +[1421772414.096916] 728 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421772414.433689] 979 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772414.782861] 1779 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=145 ms +[1421772415.121850] 631 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421772415.437946] 200 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772415.756168] 1138 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421772416.078296] 876 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421772416.404425] 372 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=121 ms +[1421772416.733834] 1060 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772417.063852] 1144 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421772417.422591] 1504 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=154 ms +[1421772417.756406] 166 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772418.092299] 159 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421772418.421185] 236 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421772418.759515] 1095 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421772419.097648] 439 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421772419.463006] 1846 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=161 ms +[1421772419.798700] 669 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421772420.116219] 1628 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772420.436459] 1858 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421772420.758624] 348 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421772421.092065] 1574 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772421.412857] 1358 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421772421.749609] 1079 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772422.080786] 1318 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421772422.415417] 340 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772422.750967] 71 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421772423.066546] 330 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772423.403862] 737 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772423.766245] 1486 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=158 ms +[1421772424.104582] 699 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421772424.443210] 274 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421772424.781989] 1395 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421772425.098020] 1287 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772425.413947] 379 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772425.732919] 305 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421772426.058610] 1395 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=121 ms +[1421772426.386318] 71 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421772426.731697] 1877 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=140 ms +[1421772427.089842] 1605 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=153 ms +[1421772427.427847] 1083 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421772427.772341] 1647 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=141 ms +[1421772428.101102] 1761 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421772428.416469] 523 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772428.732427] 592 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772429.048645] 826 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772429.365045] 1528 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772429.681713] 191 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772429.997769] 516 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772430.313750] 528 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772430.630440] 1566 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772430.947176] 1763 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772431.262748] 138 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772431.578406] 807 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772431.895071] 1656 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772432.210706] 198 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772432.527754] 1048 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772432.848124] 543 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421772433.187591] 1622 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421772433.541840] 1844 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=150 ms +[1421772433.857382] 844 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772434.173509] 257 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772434.489853] 321 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772434.810975] 602 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421772435.139770] 270 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421772435.469723] 1161 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772435.785828] 1276 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772436.102917] 1638 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772436.419270] 1157 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772436.735686] 1258 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772437.052432] 1819 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772437.368379] 199 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772437.684921] 517 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772438.001041] 912 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772438.316829] 558 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772438.634245] 1790 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772438.950482] 216 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772439.267358] 1587 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772439.583723] 910 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772439.899719] 24 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772440.215277] 231 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772440.531184] 332 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772440.847353] 1258 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772441.163706] 1472 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772441.479877] 425 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772441.797465] 2004 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772442.113395] 587 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772442.429191] 314 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772442.745548] 17 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421772443.061386] 1466 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772443.377803] 1151 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772443.693639] 957 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772444.010084] 1826 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772444.325376] 122 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772444.641990] 659 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772444.957872] 1107 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772445.273418] 201 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772445.589195] 1054 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772445.905175] 852 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772446.220950] 467 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772446.536538] 1479 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772446.852375] 813 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772447.169401] 1830 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772447.486279] 1928 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772447.803248] 1543 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772448.119362] 971 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772448.436358] 1700 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772448.752627] 154 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772449.068671] 476 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772449.384348] 294 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772449.701599] 1747 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772450.017919] 1202 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772450.334308] 1234 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772450.650854] 723 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772450.966793] 136 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772451.284063] 1840 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772451.600917] 1525 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772451.917692] 55 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772452.234600] 1694 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772452.550433] 447 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772452.866696] 1450 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772453.183006] 1130 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772453.500119] 1493 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772453.816129] 657 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772454.132507] 460 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772454.448196] 1337 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772454.764271] 448 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772455.080238] 1467 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772455.396734] 750 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772455.713608] 1539 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772456.029155] 1044 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772456.344608] 589 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772456.660212] 1036 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772456.975737] 1058 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772457.291232] 177 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772457.607124] 1312 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772457.923137] 484 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772458.239054] 224 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772458.555844] 440 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772458.871768] 687 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772459.187525] 418 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772459.503460] 1061 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772459.819398] 451 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772460.135130] 363 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772460.451917] 1836 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772460.767641] 1371 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772461.083344] 1477 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772461.399168] 137 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772461.715234] 967 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772462.032041] 1487 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772462.347433] 58 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772462.663879] 1211 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772462.979510] 28 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772463.294978] 178 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772463.612377] 1918 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772463.928256] 92 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772464.244622] 1290 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772464.561234] 685 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772464.877309] 510 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772465.193096] 1211 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772465.509134] 1254 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772465.825433] 1354 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772466.152365] 1111 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421772466.468130] 752 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772466.784432] 559 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772467.101732] 1940 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772467.417890] 760 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772467.733870] 867 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772468.050011] 842 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772468.366691] 1822 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772468.683788] 1565 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772469.000149] 1863 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772469.315610] 1315 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772469.632037] 1794 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772469.948089] 1367 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772470.264055] 114 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772470.579772] 365 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772470.895290] 221 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772471.212196] 329 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772471.540399] 1011 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421772471.880069] 395 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=135 ms +[1421772472.211802] 140 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772472.551366] 586 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=135 ms +[1421772472.886243] 948 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772473.215042] 1217 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421772473.551267] 731 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421772473.888633] 616 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421772474.204937] 1001 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772474.521223] 1428 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772474.842055] 1031 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421772475.175446] 1703 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421772475.504717] 1192 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772475.833789] 94 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421772476.171400] 1450 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421772476.529734] 1565 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=154 ms +[1421772476.865945] 1311 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772477.181767] 1003 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772477.498900] 1491 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772477.816324] 1557 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772478.131732] 404 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772478.447696] 205 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772478.764613] 1710 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772479.080648] 983 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772479.396520] 373 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772479.712288] 334 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772480.028031] 111 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772480.343715] 1249 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772480.660380] 1853 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772480.977257] 1847 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772481.293248] 464 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772481.609295] 1313 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772481.925308] 423 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772482.241194] 780 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772482.557085] 981 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772482.873699] 1618 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772483.189993] 1177 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772483.505570] 1324 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772483.821287] 249 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772484.136478] 396 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772484.452301] 279 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772484.769654] 1764 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772485.086692] 1908 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772485.402364] 999 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772485.718825] 1094 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772486.036718] 1896 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772486.353778] 1694 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772486.670962] 1799 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772486.987901] 1726 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772487.303889] 546 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772487.620535] 1618 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772487.936030] 828 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772488.251973] 961 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772488.567517] 532 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772488.884076] 1858 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772489.200576] 131 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772489.518230] 361 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772489.841729] 21 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421772490.164208] 1328 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421772490.498540] 1516 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772490.815450] 1858 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772491.134069] 1242 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772491.463043] 1585 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772491.785801] 1214 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421772492.124573] 1916 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421772492.459912] 445 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421772492.796887] 414 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772493.135826] 780 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=135 ms +[1421772493.472909] 221 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421772493.788685] 792 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772494.104320] 271 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772494.420568] 968 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772494.736857] 120 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772495.052907] 1136 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772495.369539] 1536 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772495.685414] 245 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772496.001259] 906 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772496.318853] 334 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772496.636565] 1152 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772496.955371] 1498 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772497.271857] 1507 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772497.587298] 306 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772497.902751] 551 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772498.218713] 169 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772498.534678] 43 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772498.850148] 131 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772499.166660] 465 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772499.482433] 88 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772499.798198] 198 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772500.118890] 940 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421772500.445915] 563 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421772500.784397] 1569 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421772501.114271] 440 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772501.429638] 687 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772501.746187] 1126 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772502.065852] 933 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421772502.389213] 188 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421772502.731158] 920 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=137 ms +[1421772503.065038] 307 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772503.409320] 1865 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=140 ms +[1421772503.765588] 1577 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=151 ms +[1421772504.102726] 186 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772504.433782] 1245 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421772504.767533] 1251 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772505.098834] 792 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772505.432294] 1314 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772505.767057] 1622 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772506.083920] 1794 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772506.404112] 1727 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421772506.726027] 1441 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421772507.047643] 494 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421772507.379282] 729 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772507.705462] 297 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=121 ms +[1421772508.044149] 1986 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421772508.377961] 1052 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772508.707899] 1341 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772509.024675] 1890 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772509.340401] 1028 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772509.656921] 1307 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772509.973771] 1400 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772510.290755] 1816 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772510.607148] 1570 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772510.924618] 1654 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772511.252054] 774 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772511.569156] 1783 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772511.885209] 733 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772512.201726] 1126 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772512.521034] 923 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421772512.845821] 145 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421772513.175028] 296 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772513.530380] 1760 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=151 ms +[1421772513.846193] 956 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772514.162580] 601 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772514.482326] 1039 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421772514.809324] 343 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421772515.135032] 389 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=121 ms +[1421772515.487308] 1797 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=148 ms +[1421772515.824335] 133 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421772516.174580] 1721 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=146 ms +[1421772516.510092] 83 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421772516.826065] 792 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772517.164266] 1489 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421772517.480986] 1775 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772517.796925] 912 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772518.112926] 1277 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772518.428568] 254 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772518.752414] 1592 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421772519.075331] 767 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421772519.416282] 1745 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=136 ms +[1421772519.733570] 1784 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772520.049423] 746 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772520.377596] 1762 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421772520.714229] 1567 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772521.044570] 1150 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421772521.379383] 122 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772521.714681] 1359 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772522.066121] 1621 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=147 ms +[1421772522.396478] 1016 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421772522.712821] 321 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772523.068067] 2000 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=151 ms +[1421772523.403124] 252 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421772523.739369] 1182 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421772524.070067] 692 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421772524.385963] 389 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772524.702556] 1182 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772525.018943] 1050 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772525.338026] 714 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421772525.660000] 301 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421772525.984431] 725 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421772526.318630] 9 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421772526.656068] 1477 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421772526.992934] 437 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772527.347708] 1571 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=150 ms +[1421772527.665468] 641 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772528.003498] 971 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772528.364852] 1525 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=157 ms +[1421772528.702386] 817 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421772529.043343] 1830 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=136 ms +[1421772529.358499] 313 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772529.680364] 1988 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421772530.002205] 244 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421772530.328979] 693 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421772530.664106] 1725 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421772530.980575] 1238 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772531.296789] 437 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772531.612610] 464 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772531.928491] 1175 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772532.244898] 1999 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772532.566310] 1551 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772532.882527] 625 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772533.198134] 41 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772533.514020] 876 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772533.830942] 1667 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772534.147390] 1553 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772534.463247] 346 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772534.780715] 1901 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772535.096449] 241 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772535.413398] 1775 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772535.729512] 1278 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772536.044697] 102 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772536.360471] 380 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772536.676330] 144 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772536.993492] 1874 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772537.309413] 619 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772537.625533] 409 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772537.941829] 1295 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772538.258302] 124 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772538.573995] 27 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772538.889802] 602 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772539.205201] 231 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772539.521394] 24 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772539.837920] 1462 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772540.153957] 99 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772540.471180] 1974 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772540.787565] 700 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772541.103841] 520 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772541.419975] 456 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772541.736821] 721 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772542.052945] 1000 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772542.368354] 127 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772542.684518] 826 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772543.001515] 1691 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772543.318625] 1495 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772543.634715] 691 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772543.950430] 392 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772544.266637] 1026 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772544.583082] 440 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772544.903716] 914 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772545.222062] 1102 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772545.538038] 1034 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772545.855019] 1895 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772546.170900] 702 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772546.488043] 1934 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772546.803693] 45 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772547.119593] 959 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772547.436549] 1731 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772547.754973] 1686 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421772548.071179] 874 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772548.387974] 1234 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772548.704093] 12 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421772549.020194] 834 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772549.335998] 619 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772549.651765] 38 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772549.967814] 137 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772550.283655] 1124 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772550.599812] 1044 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772550.917126] 1752 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772551.232815] 751 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772551.549055] 1413 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772551.865876] 1918 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772552.181426] 204 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772552.498333] 1914 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772552.814956] 1252 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772553.131005] 878 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772553.447962] 1769 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772553.765166] 1563 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772554.081114] 508 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772554.396626] 955 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772554.712281] 22 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421772555.029396] 1719 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772555.345936] 968 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772555.662666] 1091 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772555.979908] 1855 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772556.296149] 612 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772556.613268] 1792 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772556.929117] 644 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772557.246610] 1549 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772557.562760] 470 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772557.879541] 1551 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772558.195419] 384 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772558.512977] 1100 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772558.829451] 974 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772559.146091] 1774 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772559.463087] 1753 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772559.780607] 1762 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772560.098223] 1941 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772560.415141] 195 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772560.731958] 126 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772561.048111] 39 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772561.365369] 1818 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772561.681294] 345 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772561.997493] 257 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772562.313625] 1121 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772562.629643] 1019 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772562.945891] 527 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772563.262385] 539 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772563.578890] 957 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772563.895380] 716 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772564.212469] 1769 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772564.528642] 1291 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772564.846722] 1971 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772565.163435] 1723 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772565.479745] 337 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772565.795705] 8 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421772566.111644] 505 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772566.428267] 1608 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772566.744034] 874 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772567.060182] 1380 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772567.375887] 1415 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772567.693173] 1966 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772568.009211] 1293 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772568.324964] 1082 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772568.641816] 1682 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772568.957414] 780 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772569.272860] 756 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772569.589628] 1495 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772569.904918] 333 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772570.221544] 1819 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772570.537340] 1454 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772570.852945] 154 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772571.169982] 1344 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772571.486334] 731 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772571.803372] 1646 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772572.119162] 1101 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772572.435182] 773 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772572.751302] 1390 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772573.067283] 128 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772573.383212] 142 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772573.700215] 1703 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772574.016196] 1100 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772574.331867] 1260 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772574.647767] 847 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772574.965164] 1837 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772575.281287] 867 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772575.597142] 1313 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772575.913164] 1419 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772576.229636] 1316 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772576.545516] 15 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421772576.862637] 1715 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772577.179160] 1565 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772577.494980] 1455 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772577.812944] 1968 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772578.128888] 1380 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772578.444395] 521 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772578.760871] 928 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772579.077105] 399 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772579.392608] 1065 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772579.708507] 1052 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772580.024891] 1108 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772580.340753] 994 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772580.656506] 34 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772580.972937] 1415 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772581.288923] 783 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772581.604672] 966 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772581.921196] 1134 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772582.236775] 247 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772582.552276] 378 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772582.868884] 1724 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772583.184875] 1270 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772583.500605] 395 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772583.817697] 1602 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772584.133675] 419 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772584.449584] 1020 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772584.765030] 211 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772585.082097] 1807 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772585.397534] 46 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772585.713449] 1309 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772586.029222] 1151 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772586.345878] 1779 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772586.661774] 145 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772586.979019] 1921 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772587.294890] 607 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772587.611549] 1987 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772587.927645] 1390 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772588.244785] 1534 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772588.561119] 1339 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772588.877998] 1843 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772589.193704] 543 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772589.510156] 759 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772589.825982] 235 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772590.142546] 2004 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772590.458837] 1233 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772590.774690] 958 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772591.090335] 1432 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772591.407656] 1877 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772591.724015] 381 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772592.041043] 1941 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772592.358070] 1801 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772592.673844] 1034 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772592.990197] 1553 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772593.305817] 1421 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772593.621320] 620 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772593.936639] 10 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421772594.252157] 483 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772594.567526] 307 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772594.883453] 679 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772595.200499] 1658 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772595.517823] 1748 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772595.833836] 1171 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772596.149568] 690 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772596.465198] 988 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772596.781824] 1533 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772597.097915] 652 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772597.414986] 1657 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772597.730774] 404 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772598.047591] 1695 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772598.363757] 1121 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772598.680455] 1916 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772598.997157] 1599 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772599.312548] 161 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772599.628083] 48 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772599.945094] 1825 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772600.260884] 860 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772600.576614] 243 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772600.892160] 947 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772601.208734] 2007 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772601.524623] 1355 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772601.840464] 806 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772602.156638] 1287 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772602.472797] 1358 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772602.788617] 1370 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772603.103956] 149 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772603.420505] 1968 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772603.737166] 1902 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772604.052827] 475 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772604.368647] 508 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772604.685730] 1508 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772605.002147] 362 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772605.321524] 1222 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772605.637695] 1406 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772605.953787] 1456 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772606.269826] 414 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772606.586592] 1533 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772606.903212] 1616 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772607.219990] 1917 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772607.536491] 1092 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772607.853577] 1973 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772608.169223] 644 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772608.486101] 1642 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772608.802187] 544 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772609.118137] 871 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772609.433943] 530 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772609.750097] 1103 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772610.067372] 1694 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772610.383924] 1404 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772610.699659] 168 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772611.016671] 1791 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772611.332590] 1134 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772611.648356] 470 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772611.965397] 1499 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772612.281090] 171 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772612.597082] 316 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772612.913131] 695 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772613.229012] 611 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772613.545810] 1553 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772613.863125] 1790 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772614.179825] 1053 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772614.495981] 1113 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772614.812341] 1167 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772615.128084] 345 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772615.445270] 1519 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772615.761452] 913 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772616.090721] 240 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772616.420756] 180 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772616.756034] 1964 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772617.077970] 1555 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421772617.394635] 1549 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772617.710047] 1010 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772618.025825] 1204 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772618.342851] 1753 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772618.658196] 212 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772618.973832] 628 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772619.290051] 986 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772619.606062] 831 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772619.922048] 165 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772620.237641] 560 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772620.553325] 1117 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772620.870399] 1898 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772621.186778] 1568 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772621.503214] 1760 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772621.819098] 1357 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772622.134864] 863 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772622.450513] 756 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772622.781811] 659 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772623.111158] 959 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772623.426691] 1039 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772623.759168] 567 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421772624.092631] 1270 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772624.409418] 1907 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772624.725615] 290 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772625.041488] 220 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772625.357482] 393 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772625.674553] 1561 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772625.992155] 1079 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772626.314571] 1304 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421772626.639794] 1370 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421772626.969677] 99 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772627.306136] 216 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772627.640584] 546 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772627.973733] 1893 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772628.312833] 1529 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=135 ms +[1421772628.645679] 1336 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421772628.979524] 671 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772629.314315] 734 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772629.665532] 1972 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=146 ms +[1421772629.999953] 53 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772630.316765] 1482 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772630.633505] 1591 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772630.952356] 1004 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421772631.273311] 140 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421772631.597910] 562 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421772631.922410] 422 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421772632.251913] 601 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772632.588529] 1050 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772632.945376] 1907 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=153 ms +[1421772633.284370] 712 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421772633.600843] 1156 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772633.916912] 265 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772634.233263] 430 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772634.550457] 1807 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772634.866033] 431 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772635.184345] 1553 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421772635.504979] 1097 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421772635.831152] 1149 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421772636.146731] 83 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772636.463415] 1693 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772636.780477] 1762 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772637.096865] 1041 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772637.412794] 928 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772637.729664] 2000 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772638.046581] 1104 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772638.363308] 1564 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772638.679177] 896 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772638.996168] 1691 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772639.311597] 279 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772639.627367] 299 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772639.943498] 1278 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772640.259687] 699 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772640.575818] 1165 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772640.893192] 1672 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772641.209248] 416 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772641.525172] 364 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772641.842696] 1682 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772642.158591] 20 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421772642.474630] 1252 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772642.790820] 912 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772643.108063] 1668 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772643.423970] 903 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772643.739922] 1219 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772644.056497] 1872 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772644.372329] 576 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772644.688434] 521 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772645.004507] 604 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772645.321299] 1972 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772645.637132] 1007 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772645.953346] 771 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772646.270674] 2000 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772646.586460] 645 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772646.902315] 255 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772647.218155] 549 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772647.534217] 1396 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772647.850210] 10 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421772648.165644] 65 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772648.482286] 1774 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772648.798154] 876 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772649.113673] 61 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772649.429292] 13 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421772649.746118] 1518 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772650.062276] 608 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772650.378533] 67 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772650.695715] 1637 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772651.012367] 626 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772651.328884] 1460 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772651.645812] 1719 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772651.961793] 568 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772652.278523] 1645 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772652.595414] 1973 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772652.911617] 682 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772653.228950] 1973 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772653.544281] 181 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772653.861277] 1706 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772654.176988] 589 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772654.493377] 1131 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772654.810811] 1838 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772655.127226] 1143 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772655.443966] 1931 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772655.760431] 1465 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772656.076318] 318 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772656.392878] 1251 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772656.709282] 828 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772657.025425] 288 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772657.341301] 112 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772657.657752] 155 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772657.974769] 1627 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772658.291063] 1330 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772658.607373] 1347 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772658.924562] 1776 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772659.240657] 1014 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772659.556048] 682 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772659.871858] 1477 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772660.187563] 339 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772660.503258] 232 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772660.819519] 1321 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772661.135251] 144 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772661.451348] 680 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772661.767651] 1316 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772662.083655] 816 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772662.399848] 608 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772662.717135] 1763 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772663.034406] 1793 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772663.350517] 410 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772663.666597] 442 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772663.982524] 489 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772664.298777] 1065 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772664.615120] 502 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772664.932814] 1687 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772665.249550] 383 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772665.565311] 364 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772665.881509] 767 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772666.197909] 637 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772666.514097] 773 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772666.830416] 843 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772667.146153] 440 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772667.462322] 526 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772667.779562] 1991 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772668.095846] 1257 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772668.412392] 1370 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772668.729613] 1521 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772669.045589] 600 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772669.361850] 1424 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772669.678396] 1374 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772669.994862] 652 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772670.311310] 482 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772670.627323] 299 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772670.943428] 327 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772671.259801] 351 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772671.576954] 1714 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772671.894065] 1780 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772672.209833] 65 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772672.526976] 1523 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772672.847326] 1807 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772673.163684] 1220 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772673.480108] 1192 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772673.797318] 1681 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772674.113674] 1076 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772674.430638] 1774 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772674.746971] 968 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772675.063560] 1270 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772675.379962] 506 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772675.695950] 153 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772676.012547] 1405 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772676.328987] 1195 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772676.645873] 1950 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772676.962310] 516 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772677.281241] 1684 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421772677.608378] 1726 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421772677.934347] 1011 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=121 ms +[1421772678.273110] 1971 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421772678.630357] 1808 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=152 ms +[1421772678.970210] 84 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=135 ms +[1421772679.310255] 1603 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=135 ms +[1421772679.667528] 1744 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=152 ms +[1421772680.027486] 1515 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=155 ms +[1421772680.365637] 91 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421772680.725433] 1838 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=155 ms +[1421772681.061934] 1086 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772681.401020] 1892 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=135 ms +[1421772681.717684] 791 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772682.033587] 758 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772682.356992] 1602 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421772682.680411] 1048 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421772683.020389] 1890 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=135 ms +[1421772683.371172] 1786 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=146 ms +[1421772683.699865] 372 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421772684.035104] 644 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772684.369566] 294 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772684.685505] 267 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772685.049607] 1612 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=159 ms +[1421772685.413016] 1882 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=159 ms +[1421772685.750711] 483 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421772686.085924] 1047 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772686.421321] 1408 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421772686.737565] 395 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772687.054491] 1617 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772687.372224] 665 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772687.693699] 493 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421772688.019968] 1210 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=121 ms +[1421772688.371120] 1683 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=146 ms +[1421772688.709977] 1279 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421772689.046750] 869 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772689.382541] 1406 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421772689.698832] 814 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772690.015731] 1530 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772690.332015] 590 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772690.647976] 935 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772690.964562] 1222 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772691.280718] 120 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772691.597183] 1009 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772691.913768] 1460 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772692.229397] 88 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772692.545467] 122 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772692.861492] 817 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772693.177474] 53 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772693.494775] 465 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772693.817704] 461 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421772694.143940] 895 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421772694.470918] 236 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421772694.809619] 803 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421772695.126320] 1347 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772695.442735] 861 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772695.763081] 662 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421772696.084849] 874 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421772696.411292] 1263 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421772696.742398] 1472 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421772697.074064] 773 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772697.410953] 909 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772697.762461] 1653 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=146 ms +[1421772698.107481] 1486 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=140 ms +[1421772698.438471] 1196 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772698.772537] 634 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772699.102169] 367 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772699.434436] 1374 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772699.771412] 1046 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772700.088756] 1992 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772700.406644] 1513 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772700.727648] 1292 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421772701.047685] 163 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421772701.371897] 1452 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421772701.697852] 392 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=121 ms +[1421772702.034643] 1857 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772702.385555] 1725 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=146 ms +[1421772702.739424] 1866 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=149 ms +[1421772703.059147] 486 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421772703.389979] 734 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421772703.747035] 1962 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=152 ms +[1421772704.083280] 1246 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421772704.417579] 1111 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772704.734229] 1811 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772705.050704] 1542 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772705.368200] 1917 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772705.686897] 33 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421772706.018802] 1930 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772706.343370] 170 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421772706.694068] 1731 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=146 ms +[1421772707.028985] 625 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772707.364579] 1387 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421772707.702436] 1726 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421772708.037562] 110 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772708.402483] 1630 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=160 ms +[1421772708.737351] 669 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772709.089307] 1974 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=147 ms +[1421772709.421483] 498 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772709.738180] 1606 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772710.054336] 1096 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772710.382225] 1554 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421772710.706075] 989 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421772711.037355] 831 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421772711.371650] 447 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772711.712682] 660 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=136 ms +[1421772712.069894] 1788 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=152 ms +[1421772712.404882] 1071 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772712.745861] 223 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=136 ms +[1421772713.085779] 905 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=135 ms +[1421772713.447245] 1560 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=156 ms +[1421772713.803039] 1623 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=151 ms +[1421772714.137346] 393 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772714.453420] 495 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772714.770114] 300 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772715.095699] 1485 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421772715.434938] 1687 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421772715.767378] 1022 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772716.099718] 658 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421772716.441985] 1261 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=137 ms +[1421772716.801363] 1612 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=154 ms +[1421772717.163727] 1577 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=158 ms +[1421772717.525953] 1923 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=157 ms +[1421772717.862993] 1047 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772718.191455] 1289 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421772718.524654] 53 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421772718.878517] 1880 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=149 ms +[1421772719.210786] 512 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772719.526885] 994 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772719.843445] 1157 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772720.164211] 1167 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421772720.491285] 1071 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421772720.820096] 50 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421772721.156414] 877 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772721.515646] 1727 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=155 ms +[1421772721.849663] 254 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772722.181280] 1101 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772722.518636] 1413 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421772722.874236] 1751 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=151 ms +[1421772723.232525] 1678 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=154 ms +[1421772723.574681] 641 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=138 ms +[1421772723.913202] 1612 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421772724.229609] 1194 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772724.545716] 1049 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772724.864141] 124 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421772725.189579] 995 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=121 ms +[1421772725.511683] 552 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421772725.842442] 162 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421772726.173870] 1478 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772726.509137] 1766 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421772726.826094] 1487 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772727.142029] 701 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772727.458168] 413 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772727.774379] 1152 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772728.090679] 569 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772728.407004] 587 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772728.724096] 1729 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772729.039999] 1180 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772729.355472] 633 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772729.671217] 365 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772729.988162] 1697 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772730.304057] 1411 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772730.620925] 1604 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772730.937107] 1464 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772731.253100] 1134 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772731.569660] 1246 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772731.885686] 1367 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772732.201493] 981 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772732.517283] 545 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772732.833260] 117 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772733.149140] 642 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772733.465131] 70 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772733.781242] 1062 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772734.097022] 172 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772734.413082] 1362 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772734.729144] 903 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772735.045960] 1904 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772735.361532] 196 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772735.677263] 1001 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772735.993186] 1189 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772736.309444] 1112 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772736.625086] 1445 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772736.940778] 657 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772737.257423] 1526 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772737.573357] 582 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772737.890436] 1501 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772738.206174] 95 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772738.522295] 728 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772738.838659] 1268 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772739.155444] 1941 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772739.471944] 683 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772739.787971] 70 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772740.104116] 1029 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772740.420481] 1347 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772740.737525] 1495 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772741.053642] 1164 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772741.370201] 1923 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772741.686894] 1441 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772742.003019] 586 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772742.318778] 1385 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772742.635751] 1529 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772742.951440] 262 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772743.267418] 126 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772743.583406] 294 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772743.899869] 25 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772744.216255] 506 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772744.533008] 1261 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772744.849075] 137 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772745.165421] 1171 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772745.482670] 1923 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772745.798793] 425 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772746.114798] 731 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772746.431110] 1469 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772746.747229] 733 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772747.063169] 99 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772747.378874] 1282 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772747.695966] 1888 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772748.012239] 254 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772748.328206] 760 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772748.643785] 1003 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772748.959534] 687 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772749.274743] 1000 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772749.590972] 1517 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772749.906654] 642 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772750.222282] 931 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772750.537986] 1348 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772750.854272] 1709 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772751.170185] 1116 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772751.486213] 933 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772751.803533] 1862 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772752.120059] 250 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772752.436323] 743 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772752.752401] 721 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772753.068848] 87 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772753.386113] 1543 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772753.702287] 958 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772754.019600] 1882 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772754.336309] 1426 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772754.653738] 1535 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772754.970822] 1737 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772755.286786] 252 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772755.604206] 1860 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772755.920795] 704 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772756.238228] 1822 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772756.554990] 1664 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772756.871189] 142 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772757.186991] 914 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772757.502726] 872 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772757.818146] 560 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772758.134950] 1932 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772758.450706] 818 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772758.766494] 1258 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772759.082369] 1056 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772759.398890] 1014 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772759.715251] 1279 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772760.031000] 1298 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772760.346728] 865 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772760.662463] 516 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772760.978396] 969 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772761.294481] 1105 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772761.610216] 356 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772761.926271] 1401 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772762.241941] 625 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772762.557773] 363 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772762.873613] 179 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772763.190508] 1831 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772763.506635] 189 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772763.822324] 355 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772764.137820] 1055 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772764.454586] 1938 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772764.770778] 1106 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772765.087624] 1563 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772765.404148] 1526 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772765.719585] 564 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772766.036067] 1429 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772766.352960] 1697 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772766.669184] 389 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772766.986631] 1833 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772767.302786] 1273 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772767.618725] 929 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772767.935158] 1141 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772768.251803] 1531 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772768.567210] 955 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772768.884221] 1675 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772769.200908] 1818 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772769.517030] 1220 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772769.833266] 956 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772770.149029] 497 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772770.464743] 136 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772770.780351] 220 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772771.097283] 1729 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772771.413471] 531 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772771.729969] 1184 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772772.045510] 43 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772772.361412] 826 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772772.679208] 1961 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772772.996428] 1519 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772773.312565] 1173 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772773.628353] 365 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772773.944123] 1442 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772774.259684] 177 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772774.575522] 655 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772774.892123] 1480 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772775.207755] 438 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772775.523361] 192 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772775.839625] 634 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772776.156765] 1836 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772776.473768] 1920 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772776.789837] 267 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772777.106752] 1744 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772777.422843] 81 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772777.738584] 1436 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772778.055114] 1735 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772778.370748] 256 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772778.686310] 1250 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772779.002223] 198 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772779.318921] 1905 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772779.635205] 1287 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772779.951523] 324 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772780.267797] 962 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772780.584829] 1486 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772780.901922] 2006 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772781.218138] 1230 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772781.534896] 1910 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772781.850067] 335 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772782.165841] 76 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772782.482007] 867 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772782.797686] 524 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772783.113838] 700 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772783.437694] 1589 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421772783.759455] 665 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421772784.089470] 1071 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772784.441884] 2000 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=147 ms +[1421772784.795876] 1633 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=149 ms +[1421772785.130650] 1162 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772785.460920] 475 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421772785.795143] 1176 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772786.111454] 1190 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772786.429656] 1677 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772786.758886] 1773 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421772787.078434] 1000 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421772787.397174] 193 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421772787.712981] 613 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772788.029517] 245 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772788.346065] 1332 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772788.662387] 912 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772788.978448] 156 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772789.294803] 429 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772789.611344] 378 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772789.927832] 541 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772790.243731] 441 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772790.559935] 839 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772790.875739] 482 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772791.191554] 920 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772791.507535] 1208 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772791.823056] 735 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772792.139106] 1162 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772792.455173] 1364 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772792.771742] 566 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772793.087679] 186 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772793.403898] 886 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772793.721210] 1624 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772794.037455] 290 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772794.353337] 227 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772794.669235] 446 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772794.986598] 1603 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772795.302604] 699 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772795.618914] 531 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772795.935396] 1323 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772796.251451] 861 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772796.567424] 1178 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772796.883541] 689 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772797.200069] 1712 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772797.516018] 457 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772797.831537] 511 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772798.147935] 1146 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772798.464230] 1204 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772798.780597] 1999 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772799.097001] 1082 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772799.412962] 335 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772799.729940] 1692 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772800.046808] 1786 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772800.362191] 711 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772800.678160] 951 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772800.994918] 1680 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772801.311220] 1704 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772801.627390] 1180 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772801.944396] 1786 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772802.260899] 1754 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772802.577400] 260 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772802.893848] 945 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772803.209568] 1256 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772803.525660] 1176 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772803.841897] 1251 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772804.158084] 972 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772804.474285] 1263 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772804.790202] 1267 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772805.107647] 2003 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772805.423886] 1351 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772805.740319] 1906 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772806.056718] 1553 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772806.373158] 1762 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772806.689358] 1391 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772807.005913] 1351 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772807.321526] 913 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772807.637070] 158 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772807.953021] 898 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772808.269004] 387 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772808.585607] 1894 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772808.902446] 1960 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772809.219072] 738 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772809.535073] 116 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772809.851954] 1843 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772810.168520] 1531 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772810.483990] 259 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772810.800046] 748 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772811.116075] 821 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772811.433147] 1637 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772811.749353] 797 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772812.065458] 1448 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772812.392749] 1030 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772812.708369] 601 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772813.024173] 1090 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772813.340990] 1900 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772813.657134] 530 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772813.975892] 1013 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772814.291668] 1046 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772814.608071] 1137 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772814.925011] 1521 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772815.240658] 412 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772815.556667] 538 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772815.872796] 1431 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772816.188783] 554 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772816.504599] 357 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772816.820545] 1107 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772817.136729] 1004 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772817.452660] 964 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772817.768429] 213 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772818.084997] 104 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772818.401403] 310 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772818.717325] 503 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772819.034362] 1573 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772819.349897] 841 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772819.665734] 269 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772819.981761] 896 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772820.297901] 750 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772820.613502] 213 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772820.929954] 1808 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772821.245356] 659 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772821.561307] 1310 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772821.876971] 973 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772822.193536] 1867 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772822.509578] 1276 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772822.825498] 1357 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772823.142162] 1507 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772823.458002] 1216 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772823.774750] 1554 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772824.090731] 675 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772824.406199] 186 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772824.722317] 1158 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772825.038131] 1175 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772825.353751] 1273 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772825.670672] 1824 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772825.986344] 39 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772826.302120] 245 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772826.619334] 1597 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772826.934798] 712 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772827.251660] 1636 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772827.566963] 413 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772827.882653] 1210 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772828.198487] 634 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772828.514253] 35 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772828.829854] 1157 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772829.145856] 1396 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772829.462039] 775 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772829.779021] 1833 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772830.094757] 1374 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772830.411154] 662 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772830.726661] 329 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772831.042343] 688 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772831.359240] 1522 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772831.675028] 131 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772831.991434] 326 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772832.308057] 1762 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772832.623787] 310 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772832.940980] 1529 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772833.256574] 382 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772833.573742] 1836 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772833.889618] 849 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772834.205129] 536 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772834.521837] 1802 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772834.838353] 1567 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772835.154318] 1226 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772835.471417] 1708 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772835.787175] 1203 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772836.102965] 1158 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772836.422406] 1793 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421772836.751884] 1637 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772837.079576] 1328 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421772837.429316] 1674 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=145 ms +[1421772837.783187] 1776 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=150 ms +[1421772838.121271] 1350 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421772838.457623] 829 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772838.793799] 1451 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772839.109837] 1460 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772839.425465] 1199 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772839.744228] 185 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421772840.067068] 805 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421772840.394927] 605 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421772840.746546] 1875 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=147 ms +[1421772841.062128] 624 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772841.395948] 149 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772841.728605] 1499 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421772842.067507] 386 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421772842.401633] 1505 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772842.716985] 538 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772843.032747] 599 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772843.348567] 368 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772843.663941] 954 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772843.979917] 1310 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772844.295722] 1167 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772844.625531] 1795 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772844.942817] 1640 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772845.258783] 1004 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772845.574754] 1031 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772845.890321] 848 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772846.205995] 669 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772846.521925] 1260 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772846.836990] 731 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772847.152060] 1372 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772847.468275] 1505 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772847.783678] 1155 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772848.098970] 1140 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772848.414482] 1324 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772848.729390] 879 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772849.044074] 716 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772849.360927] 1775 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772849.676864] 308 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772849.992281] 354 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772850.307846] 1064 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772850.623210] 1463 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772850.938589] 573 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772851.253928] 530 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772851.568939] 362 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772851.884355] 511 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772852.199414] 1409 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772852.514977] 1366 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772852.830383] 1424 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772853.145339] 565 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772853.461242] 548 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772853.777243] 1519 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772854.092481] 525 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772854.407756] 498 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772854.723088] 287 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772855.038728] 263 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772855.356869] 553 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772855.672013] 465 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772855.987043] 153 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772856.302319] 574 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772856.618294] 1610 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772856.933911] 1388 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772857.249973] 1885 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772857.564953] 538 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772857.881598] 1606 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772858.197135] 772 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772858.512636] 1373 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772858.827555] 70 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772859.143126] 250 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772859.458318] 325 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772859.773540] 950 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772860.088612] 490 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772860.404148] 452 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772860.720107] 1855 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772861.036014] 1726 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772861.352208] 1832 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772861.668321] 1361 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772861.984846] 1795 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772862.300184] 229 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772862.616005] 671 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772862.932600] 1619 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772863.248236] 561 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772863.563916] 37 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772863.879390] 296 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772864.195828] 1957 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772864.510940] 451 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772864.825910] 17 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421772865.141018] 1273 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772865.456227] 597 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772865.770859] 112 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772866.085682] 504 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772866.400965] 1125 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772866.716205] 431 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772867.032609] 1505 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772867.348306] 915 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772867.663793] 258 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772867.978855] 145 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772868.294194] 996 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772868.609079] 570 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772868.924756] 1152 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772869.240841] 390 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772869.556314] 1081 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772869.872012] 1457 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772870.187283] 930 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772870.502763] 861 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772870.817748] 83 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772871.132639] 167 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772871.447752] 434 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772871.764162] 1838 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772872.080523] 1954 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772872.395247] 101 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772872.711462] 1797 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772873.027593] 357 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772873.343185] 815 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772873.660087] 1567 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772873.975799] 830 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772874.291709] 900 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772874.607329] 333 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772874.922495] 31 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772875.239095] 1728 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772875.554546] 696 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772875.869817] 792 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772876.185677] 1542 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772876.500812] 1450 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772876.816035] 1464 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772877.131180] 1221 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772877.446521] 1401 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772877.761517] 306 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772878.076447] 522 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772878.391436] 444 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772878.707003] 1154 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772879.022132] 367 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772879.337101] 276 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772879.652946] 1888 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772879.968287] 1114 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772880.283654] 245 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772880.599017] 721 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772880.915851] 1278 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772881.231446] 633 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772881.546033] 112 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772881.861894] 1505 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772882.177086] 1192 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772882.492101] 253 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772882.806925] 184 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772883.122021] 594 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772883.436935] 750 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772883.752211] 1449 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772884.067455] 300 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772884.382588] 530 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772884.698025] 878 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772885.013213] 295 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772885.328575] 1183 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772885.643767] 50 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772885.961265] 200 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772886.275932] 496 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772886.591026] 730 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772886.907684] 1659 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772887.223046] 1261 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772887.539266] 1613 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772887.854152] 317 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772888.169810] 1067 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772888.485038] 1338 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772888.800546] 454 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772889.115223] 108 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772889.430818] 1405 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772889.745827] 984 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772890.063020] 1890 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772890.379529] 1627 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772890.694841] 1434 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772891.010034] 556 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772891.325656] 1182 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772891.641887] 1596 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772891.956933] 395 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772892.272585] 1321 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772892.587787] 1275 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772892.903651] 591 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772893.219140] 254 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772893.534752] 175 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772893.851360] 1662 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772894.166472] 444 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772894.482153] 1334 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772894.797020] 1000 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772895.111885] 757 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772895.427897] 1646 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772895.742797] 1104 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772896.058813] 622 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772896.374339] 1366 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772896.691512] 1687 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772897.007882] 1839 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772897.323706] 836 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772897.640005] 1880 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772897.955086] 98 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772898.271781] 1622 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772898.586989] 136 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772898.906425] 1514 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421772899.234133] 1934 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421772899.562989] 360 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421772899.894855] 1061 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772900.250379] 1533 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=150 ms +[1421772900.586045] 830 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421772900.921220] 228 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421772901.253281] 839 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421772901.586943] 1438 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772901.944589] 1798 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=153 ms +[1421772902.278444] 929 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772902.615077] 580 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772902.930415] 1063 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772903.245559] 784 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772903.561761] 1037 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772903.884395] 1193 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421772904.223443] 1639 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=135 ms +[1421772904.572494] 1562 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=145 ms +[1421772904.924003] 1766 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=144 ms +[1421772905.259071] 96 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421772905.593553] 1104 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772905.926933] 1584 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421772906.282036] 1903 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=150 ms +[1421772906.635840] 1927 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=149 ms +[1421772906.969680] 1126 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772907.303632] 830 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772907.633121] 1215 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772907.949837] 1770 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772908.266029] 1704 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772908.582694] 201 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772908.915601] 1874 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421772909.257632] 1651 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=138 ms +[1421772909.592927] 1080 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421772909.923809] 1117 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421772910.255052] 144 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421772910.589791] 470 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772910.919669] 1137 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772911.272351] 1657 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=148 ms +[1421772911.606898] 944 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772911.960496] 1941 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=148 ms +[1421772912.295529] 386 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772912.629922] 1539 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772912.945962] 1082 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772913.261670] 802 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772913.583512] 408 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421772913.924182] 1613 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=136 ms +[1421772914.252375] 15 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421772914.585690] 910 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772914.915405] 274 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772915.263799] 1838 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=144 ms +[1421772915.593651] 1233 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421772915.927301] 1393 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772916.262264] 768 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772916.596754] 1107 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772916.931424] 1050 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772917.246424] 1087 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772917.562694] 1472 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772917.878527] 526 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772918.194900] 1781 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772918.510811] 1381 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772918.826786] 1900 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772919.141927] 782 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772919.464645] 1976 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421772919.789342] 1395 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421772920.116364] 161 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421772920.447376] 467 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421772920.779509] 48 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772921.116730] 1127 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772921.478022] 1922 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=156 ms +[1421772921.795233] 1556 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772922.111187] 1245 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772922.428378] 1560 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772922.744282] 983 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772923.059971] 650 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772923.375132] 879 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772923.690553] 521 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772924.007246] 1677 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772924.322917] 900 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772924.638458] 284 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772924.954013] 1210 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772925.269740] 1278 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772925.585380] 949 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772925.901376] 443 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772926.216782] 338 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772926.538062] 1574 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421772926.860030] 64 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421772927.200199] 1816 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=136 ms +[1421772927.531774] 500 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772927.848889] 1850 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772928.165123] 1986 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772928.481245] 1806 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772928.803946] 1481 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421772929.124422] 192 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421772929.451264] 678 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421772929.782647] 342 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772930.120365] 1420 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421772930.453480] 1435 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421772930.794183] 271 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=136 ms +[1421772931.126765] 1376 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421772931.464551] 425 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421772931.824578] 1990 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=155 ms +[1421772932.161388] 601 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772932.521657] 1914 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=155 ms +[1421772932.837163] 1334 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772933.152847] 663 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772933.468616] 390 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772933.798194] 1872 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421772934.142492] 1828 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=139 ms +[1421772934.485794] 1714 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=139 ms +[1421772934.817731] 945 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772935.152440] 852 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772935.507633] 1970 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=150 ms +[1421772935.842730] 1378 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772936.160177] 406 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772936.475099] 623 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772936.790155] 719 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772937.105515] 1200 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772937.420741] 1435 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772937.736326] 1129 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772938.052035] 1409 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772938.369443] 194 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772938.692243] 1345 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421772939.019914] 511 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421772939.335780] 1680 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772939.652260] 1908 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772939.968331] 1064 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772940.288889] 884 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421772940.614712] 269 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421772940.947617] 1052 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772941.282261] 664 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772941.618803] 108 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772941.956110] 284 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421772942.289907] 360 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772942.623149] 391 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421772942.955029] 910 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421772943.305798] 1588 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=146 ms +[1421772943.643017] 1082 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772943.974374] 1475 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772944.290196] 1146 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772944.611096] 1528 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421772944.931435] 1278 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421772945.266931] 1616 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421772945.617479] 1803 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=146 ms +[1421772945.947249] 820 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772946.285110] 1378 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421772946.622498] 488 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772946.957038] 848 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421772947.288452] 851 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772947.645993] 1744 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=153 ms +[1421772947.987657] 1581 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=137 ms +[1421772948.323805] 1095 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772948.639463] 401 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772948.954731] 973 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772949.269697] 654 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772949.587040] 1168 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421772949.909655] 523 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421772950.232095] 293 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421772950.559690] 514 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421772950.917481] 1625 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=154 ms +[1421772951.246403] 320 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772951.573803] 531 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421772951.902382] 1466 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421772952.237433] 291 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421772952.573086] 137 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421772952.902918] 81 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421772953.232095] 1344 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421772953.546924] 148 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772953.862433] 1056 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772954.180350] 371 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421772954.503270] 1465 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421772954.828197] 1063 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421772955.159324] 238 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772955.490615] 126 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772955.822480] 328 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772956.156258] 1726 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772956.489082] 312 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772956.827220] 538 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421772957.164064] 1164 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772957.494463] 1233 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421772957.829961] 884 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421772958.165988] 815 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772958.482111] 1713 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772958.797760] 800 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772959.117407] 314 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421772959.439920] 1053 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421772959.764525] 1014 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421772960.096619] 414 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421772960.433736] 11 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421772960.765344] 1861 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772961.097017] 1425 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772961.450986] 1722 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=149 ms +[1421772961.787626] 329 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772962.144082] 1482 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=151 ms +[1421772962.475415] 863 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772962.809437] 1338 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772963.124727] 1395 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772963.440651] 1502 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772963.765307] 1629 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421772964.089122] 112 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421772964.430676] 1869 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=137 ms +[1421772964.764176] 719 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772965.096389] 1426 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421772965.458933] 1988 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=158 ms +[1421772965.787774] 644 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421772966.103065] 1024 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772966.418447] 1470 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772966.734084] 1216 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772967.049298] 771 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772967.365548] 1570 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772967.682099] 1536 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772967.997746] 599 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772968.313236] 1270 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772968.628447] 713 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772968.943429] 80 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772969.259366] 806 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772969.575850] 1801 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772969.890878] 321 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772970.205804] 485 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772970.521179] 538 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772970.836398] 46 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772971.152037] 1257 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772971.467509] 1337 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772971.782589] 786 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772972.097880] 1437 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772972.412953] 538 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772982.746254] 100 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421772983.073215] 35 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421772983.404316] 1300 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772983.752034] 1574 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=143 ms +[1421772984.085354] 958 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421772984.422640] 102 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772984.764414] 1076 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=137 ms +[1421772985.101297] 33 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772985.433280] 288 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772985.768258] 53 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421772986.100978] 368 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421772986.415848] 638 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772986.732000] 1223 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772987.052644] 1218 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421772987.389107] 1632 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421772987.716697] 1029 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421772988.067948] 1671 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=146 ms +[1421772988.399862] 393 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421772988.723431] 910 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421772989.064353] 398 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=137 ms +[1421772989.379537] 630 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772989.694716] 165 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772990.010129] 367 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772990.325847] 1321 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772990.641223] 1168 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772990.956595] 503 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772991.273871] 1742 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772991.589336] 83 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772991.905522] 321 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772992.221807] 1697 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772992.537273] 941 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772992.852398] 733 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772993.168452] 1759 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772993.484079] 261 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772993.799675] 554 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772994.116422] 1777 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772994.431731] 721 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772994.747782] 1929 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772995.063992] 1584 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772995.380339] 1759 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772995.696023] 1132 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772996.012592] 1546 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772996.328848] 1861 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772996.645589] 1495 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772996.961394] 1178 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772997.277035] 787 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772997.592685] 726 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772997.908510] 555 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772998.224023] 481 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772998.539803] 147 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421772998.855866] 250 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772999.172983] 1912 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421772999.488455] 393 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421772999.804781] 1688 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773000.121144] 1801 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773000.436409] 716 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773000.753035] 1816 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773001.069084] 1786 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773001.384022] 566 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773001.699519] 639 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773002.014908] 761 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773002.331571] 1987 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773002.646756] 203 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773002.963252] 1487 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773003.278478] 418 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773003.593824] 320 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773003.909808] 1384 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773004.225143] 779 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773004.540858] 928 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773004.856650] 869 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773005.172648] 1579 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773005.488295] 1341 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773005.803655] 1002 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773006.118734] 1387 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773006.433714] 1010 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773006.749216] 832 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773007.065413] 1686 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773007.381385] 1553 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773007.696076] 653 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773008.011083] 1144 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773008.326984] 1806 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773008.642197] 1445 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773008.957162] 307 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773009.272099] 1461 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773009.587937] 1853 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773009.902959] 658 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773010.218782] 1828 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773010.533765] 315 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773010.849022] 677 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773011.163920] 1204 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773011.478646] 189 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773011.794197] 595 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773012.109279] 693 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773012.424167] 1070 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773012.739627] 730 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773013.056053] 1662 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773013.371503] 893 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773013.686670] 351 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773014.001346] 271 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773014.316674] 826 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773014.631875] 1247 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773014.946823] 1423 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773015.262974] 1977 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773015.578532] 1477 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773015.893518] 1056 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773016.208363] 48 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773016.524715] 1512 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773016.839538] 638 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773017.155918] 1944 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773017.471999] 1863 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773017.787259] 1071 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773018.102304] 606 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773018.418602] 1687 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773018.733477] 269 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773019.048605] 269 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773019.364088] 1232 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773019.680377] 1670 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773019.995817] 1427 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773020.311147] 905 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773020.628022] 1590 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773020.943414] 728 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773021.258283] 33 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773021.573189] 628 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773021.888372] 635 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773022.203522] 589 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773022.518756] 221 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773022.834919] 1671 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773023.151181] 1580 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773023.466653] 296 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773023.782121] 1079 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773024.097319] 1248 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773024.413326] 1532 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773024.728221] 910 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773025.042962] 427 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773025.359341] 1590 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773025.674565] 629 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773025.989616] 1169 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773026.305331] 742 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773026.621524] 925 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773026.936740] 380 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773027.251625] 178 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773027.566634] 875 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773027.881753] 1393 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773028.196653] 597 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773028.511891] 1347 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773028.827153] 152 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773029.143401] 1433 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773029.459714] 1896 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773029.774901] 1193 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773030.090520] 1093 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773030.405620] 622 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773030.720441] 446 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773031.035051] 36 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773031.351256] 1542 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773031.666688] 22 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421773031.982066] 995 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773032.297120] 386 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773032.612109] 1031 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773032.927287] 1463 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773033.243344] 1760 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773033.560020] 1949 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773033.875275] 990 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773034.190250] 341 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773034.506195] 1348 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773034.822557] 1713 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773035.137875] 61 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773035.453286] 755 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773035.769214] 1357 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773036.084365] 1123 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773036.398988] 184 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773036.714273] 1372 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773037.029200] 828 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773037.344324] 527 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773037.659536] 1437 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773037.974920] 134 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773038.290255] 1255 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773038.605420] 1344 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773038.921694] 1670 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773039.237989] 1786 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773039.553534] 982 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773039.870071] 1767 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773040.185819] 1109 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773040.501564] 552 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773040.816878] 335 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773041.131665] 308 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773041.447721] 1091 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773041.763533] 1725 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773042.079603] 1768 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773042.394700] 76 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773042.710494] 1567 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773043.026037] 1410 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773043.341221] 589 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773043.656100] 425 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773043.971252] 891 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773044.286378] 1251 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773044.601413] 677 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773044.917254] 1267 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773045.233405] 981 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773045.548962] 1315 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773045.863888] 332 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773046.178851] 932 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773046.495325] 1764 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773046.811026] 775 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773047.127456] 1820 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773047.443868] 1373 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773047.763906] 247 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421773048.099757] 1654 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421773048.427347] 763 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421773048.742610] 1346 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773049.057979] 879 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773049.374352] 141 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773049.696520] 112 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421773050.023656] 145 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421773050.357187] 1119 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421773050.710559] 1523 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=149 ms +[1421773051.039642] 1357 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421773051.372684] 1295 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421773051.706171] 1169 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421773052.072151] 1863 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=162 ms +[1421773052.422310] 1846 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=146 ms +[1421773052.754478] 1324 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421773053.114995] 1701 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=156 ms +[1421773053.448317] 934 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421773053.763094] 618 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773054.080145] 497 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421773054.402242] 1464 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421773054.725362] 1061 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421773055.051632] 164 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421773055.408137] 1655 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=152 ms +[1421773055.745077] 549 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421773056.081089] 540 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421773056.418833] 585 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421773056.786415] 1539 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=163 ms +[1421773057.121094] 630 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421773057.450787] 369 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421773057.803874] 1496 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=149 ms +[1421773058.141169] 1284 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421773058.456767] 1279 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773058.771858] 1386 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773059.086839] 993 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773059.401517] 329 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773059.717387] 1753 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773060.033134] 1858 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773060.348712] 1501 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773060.663567] 688 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773060.980222] 1854 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773061.295064] 467 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773061.609734] 92 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773061.925480] 1593 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773062.241096] 1563 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773062.556114] 1218 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773062.871333] 1361 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773063.187643] 1494 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773063.502828] 485 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773063.818231] 833 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773064.133094] 178 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773064.448303] 359 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773064.764798] 1861 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773065.080247] 827 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773065.395336] 573 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773065.710679] 705 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773066.025834] 435 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773066.341019] 979 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773066.656661] 1431 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773066.973255] 1868 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773067.288982] 1126 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773067.604371] 435 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773067.920836] 1498 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773068.236128] 1204 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773068.551969] 877 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773068.867869] 1471 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773069.183207] 1190 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773069.499658] 935 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773069.815778] 93 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773070.131821] 1906 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773070.446699] 145 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773070.761708] 62 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773071.078008] 1489 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773071.393166] 1463 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773071.708361] 1106 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773072.024329] 1723 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773072.339242] 877 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773072.654912] 352 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773072.969886] 384 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773073.285572] 1088 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773073.601402] 1361 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773073.917198] 857 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773074.233989] 1540 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773074.550176] 1693 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773074.865782] 707 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773075.182049] 1584 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773075.497408] 507 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773075.812686] 196 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773076.128354] 1461 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773076.444678] 1657 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773076.759982] 76 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773077.075225] 256 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773077.390317] 1032 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773077.706155] 1536 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773078.020982] 33 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773078.335992] 1125 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773078.651480] 1258 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773078.967989] 1972 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773079.283790] 529 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773079.599477] 829 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773079.915768] 1569 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773080.230780] 566 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773080.545925] 454 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773080.861067] 523 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773081.176477] 1457 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773081.492010] 247 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773081.807247] 843 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773082.122872] 566 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773082.438088] 666 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773082.753999] 1497 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773083.069321] 640 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773083.384628] 812 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773083.701242] 1694 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773084.017626] 1601 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773084.333897] 1984 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773084.648993] 1084 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773084.963500] 140 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773085.279841] 1971 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773085.595063] 210 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773085.910530] 1358 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773086.225809] 1325 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773086.542043] 1818 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773086.857182] 1412 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773087.172358] 820 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773087.488456] 1441 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773087.804120] 1708 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773088.120113] 1789 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773088.434837] 166 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773088.749864] 805 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773089.064867] 1078 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773089.380004] 1211 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773089.694777] 391 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773090.009519] 199 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773090.324557] 640 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773090.641115] 1842 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773090.963287] 1703 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421773091.285724] 1409 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421773091.608535] 1353 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421773091.923498] 809 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773092.268864] 1536 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=141 ms +[1421773092.601989] 171 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421773092.942522] 681 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=136 ms +[1421773093.275460] 1121 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421773093.617097] 855 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=137 ms +[1421773093.976611] 1560 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=155 ms +[1421773094.310137] 314 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421773094.624994] 888 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773094.939615] 229 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773095.258432] 1051 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421773095.579132] 807 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421773095.907983] 1117 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421773096.224196] 1323 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773096.539639] 1410 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773096.854537] 317 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773097.169715] 1167 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773097.485145] 1013 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773097.801437] 1849 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773098.118131] 1770 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773098.434201] 1343 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773098.749562] 921 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773099.064848] 780 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773099.380260] 1284 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773099.695470] 301 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773100.011090] 573 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773100.326991] 1631 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773100.643152] 1969 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773100.958878] 1646 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773101.273709] 122 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773101.588969] 965 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773101.904130] 293 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773102.219051] 45 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773102.534588] 896 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773102.850826] 1594 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773103.166038] 1438 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773103.481579] 1212 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773103.797185] 1464 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773104.112576] 334 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773104.428848] 1599 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773104.744135] 769 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773105.059568] 1131 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773105.375061] 487 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773105.690365] 306 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773106.005786] 602 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773106.321882] 1931 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773106.637084] 842 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773106.952122] 388 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773107.267041] 365 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773107.583227] 1790 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773107.898619] 1400 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773108.214090] 1394 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773108.529424] 159 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773108.844891] 745 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773109.160253] 897 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773109.476792] 1652 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773109.792147] 945 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773110.106968] 356 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773110.421933] 1326 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773110.736765] 184 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773111.052532] 1683 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773111.368021] 1228 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773111.683026] 554 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773111.998626] 577 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773112.314246] 197 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773112.630467] 1908 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773112.945672] 712 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773113.271513] 324 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773113.586787] 1126 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773113.902618] 1486 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773114.217858] 562 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773114.533203] 682 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773114.848457] 382 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773115.164954] 2006 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773115.480317] 716 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773115.796150] 972 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773116.111409] 102 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773116.426686] 248 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773116.742011] 389 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773117.057305] 295 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773117.373400] 1890 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773117.688724] 645 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773118.004334] 1391 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773118.320802] 1536 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773118.636119] 76 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773118.952641] 1903 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773119.267827] 972 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773119.584038] 1574 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773119.899752] 1391 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773120.215124] 495 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773120.530804] 576 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773120.846832] 1981 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773121.162052] 988 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773121.478121] 1686 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773121.793247] 830 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773122.108913] 857 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773122.424499] 628 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773122.740029] 824 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773123.055562] 389 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773123.370812] 613 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773123.686078] 779 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773124.001225] 1459 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773124.316728] 1102 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773124.632980] 1989 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773124.948648] 1474 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773125.265353] 1928 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773125.580822] 1373 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773125.896863] 1685 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773126.212238] 539 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773126.527497] 32 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773126.842761] 1026 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773127.158574] 1234 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773127.474681] 1528 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773127.789652] 29 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773128.105202] 641 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773128.420577] 1329 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773128.736608] 1498 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773129.052268] 1619 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773129.368011] 1384 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773129.683271] 766 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773129.998474] 980 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773130.314050] 1177 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773130.630070] 2006 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773130.946791] 1918 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773131.262754] 1719 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773131.578110] 250 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773131.893014] 1220 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773132.208130] 1281 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773132.523879] 1488 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773132.839733] 1634 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773133.154970] 1168 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773133.470864] 1838 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773133.786729] 1719 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773134.101587] 363 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773134.416815] 1433 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773134.732753] 1928 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773135.047751] 59 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773135.362503] 1210 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773135.678600] 1677 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773135.994574] 1258 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773136.309826] 1161 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773136.624843] 603 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773136.940241] 665 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773137.255359] 267 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773137.570571] 1354 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773137.886949] 1876 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773138.201991] 340 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773138.518054] 1631 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773138.833780] 1233 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773139.148948] 1239 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773139.463859] 1027 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773139.779932] 1751 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773140.095839] 1817 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773140.410950] 748 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773140.725927] 43 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773141.042150] 1615 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773141.357122] 641 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773141.673085] 1894 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773141.988476] 1383 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773142.304725] 1495 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773142.619420] 566 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773142.935458] 1846 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773143.251224] 1419 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773143.567388] 1850 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773143.882701] 1386 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773144.198997] 1953 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773144.514023] 425 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773144.829632] 546 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773145.146063] 2006 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773145.462495] 1573 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773145.777892] 196 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773146.093257] 1105 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773146.408892] 390 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773146.724013] 1293 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773147.038742] 53 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773147.354182] 779 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773147.669351] 24 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773147.984636] 365 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773148.301250] 1801 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773148.617503] 1687 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773148.932359] 340 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773149.248292] 1674 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773149.563394] 1312 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773149.878430] 442 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773150.193529] 571 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773150.509364] 1010 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773150.825676] 1773 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773151.140729] 612 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773151.455851] 365 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773151.771142] 1452 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773152.086376] 1250 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773152.401170] 277 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773152.716296] 698 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773153.031425] 350 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773153.348067] 1531 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773153.663744] 1363 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773153.979227] 1358 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773154.295542] 1872 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773154.611944] 1657 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773154.927934] 433 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773155.244752] 1531 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773155.560346] 885 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773155.875983] 1075 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773156.192290] 1778 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773156.507448] 433 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773156.822469] 810 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773157.138191] 366 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773157.453581] 1106 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773157.770135] 1604 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773158.085544] 508 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773158.400827] 690 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773158.715868] 1038 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773159.032072] 1780 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773159.346983] 805 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773159.662340] 1056 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773159.985324] 461 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421773160.301242] 1324 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773160.617649] 1570 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773160.933456] 1076 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773161.248832] 1062 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773161.564876] 1662 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773161.881052] 1363 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773162.196256] 721 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773162.516665] 119 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421773162.841905] 118 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421773163.174289] 504 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421773163.504003] 514 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421773163.863520] 1828 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=155 ms +[1421773164.199770] 653 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421773164.535071] 453 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421773164.883870] 1746 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=144 ms +[1421773165.199148] 945 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773165.515812] 1625 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773165.831780] 39 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773166.154067] 45 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421773166.494935] 1869 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=136 ms +[1421773166.826586] 375 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421773167.166376] 562 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=135 ms +[1421773167.529104] 1543 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=158 ms +[1421773167.887447] 1748 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=154 ms +[1421773168.217578] 913 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421773168.545852] 1350 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421773168.873849] 1097 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421773169.205178] 478 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421773169.538915] 793 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421773169.875491] 1539 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421773170.190874] 484 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773170.505891] 395 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773170.831205] 1898 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=121 ms +[1421773171.146282] 43 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773171.461641] 1357 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773171.776925] 1102 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773172.093355] 1947 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773172.408636] 1095 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773172.723736] 1142 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773173.039484] 1633 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773173.354411] 905 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773173.669524] 870 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773173.985028] 172 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773174.300686] 1216 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773174.616515] 1702 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773174.932073] 801 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773175.246845] 204 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773175.563387] 1938 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773175.878985] 718 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773176.194382] 1459 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773176.510331] 1219 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773176.825732] 695 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773177.140845] 807 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773177.456287] 41 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773177.771639] 1064 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773178.086822] 22 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421773178.402650] 1067 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773178.719645] 1915 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773179.035170] 575 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773179.350904] 1082 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773179.667409] 1802 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773179.982565] 503 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773180.298958] 1523 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773180.614250] 404 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773180.929443] 1424 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773181.244558] 710 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773181.561091] 385 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773181.876768] 1297 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773182.192355] 457 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773182.507473] 24 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773182.822980] 744 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773183.138105] 435 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773183.453284] 548 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773183.768464] 23 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421773184.083454] 262 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773184.399011] 1361 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773184.714342] 699 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773185.029567] 782 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773185.344780] 54 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773185.660310] 609 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773185.975814] 572 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773186.291252] 871 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773186.607885] 1655 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773186.922831] 157 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773187.239078] 1564 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773187.553944] 192 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773187.870452] 1994 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773188.185711] 80 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773188.501041] 306 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773188.817192] 1891 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773189.132621] 783 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773189.448132] 781 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773189.765187] 1906 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773190.081174] 603 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773190.397547] 1659 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773190.712665] 872 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773191.027825] 278 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773191.343149] 393 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773191.658333] 361 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773191.973738] 978 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773192.289257] 682 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773192.605153] 1556 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773192.921725] 1922 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773193.236501] 968 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773193.551854] 955 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773193.867719] 1676 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773194.182639] 302 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773194.497683] 616 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773194.812989] 937 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773195.128039] 249 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773195.444492] 1890 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773195.759608] 892 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773196.074556] 212 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773196.389779] 1228 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773196.704799] 787 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773197.019967] 599 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773197.335171] 137 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773197.650958] 1364 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773197.965924] 702 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773198.281086] 359 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773198.596236] 21 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421773198.911420] 166 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773199.226301] 451 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773199.541334] 458 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773199.856330] 371 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773200.171281] 864 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773200.486286] 570 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773200.801347] 683 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773201.117309] 1582 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773201.432351] 1078 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773201.747972] 1517 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773202.062820] 447 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773202.378910] 1923 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773202.694361] 878 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773203.010265] 1685 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773203.325645] 951 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773203.640758] 959 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773203.955554] 396 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773204.271338] 541 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773204.587397] 1368 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773204.902343] 67 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773205.217812] 1500 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773205.533325] 1253 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773205.848596] 381 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773206.163581] 619 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773206.478550] 780 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773206.795084] 1519 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773207.110160] 562 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773207.430608] 1938 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421773207.759662] 1970 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421773208.098625] 1569 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421773208.427791] 444 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421773208.787656] 1771 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=155 ms +[1421773209.142048] 1584 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=150 ms +[1421773209.478703] 307 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421773209.814018] 733 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421773210.152700] 1231 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=135 ms +[1421773210.483378] 634 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421773210.798371] 969 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773211.114389] 1421 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773211.436697] 1481 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421773211.759005] 723 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421773212.104415] 1841 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=141 ms +[1421773212.430160] 833 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=121 ms +[1421773212.793524] 1579 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=159 ms +[1421773213.108614] 995 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773213.423688] 453 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773213.739101] 696 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773214.055024] 1868 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773214.369721] 443 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773214.685116] 1269 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773215.000860] 1077 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773215.317642] 1910 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773215.633012] 1065 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773215.949025] 1976 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773216.264008] 343 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773216.579558] 605 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773216.894725] 851 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773217.210635] 1682 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773217.526715] 1733 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773217.841602] 1223 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773218.155902] 209 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773218.470708] 388 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773218.785443] 930 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773219.100561] 1010 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773219.415454] 1271 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773219.730444] 423 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773220.045906] 409 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773220.361302] 360 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773220.676533] 1071 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773220.991877] 1266 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773221.306743] 694 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773221.621735] 1281 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773221.936374] 290 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773222.251419] 1239 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773222.566926] 1403 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773222.881570] 354 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773223.197553] 1950 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773223.512224] 198 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773223.827576] 1398 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773224.143839] 1918 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773224.460267] 1676 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773224.775949] 1441 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773225.092075] 1762 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773225.408137] 1896 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773225.723860] 1457 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773226.039169] 1104 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773226.355831] 1983 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773226.671959] 1172 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773226.988595] 1589 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773227.304138] 767 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773227.620202] 1542 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773227.934971] 56 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773228.250788] 1217 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773228.566314] 687 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773228.882828] 1608 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773229.197867] 1209 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773229.513184] 1434 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773229.827898] 266 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773230.143277] 540 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773230.459417] 1510 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773230.775118] 793 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773231.090669] 1474 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773231.406411] 1419 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773231.721781] 1257 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773232.036568] 546 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773232.352230] 1018 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773232.668835] 1822 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773232.984854] 1508 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773233.299832] 795 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773233.614675] 52 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773233.929724] 57 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773234.244776] 341 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773234.560971] 1974 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773234.876113] 1113 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773235.191171] 757 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773235.506883] 1046 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773235.822579] 612 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773236.139006] 1696 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773236.454930] 1183 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773236.771124] 1443 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773237.086016] 74 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773237.401034] 732 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773237.717646] 1845 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773238.033867] 1346 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773238.350534] 1963 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773238.667181] 1616 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773238.982979] 442 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773239.299637] 1706 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773239.616711] 1879 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773239.932490] 467 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773240.249140] 1940 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773240.564544] 641 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773240.880123] 689 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773241.195081] 321 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773241.510948] 1231 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773241.827150] 617 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773242.142621] 991 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773242.458566] 1508 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773242.774590] 1518 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773243.090764] 1728 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773243.406704] 1641 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773243.722730] 847 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773244.037609] 174 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773244.352819] 1436 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773244.667732] 963 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773244.982520] 798 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773245.297578] 110 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773245.612591] 821 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773245.927554] 709 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773246.243978] 1681 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773246.560039] 1143 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773246.875316] 314 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773247.190602] 576 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773247.505931] 1367 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773247.820962] 1348 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773248.136107] 1060 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773248.451459] 986 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773248.767999] 1824 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773249.083083] 12 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421773249.398446] 480 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773249.714409] 1790 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773250.029532] 1341 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773250.345959] 1836 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773250.660725] 201 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773250.976678] 1875 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773251.291669] 459 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773251.606871] 303 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773251.922084] 208 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773252.237757] 1482 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773252.552476] 469 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773252.867553] 487 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773253.182470] 1411 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773253.497625] 191 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773253.812113] 196 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773254.127124] 751 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773254.443510] 1916 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773254.758291] 576 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773255.073075] 535 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773255.388846] 289 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773255.704336] 992 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773256.019499] 562 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773256.335229] 1781 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773256.650765] 1340 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773256.966710] 1523 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773257.282961] 1498 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773257.598002] 965 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773257.913657] 1623 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773258.229363] 1953 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773258.544814] 467 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773258.860012] 722 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773259.174725] 536 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773259.490299] 105 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773259.806202] 1601 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773260.121537] 1367 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773260.438648] 1513 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773260.754662] 1973 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773261.070524] 1485 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773261.387052] 1839 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773261.702271] 1398 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773262.017164] 730 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773262.333241] 1856 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773262.650589] 1658 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421773262.974336] 1544 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421773263.296093] 481 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421773263.625702] 10 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421773263.958872] 585 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421773264.294579] 1312 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421773264.622951] 273 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421773264.938881] 1512 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773265.254444] 974 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773265.570680] 1522 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773265.887166] 895 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773266.211505] 1204 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421773266.534180] 1409 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421773266.877993] 1799 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=139 ms +[1421773267.242567] 1629 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=160 ms +[1421773267.583603] 335 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=136 ms +[1421773267.938251] 1894 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=150 ms +[1421773268.274546] 367 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421773268.610496] 924 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421773268.946034] 1326 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421773269.284472] 815 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421773269.641426] 1714 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=152 ms +[1421773269.956719] 856 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773270.273214] 1830 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773270.589605] 684 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773270.910329] 1435 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421773271.250073] 1556 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=135 ms +[1421773271.592309] 1630 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=138 ms +[1421773271.946156] 1976 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=149 ms +[1421773272.276890] 250 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421773272.631354] 1539 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=149 ms +[1421773272.968888] 1354 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421773273.302178] 991 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421773273.638070] 573 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421773273.974563] 992 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421773274.312298] 963 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421773274.633903] 367 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421773274.949649] 1294 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773275.266608] 839 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773275.590900] 1796 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421773275.906750] 1480 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773276.222127] 139 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773276.537013] 679 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773276.851969] 786 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773277.166813] 174 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773277.481882] 308 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773277.797213] 1309 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773278.112584] 983 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773278.427902] 972 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773278.743612] 1247 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773279.059109] 580 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773279.374389] 513 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773279.690502] 1507 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773280.005181] 312 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773280.320629] 1054 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773280.636871] 1763 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773280.952251] 440 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773281.267185] 586 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773281.582445] 13 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421773281.898195] 1337 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773282.213402] 757 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773282.528470] 73 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773282.843704] 1100 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773283.158904] 318 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773283.474931] 1010 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773283.791249] 1620 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773284.106952] 1690 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773284.423600] 1660 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773284.739608] 1942 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773285.055616] 1707 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773285.370742] 671 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773285.687214] 1643 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773286.003146] 2003 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773286.318253] 487 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773286.633194] 1264 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773286.948348] 261 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773287.264513] 1605 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773287.579732] 393 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773287.894984] 76 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773288.211020] 207 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773288.526586] 598 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773288.842544] 1507 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773289.157585] 417 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773289.473702] 1573 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773289.789024] 1385 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773290.104919] 1886 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773290.419855] 556 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773290.735225] 838 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773291.050270] 962 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773291.365103] 664 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773291.681102] 2000 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773291.996806] 1373 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773292.312203] 561 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773292.627835] 484 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773292.943480] 1318 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773293.259532] 1357 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773293.574460] 768 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773293.889670] 951 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773294.204666] 1194 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773294.519843] 1182 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773294.835894] 1870 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773295.151063] 192 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773295.466174] 266 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773295.782397] 1915 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773296.097523] 260 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773296.412335] 507 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773296.727569] 1382 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773297.042411] 650 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773297.357530] 295 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773297.672759] 895 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773297.988947] 1604 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773298.303995] 930 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773298.619636] 1465 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773298.934845] 1180 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773299.251061] 376 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773299.566643] 435 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773299.884087] 1847 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773300.199167] 748 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773300.514865] 1012 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773300.830463] 538 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773301.146851] 1517 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773301.462526] 1074 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773301.778503] 932 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773302.093986] 126 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773302.409617] 189 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773302.725815] 1527 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773303.041525] 1438 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773303.357373] 1420 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773303.674477] 1510 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773303.990303] 1263 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773304.306556] 1658 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773304.621589] 207 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773304.936984] 903 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773305.251823] 352 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773305.566766] 140 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773305.882895] 1765 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773306.197873] 227 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773306.513677] 1471 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773306.829122] 1342 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773307.145129] 1857 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773307.460561] 570 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773307.775187] 122 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773308.090850] 1525 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773308.405540] 102 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773308.720870] 1041 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773309.035510] 166 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773309.351519] 1830 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773309.667806] 1786 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773309.983076] 155 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773310.298302] 917 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773310.613195] 201 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773310.928742] 1146 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773311.243539] 847 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773311.558169] 665 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773311.872890] 808 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773312.187127] 433 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773312.503133] 1782 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773312.818369] 869 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773313.133670] 137 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773313.448775] 316 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773313.764126] 629 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773314.080302] 1623 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773314.396256] 1512 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773314.712253] 1737 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773315.027104] 769 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773315.341985] 213 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773315.658317] 1942 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773315.974298] 1658 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773316.289255] 719 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773316.605904] 2007 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773316.921182] 185 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773317.236534] 856 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773317.552014] 803 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773317.867321] 546 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773318.183353] 436 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773318.499483] 1738 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773318.814646] 391 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773319.129786] 563 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773319.445690] 1617 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773319.761517] 1346 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773320.077023] 1213 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773320.392117] 933 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773320.707896] 1478 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773321.023748] 1580 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773321.338402] 10 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421773321.652966] 1101 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773321.968171] 354 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773322.283823] 1017 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773322.599392] 921 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773322.914462] 1049 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773323.229220] 771 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773323.544672] 804 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773323.859886] 142 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773324.175360] 1107 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773324.491511] 1113 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773324.806368] 597 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773325.122675] 1656 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773325.438225] 312 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773325.754059] 1268 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773326.070451] 1852 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773326.385658] 162 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773326.700495] 8 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421773327.015920] 1445 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773327.332130] 1584 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773327.647591] 373 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773327.963621] 1456 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773328.278897] 1393 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773328.595290] 1930 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773328.911019] 1653 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773329.225587] 28 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773329.540882] 1271 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773329.856019] 1182 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773330.171952] 1860 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773330.486953] 1149 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773330.807024] 1918 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421773331.126700] 705 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421773331.448847] 246 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421773331.778510] 638 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421773332.112927] 1321 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421773332.466494] 1672 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=149 ms +[1421773332.800185] 1401 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421773333.135315] 1304 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421773333.469665] 689 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421773333.807049] 1467 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421773334.140944] 299 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421773334.456116] 229 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773334.771340] 1476 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773335.099320] 1860 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421773335.426510] 893 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421773335.751946] 309 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=121 ms +[1421773336.067313] 249 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773336.397116] 681 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421773336.734518] 62 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421773337.067699] 505 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421773337.383763] 146 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773337.715725] 127 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421773338.053857] 924 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421773338.396182] 188 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=138 ms +[1421773338.730713] 273 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421773339.066474] 372 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421773339.381378] 729 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773339.697154] 107 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773340.024862] 1900 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421773340.346571] 1409 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421773340.677589] 304 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421773341.010489] 17 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421773341.347038] 202 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421773341.680068] 515 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421773342.015382] 1101 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421773342.348318] 254 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421773342.685806] 531 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421773343.018214] 238 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421773343.355202] 331 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421773343.679588] 1482 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421773343.994884] 921 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773344.310671] 796 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773344.632226] 1300 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421773344.948779] 1795 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773345.264917] 1656 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773345.579972] 824 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773345.895206] 62 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773346.211130] 1693 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773346.526678] 1080 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773346.843163] 1589 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773347.158373] 589 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773347.474783] 1776 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773347.790537] 1292 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773348.106222] 498 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773348.422558] 1526 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773348.738259] 858 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773349.054372] 1221 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773349.369740] 677 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773349.685047] 30 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773350.000005] 742 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773350.315050] 253 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773350.630348] 149 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773350.945156] 612 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773351.261412] 1578 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773351.576501] 872 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773351.891417] 733 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773352.206348] 555 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773352.521315] 479 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773352.836346] 907 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773353.151583] 1285 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773353.467814] 1515 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773353.783052] 697 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773354.097933] 99 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773354.413001] 705 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773354.728334] 950 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773355.043278] 444 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773355.357893] 258 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773355.672593] 134 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773355.988884] 1933 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773356.304086] 562 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773356.619672] 1716 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773356.934949] 1258 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773357.250415] 864 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773357.566931] 1806 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773357.882814] 1465 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773358.198845] 1659 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773358.514155] 69 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773358.829200] 185 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773359.144417] 789 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773359.460676] 1648 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773359.776874] 1509 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773360.092508] 66 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773360.407973] 1170 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773360.723633] 1213 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773361.038888] 95 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773361.354189] 554 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773361.670143] 1641 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773361.984814] 282 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773362.299499] 48 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773362.614415] 53 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773362.929131] 756 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773363.244806] 1590 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773363.559631] 350 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773363.875044] 198 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773364.189772] 404 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773364.504894] 1009 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773364.819582] 59 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773365.134707] 1048 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773365.450040] 1176 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773365.765839] 1596 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773366.081009] 511 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773366.396007] 1469 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773366.710815] 475 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773367.025968] 559 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773367.341381] 902 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773367.656593] 356 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773367.972960] 1866 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773368.289251] 1692 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773368.605022] 1779 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773368.919884] 532 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773369.235219] 827 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773369.549916] 282 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773369.864920] 976 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773370.179624] 137 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773370.494489] 618 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773370.810818] 1908 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773371.126050] 1158 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773371.441005] 362 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773371.755977] 316 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773372.071008] 422 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773372.386096] 1050 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773372.701026] 212 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773373.016191] 1220 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773373.333430] 343 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773373.648406] 145 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773373.963263] 183 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773374.278039] 280 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773374.593786] 1537 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773374.908697] 833 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773375.223891] 384 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773375.539602] 1093 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773375.856141] 1789 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773376.171753] 1025 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773376.487265] 1416 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773376.803999] 270 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773377.120082] 1813 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773377.436013] 1697 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773377.751101] 963 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773378.066310] 758 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773378.381477] 1052 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773378.698088] 1875 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773379.013134] 188 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773379.328249] 1070 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773379.643375] 793 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773379.959139] 1685 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773380.274903] 1441 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773380.590275] 1175 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773380.906607] 1527 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773381.221713] 164 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773381.536741] 1466 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773381.852573] 1540 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773382.167462] 587 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773382.482860] 1381 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773382.797766] 16 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 +[1421773383.112909] 250 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773383.428989] 1929 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773383.744591] 1518 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773384.105534] 1686 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=157 ms +[1421773384.421334] 1696 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773384.736653] 1303 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773385.052502] 1947 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773385.367614] 784 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773385.682448] 253 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773385.997615] 350 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773386.313025] 582 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773386.628455] 34 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773386.943692] 113 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773387.260346] 1910 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773387.576119] 1135 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773387.891002] 63 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773388.206596] 1430 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773388.522402] 1166 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773388.837771] 1301 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773389.153052] 1354 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773389.477827] 28 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421773389.793590] 986 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773390.109690] 1835 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773390.424848] 583 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773390.740063] 1100 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773391.055121] 808 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773391.370458] 1130 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773391.686090] 953 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773392.001759] 1257 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773392.318343] 1568 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773392.634742] 1623 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773392.951312] 1830 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773393.267730] 1521 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773393.583096] 827 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773393.898367] 1266 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773394.213357] 323 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773394.528096] 478 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773394.842721] 39 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773395.158397] 1040 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773395.473424] 218 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773395.788624] 1010 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773396.104997] 62 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773396.426299] 1082 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=117 ms +[1421773396.752306] 360 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=122 ms +[1421773397.083917] 1012 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421773397.415098] 554 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421773397.751930] 879 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421773398.089693] 97 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421773398.426272] 38 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421773398.789089] 1994 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=158 ms +[1421773399.125872] 461 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421773399.441318] 927 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773399.756766] 551 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773400.072509] 698 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773400.387961] 713 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773400.703522] 1448 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773401.019540] 1445 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773401.335468] 1010 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773401.652138] 1997 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773401.967584] 359 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773402.283418] 1163 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773402.598917] 425 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773402.915974] 1565 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773403.231262] 416 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773403.547059] 538 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773403.862689] 1112 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773404.179016] 1445 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773404.493816] 698 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773404.808591] 316 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773405.125588] 603 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773405.440527] 169 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773405.755438] 130 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773406.070753] 639 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773406.385754] 462 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773406.700511] 543 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773407.015304] 431 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773407.330476] 566 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773407.645390] 973 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773407.961368] 1983 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773408.276599] 253 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773408.593195] 1973 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773408.909328] 1538 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773409.224984] 1448 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773409.540460] 51 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773409.855620] 29 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773410.171235] 1339 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773410.485925] 109 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773410.801014] 600 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773411.116679] 1010 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773411.432649] 1805 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773411.747463] 549 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773412.062997] 1326 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773412.378575] 1281 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773412.693717] 507 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773413.010000] 1781 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773413.325475] 595 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773413.641897] 1899 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773413.981220] 1688 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=134 ms +[1421773414.307698] 733 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773414.623214] 571 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773414.939517] 1716 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773415.254301] 997 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773415.569707] 1009 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773415.884711] 1377 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773416.200678] 1763 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773416.516328] 1098 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773416.831468] 29 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773417.146848] 691 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773417.462481] 194 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773417.778796] 1046 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773418.094147] 1195 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773418.409994] 1454 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773418.725422] 293 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773419.040826] 655 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773419.356338] 1466 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773419.671854] 854 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773419.987164] 800 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773420.303047] 723 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773420.619113] 865 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773420.934614] 481 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773421.250733] 1526 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773421.565943] 337 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773421.883695] 1189 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773422.198629] 1160 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773422.514659] 1187 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773422.831552] 1898 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773423.147219] 549 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773423.463833] 1603 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773423.779755] 1432 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773424.116212] 1149 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421773424.432729] 1587 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773424.749406] 1908 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773425.064683] 506 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773425.381561] 1335 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773425.711338] 1987 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=125 ms +[1421773426.034325] 999 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=118 ms +[1421773426.363537] 1157 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=124 ms +[1421773426.694978] 1365 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421773427.027508] 548 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421773427.363222] 1019 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421773427.696790] 456 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421773428.044029] 1573 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=142 ms +[1421773428.377326] 1377 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=129 ms +[1421773428.714080] 928 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421773429.049461] 38 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421773429.365502] 1331 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773429.681738] 315 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773430.002160] 422 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=115 ms +[1421773430.325284] 94 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421773430.655425] 956 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=126 ms +[1421773430.990706] 793 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=131 ms +[1421773431.344717] 1953 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=149 ms +[1421773431.697318] 1592 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=148 ms +[1421773432.034786] 75 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=133 ms +[1421773432.399998] 1745 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=160 ms +[1421773432.737881] 1411 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=132 ms +[1421773433.070247] 328 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421773433.432335] 1784 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=157 ms +[1421773433.747872] 1288 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773434.088513] 1099 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=136 ms +[1421773434.406504] 1338 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421773434.734995] 1558 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=123 ms +[1421773435.059929] 977 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421773435.409150] 1796 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=145 ms +[1421773435.740565] 310 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=127 ms +[1421773436.075641] 652 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421773436.407809] 1062 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=128 ms +[1421773436.742180] 974 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=130 ms +[1421773437.094448] 1714 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=148 ms +[1421773437.456241] 1686 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=157 ms +[1421773437.815903] 1569 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=155 ms +[1421773438.155526] 282 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=135 ms +[1421773438.470920] 552 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773438.787626] 1511 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773439.104170] 1038 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773439.425051] 932 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=116 ms +[1421773439.749996] 668 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=120 ms +[1421773450.268622] 909 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773450.584629] 1999 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773450.900093] 76 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773451.215021] 285 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773451.530711] 234 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773451.847515] 231 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773452.163837] 1495 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773452.479834] 1313 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773452.795239] 182 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773453.111570] 2000 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773453.427110] 1396 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773453.742351] 515 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773454.058100] 590 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773454.373566] 229 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773454.689196] 806 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773455.007766] 422 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421773455.324571] 1939 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773455.639814] 365 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773455.954957] 502 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=110 ms +[1421773456.272951] 1738 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=113 ms +[1421773456.591915] 1148 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=114 ms +[1421773456.915868] 294 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=119 ms +[1421773457.231617] 1534 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773457.546404] 1103 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773457.861499] 1121 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773458.177030] 1219 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773458.493444] 1880 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms +[1421773458.808864] 986 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773459.124524] 357 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773459.440517] 1696 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773459.756250] 561 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773460.071820] 773 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773460.387385] 1009 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=111 ms +[1421773460.704382] 1948 bytes from stackoverflow.com (198.252.206.140): icmp_seq=1 ttl=50 time=112 ms diff --git a/module3/exo3/stackoverflow.log.gz b/module3/exo3/stackoverflow.log.gz new file mode 100644 index 0000000000000000000000000000000000000000..cce2629a0f75e566eddf238a7995d8007327713d GIT binary patch literal 68745 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 M2k0XCRu#bt09T@Xg#Z8m literal 0 HcmV?d00001 -- 2.18.1